diff --git a/README.md b/README.md index 1c08759..e4c0957 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,24 @@ #### 3 使用说明 -1. 前往灯哥开源[FOCgit](https://gitee.com/ream_d/Deng-s-foc-controller)下载Arduino开发环境(~~也可自行下载Arduino并安装SimpleFOC~~)并打开本项目内的Arduino内的main,烧录程序到ESP32。 -2. 打开本项目内的python_gui内的FOC_gui.exe并连接上WIFI:ESP32。点击设置开始调参。 +1. 前往灯哥开源[FOCgit](https://gitee.com/ream_d/Deng-s-foc-controller)下载Arduino开发环境(~~也可自行下载Arduino并安装SimpleFOC~~)并打开本项目内的Arduino内的main,烧录程序到ESP32。 +2. 打开本项目内的`python_gui`内的`可执行文件_main`内的**main.exe**并连接上WIFI:ESP32。点击设置开始调参。 + +3. 第一次打开的话还请先输入一些初始值到eeprom中: + +| 参数命令 | 说明 | +| ---------------- |---------------------- | +|TA89.3|角度| +|SV1.8|摇摆电压| +|SA20|摇摆角度| +|VI120|平衡前FOC速度环的I为20| +|VP10.5|平衡前FOC速度环的P为0.5| +|VI210|平衡后FOC速度环的I为10| +|VP20.2|平衡后FOC速度环的P为0.2| + +![调参](image/tiaocan.gif) + +4. K值可以用滑块调整,但是调整到合适值之后需要自行在Arduino的main中修改再烧录一次 比如让平衡角度为90度,则输入:TA90,并且会存入eeprom的位置0中 注:wifi发送**命令不能过快**,因为每次都会保存进eeprom,K参数没有保存到EEPROM所以可以使用滑条调整。 diff --git a/arduino/test1/Command.cpp b/arduino/test1/Command.cpp deleted file mode 100644 index 9c54a6b..0000000 --- a/arduino/test1/Command.cpp +++ /dev/null @@ -1,28 +0,0 @@ -#include "Command.h" - -void Command::run(char* str){ - for(int i=0; i < call_count; i++){ - if(isSentinel(call_ids[i],str)){ // case : call_ids = "T2" str = "T215.15" - call_list[i](str+strlen(call_ids[i])); // get 15.15 input function - break; - } - } -} -void Command::add(char* id, CommandCallback onCommand){ - call_list[call_count] = onCommand; - call_ids[call_count] = id; - call_count++; -} -void Command::scalar(float* value, char* user_cmd){ - *value = atof(user_cmd); -} -bool Command::isSentinel(char* ch,char* str) -{ - char s[strlen(ch)+1]; - strncpy(s,str,strlen(ch)); - s[strlen(ch)] = '\0'; //strncpy need add end '\0' - if(strcmp(ch, s) == 0) - return true; - else - return false; -} diff --git a/arduino/test1/Command.h b/arduino/test1/Command.h deleted file mode 100644 index 20e2fe5..0000000 --- a/arduino/test1/Command.h +++ /dev/null @@ -1,17 +0,0 @@ -#include -// callback function pointer definiton -typedef void (* CommandCallback)(char*); //!< command callback function pointer -class Command -{ - public: - void add(char* id , CommandCallback onCommand); - void run(char* str); - void scalar(float* value, char* user_cmd); - bool isSentinel(char* ch,char* str); - private: - // Subscribed command callback variables - CommandCallback call_list[20];//!< array of command callback pointers - 20 is an arbitrary number - char* call_ids[20]; //!< added callback commands - int call_count;//!< number callbacks that are subscribed - -}; diff --git a/arduino/test1/Kalman.cpp b/arduino/test1/Kalman.cpp deleted file mode 100644 index 80c7dec..0000000 --- a/arduino/test1/Kalman.cpp +++ /dev/null @@ -1,93 +0,0 @@ -/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved. - - This software may be distributed and modified under the terms of the GNU - General Public License version 2 (GPL2) as published by the Free Software - Foundation and appearing in the file GPL2.TXT included in the packaging of - this file. Please note that GPL2 Section 2[b] requires that all works based - on this software must also be made publicly available under the terms of - the GPL2 ("Copyleft"). - - Contact information - ------------------- - - Kristian Lauszus, TKJ Electronics - Web : http://www.tkjelectronics.com - e-mail : kristianl@tkjelectronics.com - */ - -#include "Kalman.h" - -Kalman::Kalman() { - /* We will set the variables like so, these can also be tuned by the user */ - Q_angle = 0.001f; - Q_bias = 0.003f; - R_measure = 0.03f; - - angle = 0.0f; // Reset the angle - bias = 0.0f; // Reset bias - - P[0][0] = 0.0f; // Since we assume that the bias is 0 and we know the starting angle (use setAngle), the error covariance matrix is set like so - see: http://en.wikipedia.org/wiki/Kalman_filter#Example_application.2C_technical - P[0][1] = 0.0f; - P[1][0] = 0.0f; - P[1][1] = 0.0f; -}; - -// The angle should be in degrees and the rate should be in degrees per second and the delta time in seconds -float Kalman::getAngle(float newAngle, float newRate, float dt) { - // KasBot V2 - Kalman filter module - http://www.x-firm.com/?page_id=145 - // Modified by Kristian Lauszus - // See my blog post for more information: http://blog.tkjelectronics.dk/2012/09/a-practical-approach-to-kalman-filter-and-how-to-implement-it - - // Discrete Kalman filter time update equations - Time Update ("Predict") - // Update xhat - Project the state ahead - /* Step 1 */ - rate = newRate - bias; - angle += dt * rate; - - // Update estimation error covariance - Project the error covariance ahead - /* Step 2 */ - P[0][0] += dt * (dt*P[1][1] - P[0][1] - P[1][0] + Q_angle); - P[0][1] -= dt * P[1][1]; - P[1][0] -= dt * P[1][1]; - P[1][1] += Q_bias * dt; - - // Discrete Kalman filter measurement update equations - Measurement Update ("Correct") - // Calculate Kalman gain - Compute the Kalman gain - /* Step 4 */ - float S = P[0][0] + R_measure; // Estimate error - /* Step 5 */ - float K[2]; // Kalman gain - This is a 2x1 vector - K[0] = P[0][0] / S; - K[1] = P[1][0] / S; - - // Calculate angle and bias - Update estimate with measurement zk (newAngle) - /* Step 3 */ - float y = newAngle - angle; // Angle difference - /* Step 6 */ - angle += K[0] * y; - bias += K[1] * y; - - // Calculate estimation error covariance - Update the error covariance - /* Step 7 */ - float P00_temp = P[0][0]; - float P01_temp = P[0][1]; - - P[0][0] -= K[0] * P00_temp; - P[0][1] -= K[0] * P01_temp; - P[1][0] -= K[1] * P00_temp; - P[1][1] -= K[1] * P01_temp; - - return angle; -}; - -void Kalman::setAngle(float angle) { this->angle = angle; }; // Used to set angle, this should be set as the starting angle -float Kalman::getRate() { return this->rate; }; // Return the unbiased rate - -/* These are used to tune the Kalman filter */ -void Kalman::setQangle(float Q_angle) { this->Q_angle = Q_angle; }; -void Kalman::setQbias(float Q_bias) { this->Q_bias = Q_bias; }; -void Kalman::setRmeasure(float R_measure) { this->R_measure = R_measure; }; - -float Kalman::getQangle() { return this->Q_angle; }; -float Kalman::getQbias() { return this->Q_bias; }; -float Kalman::getRmeasure() { return this->R_measure; }; diff --git a/arduino/test1/Kalman.h b/arduino/test1/Kalman.h deleted file mode 100644 index 7de545f..0000000 --- a/arduino/test1/Kalman.h +++ /dev/null @@ -1,59 +0,0 @@ -/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved. - - This software may be distributed and modified under the terms of the GNU - General Public License version 2 (GPL2) as published by the Free Software - Foundation and appearing in the file GPL2.TXT included in the packaging of - this file. Please note that GPL2 Section 2[b] requires that all works based - on this software must also be made publicly available under the terms of - the GPL2 ("Copyleft"). - - Contact information - ------------------- - - Kristian Lauszus, TKJ Electronics - Web : http://www.tkjelectronics.com - e-mail : kristianl@tkjelectronics.com - */ - -#ifndef _Kalman_h_ -#define _Kalman_h_ - -class Kalman { -public: - Kalman(); - - // The angle should be in degrees and the rate should be in degrees per second and the delta time in seconds - float getAngle(float newAngle, float newRate, float dt); - - void setAngle(float angle); // Used to set angle, this should be set as the starting angle - float getRate(); // Return the unbiased rate - - /* These are used to tune the Kalman filter */ - void setQangle(float Q_angle); - /** - * setQbias(float Q_bias) - * Default value (0.003f) is in Kalman.cpp. - * Raise this to follow input more closely, - * lower this to smooth result of kalman filter. - */ - void setQbias(float Q_bias); - void setRmeasure(float R_measure); - - float getQangle(); - float getQbias(); - float getRmeasure(); - -private: - /* Kalman filter variables */ - float Q_angle; // Process noise variance for the accelerometer - float Q_bias; // Process noise variance for the gyro bias - float R_measure; // Measurement noise variance - this is actually the variance of the measurement noise - - float angle; // The angle calculated by the Kalman filter - part of the 2x1 state vector - float bias; // The gyro bias calculated by the Kalman filter - part of the 2x1 state vector - float rate; // Unbiased rate calculated from the rate and the calculated bias - you have to call getAngle to update the rate - - float P[2][2]; // Error covariance matrix - This is a 2x2 matrix -}; - -#endif diff --git a/arduino/test1/i2c.ino b/arduino/test1/i2c.ino deleted file mode 100644 index 23fa91c..0000000 --- a/arduino/test1/i2c.ino +++ /dev/null @@ -1,63 +0,0 @@ -/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved. - - This software may be distributed and modified under the terms of the GNU - General Public License version 2 (GPL2) as published by the Free Software - Foundation and appearing in the file GPL2.TXT included in the packaging of - this file. Please note that GPL2 Section 2[b] requires that all works based - on this software must also be made publicly available under the terms of - the GPL2 ("Copyleft"). - - Contact information - ------------------- - - Kristian Lauszus, TKJ Electronics - Web : http://www.tkjelectronics.com - e-mail : kristianl@tkjelectronics.com - */ - -const uint8_t IMUAddress = 0x68; // AD0 is logic low on the PCB -const uint16_t I2C_TIMEOUT = 1000; // Used to check for errors in I2C communication - -uint8_t i2cWrite(uint8_t registerAddress, uint8_t data, bool sendStop) { - return i2cWrite(registerAddress, &data, 1, sendStop); // Returns 0 on success -} - -uint8_t i2cWrite(uint8_t registerAddress, uint8_t *data, uint8_t length, bool sendStop) { - Wire.beginTransmission(IMUAddress); - Wire.write(registerAddress); - Wire.write(data, length); - uint8_t rcode = Wire.endTransmission(sendStop); // Returns 0 on success - if (rcode) { - Serial.print(F("i2cWrite failed: ")); - Serial.println(rcode); - } - return rcode; // See: http://arduino.cc/en/Reference/WireEndTransmission -} - -uint8_t i2cRead(uint8_t registerAddress, uint8_t *data, uint8_t nbytes) { - uint32_t timeOutTimer; - Wire.beginTransmission(IMUAddress); - Wire.write(registerAddress); - uint8_t rcode = Wire.endTransmission(false); // Don't release the bus - if (rcode) { - Serial.print(F("i2cRead failed: ")); - Serial.println(rcode); - return rcode; // See: http://arduino.cc/en/Reference/WireEndTransmission - } - Wire.requestFrom(IMUAddress, nbytes, (uint8_t)true); // Send a repeated start and then release the bus after reading - for (uint8_t i = 0; i < nbytes; i++) { - if (Wire.available()) - data[i] = Wire.read(); - else { - timeOutTimer = micros(); - while (((micros() - timeOutTimer) < I2C_TIMEOUT) && !Wire.available()); - if (Wire.available()) - data[i] = Wire.read(); - else { - Serial.println(F("i2cRead timeout")); - return 5; // This error value is not already taken by endTransmission - } - } - } - return 0; // Success -} diff --git a/arduino/test1/test1.ino b/arduino/test1/test1.ino deleted file mode 100644 index 808aa96..0000000 --- a/arduino/test1/test1.ino +++ /dev/null @@ -1,124 +0,0 @@ -#include "Command.h" -#include -#include -#include //引用以使用异步UDP -#include "Kalman.h" // Source: https://github.com/TKJElectronics/KalmanFilter -#include "EEPROM.h" -Kalman kalmanZ; -#define gyroZ_OFF 0.9 -/* ----IMU Data---- */ - -double accX, accY, accZ; -double gyroX, gyroY, gyroZ; -int16_t tempRaw; -bool stable = 0; -uint32_t last_unstable_time; - -double gyroZangle; // Angle calculate using the gyro only -double compAngleZ; // Calculated angle using a complementary filter -double kalAngleZ; // Calculated angle using a Kalman filter - -uint32_t timer; -uint8_t i2cData[14]; // Buffer for I2C data - -void setup() { - Serial.begin(115200); - // kalman mpu6050 init - Wire.begin(19, 18, 400000); // Set I2C frequency to 400kHz - i2cData[0] = 7; // Set the sample rate to 1000Hz - 8kHz/(7+1) = 1000Hz - i2cData[1] = 0x00; // Disable FSYNC and set 260 Hz Acc filtering, 256 Hz Gyro filtering, 8 KHz sampling - i2cData[2] = 0x00; // Set Gyro Full Scale Range to ±250deg/s - i2cData[3] = 0x00; // Set Accelerometer Full Scale Range to ±2g - while (i2cWrite(0x19, i2cData, 4, false)) - ; // Write to all four registers at once - while (i2cWrite(0x6B, 0x01, true)) - ; // PLL with X axis gyroscope reference and disable sleep mode - - while (i2cRead(0x75, i2cData, 1)) - ; - if (i2cData[0] != 0x68) - { // Read "WHO_AM_I" register - Serial.print(F("Error reading sensor")); - while (1) - ; - } - - delay(100); // Wait for sensor to stabilize - - /* Set kalman and gyro starting angle */ - while (i2cRead(0x3B, i2cData, 6)) - ; - accX = (int16_t)((i2cData[0] << 8) | i2cData[1]); - accY = (int16_t)((i2cData[2] << 8) | i2cData[3]); - accZ = (int16_t)((i2cData[4] << 8) | i2cData[5]); - double pitch = acc2rotation(accX, accY); - - kalmanZ.setAngle(pitch); - gyroZangle = pitch; - - timer = micros(); - Serial.println("kalman mpu6050 init"); -} - -void loop() { - while (i2cRead(0x3B, i2cData, 14)); - accX = (int16_t)((i2cData[0] << 8) | i2cData[1]); - accY = (int16_t)((i2cData[2] << 8) | i2cData[3]); - accZ = (int16_t)((i2cData[4] << 8) | i2cData[5]); - tempRaw = (int16_t)((i2cData[6] << 8) | i2cData[7]); - gyroX = (int16_t)((i2cData[8] << 8) | i2cData[9]); - gyroY = (int16_t)((i2cData[10] << 8) | i2cData[11]); - gyroZ = (int16_t)((i2cData[12] << 8) | i2cData[13]); - - double dt = (double)(micros() - timer) / 1000000; // Calculate delta time - timer = micros(); - - double pitch = acc2rotation(accX, accY); - double gyroZrate = gyroZ / 131.0; // Convert to deg/s - - kalAngleZ = kalmanZ.getAngle(pitch, gyroZrate + gyroZ_OFF, dt); - gyroZangle += (gyroZrate + gyroZ_OFF) * dt; - compAngleZ = 0.93 * (compAngleZ + (gyroZrate + gyroZ_OFF) * dt) + 0.07 * pitch; - -// // Reset the gyro angle when it has drifted too much -// if (gyroZangle < -180 || gyroZangle > 180) -// gyroZangle = kalAngleZ; - - Serial.print(pitch); Serial.print("\t"); -// Serial.print(gyroZrate); Serial.print("\t"); -// Serial.print(kalAngleZ); Serial.print("\t"); -// Serial.print(gyroZangle); Serial.print("\t"); - Serial.print(compAngleZ); Serial.print("\t"); - Serial.print("\r\n"); -} -/* mpu6050加速度转换为角度 - acc2rotation(ax, ay) - acc2rotation(az, ay) */ -double acc2rotation(double x, double y) -{ - if (y < 0) - { - return atan(x / y) / 1.570796 * 90 + 180; - } - else if (x < 0) - { - return (atan(x / y) / 1.570796 * 90 + 360); - } - else - { - return (atan(x / y) / 1.570796 * 90); - } -} - -// function constraining the angle in between -60~60 -float constrainAngle(float x) -{ - float a = 0; - if (x < 0) - { - a = 120 + x; - if (a < abs(x)) - return a; - } - return x; -} diff --git a/image/tiaocan.gif b/image/tiaocan.gif new file mode 100644 index 0000000..620c7b6 Binary files /dev/null and b/image/tiaocan.gif differ diff --git a/python_gui/gui/__pycache__/main.cpython-37.pyc b/python_gui/gui/__pycache__/main.cpython-37.pyc new file mode 100644 index 0000000..5c52724 Binary files /dev/null and b/python_gui/gui/__pycache__/main.cpython-37.pyc differ diff --git a/python_gui/可执行文件_main/MSVCP140.dll b/python_gui/可执行文件_main/MSVCP140.dll new file mode 100644 index 0000000..21794fc Binary files /dev/null and b/python_gui/可执行文件_main/MSVCP140.dll differ diff --git a/python_gui/可执行文件_main/MSVCP140_1.dll b/python_gui/可执行文件_main/MSVCP140_1.dll new file mode 100644 index 0000000..a4cae47 Binary files /dev/null and b/python_gui/可执行文件_main/MSVCP140_1.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll new file mode 100644 index 0000000..cbca63c Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qgif.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qgif.dll new file mode 100644 index 0000000..b6e5658 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qgif.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qicns.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qicns.dll new file mode 100644 index 0000000..5b4365f Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qicns.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qico.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qico.dll new file mode 100644 index 0000000..d89a637 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qico.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qjpeg.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qjpeg.dll new file mode 100644 index 0000000..98cdf95 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qjpeg.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qsvg.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qsvg.dll new file mode 100644 index 0000000..c6b732b Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qsvg.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qtga.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qtga.dll new file mode 100644 index 0000000..d4f77f8 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qtga.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qtiff.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qtiff.dll new file mode 100644 index 0000000..43cbc0c Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qtiff.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qwbmp.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qwbmp.dll new file mode 100644 index 0000000..e1dc12c Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qwbmp.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qwebp.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qwebp.dll new file mode 100644 index 0000000..3c49ed8 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/imageformats/qwebp.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qminimal.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qminimal.dll new file mode 100644 index 0000000..c4bcfd8 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qminimal.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qoffscreen.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qoffscreen.dll new file mode 100644 index 0000000..ad29783 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qoffscreen.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qwebgl.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qwebgl.dll new file mode 100644 index 0000000..5f317e5 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qwebgl.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qwindows.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qwindows.dll new file mode 100644 index 0000000..e9c319d Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platforms/qwindows.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll new file mode 100644 index 0000000..34c0231 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll new file mode 100644 index 0000000..c97acd6 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_ar.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_ar.qm new file mode 100644 index 0000000..32861b8 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_ar.qm differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_bg.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_bg.qm new file mode 100644 index 0000000..faeb167 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_bg.qm differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_ca.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_ca.qm new file mode 100644 index 0000000..20b751d Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_ca.qm differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_cs.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_cs.qm new file mode 100644 index 0000000..459ef26 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_cs.qm differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_da.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_da.qm new file mode 100644 index 0000000..4ede24b Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_da.qm differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_de.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_de.qm new file mode 100644 index 0000000..4a4c988 Binary files /dev/null and b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_de.qm differ diff --git a/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_en.qm b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_en.qm new file mode 100644 index 0000000..be651ee --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/Qt5/translations/qtbase_en.qm @@ -0,0 +1 @@ + +## +## This file is part of PyQt5. +## +## This file may be used under the terms of the GNU General Public License +## version 3.0 as published by the Free Software Foundation and appearing in +## the file LICENSE included in the packaging of this file. Please review the +## following information to ensure the GNU General Public License version 3.0 +## requirements will be met: http://www.gnu.org/copyleft/gpl.html. +## +## If you do not wish to use this file under the terms of the GPL version 3.0 +## then you may purchase a commercial license. For more information contact +## info@riverbankcomputing.com. +## +## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return "PyQt5.QAxContainer", ("QAxWidget", ) diff --git a/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qscintilla.py b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qscintilla.py new file mode 100644 index 0000000..777497d --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qscintilla.py @@ -0,0 +1,33 @@ +############################################################################# +## +## Copyright (c) 2021 Riverbank Computing Limited +## +## This file is part of PyQt5. +## +## This file may be used under the terms of the GNU General Public License +## version 3.0 as published by the Free Software Foundation and appearing in +## the file LICENSE included in the packaging of this file. Please review the +## following information to ensure the GNU General Public License version 3.0 +## requirements will be met: http://www.gnu.org/copyleft/gpl.html. +## +## If you do not wish to use this file under the terms of the GPL version 3.0 +## then you may purchase a commercial license. For more information contact +## info@riverbankcomputing.com. +## +## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return "PyQt5.Qsci", ("QsciScintilla", ) diff --git a/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtcharts.py b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtcharts.py new file mode 100644 index 0000000..187adfa --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtcharts.py @@ -0,0 +1,33 @@ +############################################################################# +## +## Copyright (c) 2021 Riverbank Computing Limited +## +## This file is part of PyQt5. +## +## This file may be used under the terms of the GNU General Public License +## version 3.0 as published by the Free Software Foundation and appearing in +## the file LICENSE included in the packaging of this file. Please review the +## following information to ensure the GNU General Public License version 3.0 +## requirements will be met: http://www.gnu.org/copyleft/gpl.html. +## +## If you do not wish to use this file under the terms of the GPL version 3.0 +## then you may purchase a commercial license. For more information contact +## info@riverbankcomputing.com. +## +## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return 'PyQt5.QtChart', ('QtCharts.QChartView', ) diff --git a/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtprintsupport.py b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtprintsupport.py new file mode 100644 index 0000000..168992d --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtprintsupport.py @@ -0,0 +1,33 @@ +############################################################################# +## +## Copyright (c) 2021 Riverbank Computing Limited +## +## This file is part of PyQt5. +## +## This file may be used under the terms of the GNU General Public License +## version 3.0 as published by the Free Software Foundation and appearing in +## the file LICENSE included in the packaging of this file. Please review the +## following information to ensure the GNU General Public License version 3.0 +## requirements will be met: http://www.gnu.org/copyleft/gpl.html. +## +## If you do not wish to use this file under the terms of the GPL version 3.0 +## then you may purchase a commercial license. For more information contact +## info@riverbankcomputing.com. +## +## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return 'PyQt5.QtPrintSupport', ('QAbstractPrintDialog', 'QPageSetupDialog') diff --git a/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtquickwidgets.py b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtquickwidgets.py new file mode 100644 index 0000000..2da3c26 --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtquickwidgets.py @@ -0,0 +1,33 @@ +############################################################################# +## +## Copyright (c) 2021 Riverbank Computing Limited +## +## This file is part of PyQt5. +## +## This file may be used under the terms of the GNU General Public License +## version 3.0 as published by the Free Software Foundation and appearing in +## the file LICENSE included in the packaging of this file. Please review the +## following information to ensure the GNU General Public License version 3.0 +## requirements will be met: http://www.gnu.org/copyleft/gpl.html. +## +## If you do not wish to use this file under the terms of the GPL version 3.0 +## then you may purchase a commercial license. For more information contact +## info@riverbankcomputing.com. +## +## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return "PyQt5.QtQuickWidgets", ("QQuickWidget", ) diff --git a/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtwebenginewidgets.py b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtwebenginewidgets.py new file mode 100644 index 0000000..6700666 --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtwebenginewidgets.py @@ -0,0 +1,33 @@ +############################################################################# +## +## Copyright (c) 2021 Riverbank Computing Limited +## +## This file is part of PyQt5. +## +## This file may be used under the terms of the GNU General Public License +## version 3.0 as published by the Free Software Foundation and appearing in +## the file LICENSE included in the packaging of this file. Please review the +## following information to ensure the GNU General Public License version 3.0 +## requirements will be met: http://www.gnu.org/copyleft/gpl.html. +## +## If you do not wish to use this file under the terms of the GPL version 3.0 +## then you may purchase a commercial license. For more information contact +## info@riverbankcomputing.com. +## +## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return "PyQt5.QtWebEngineWidgets", ("QWebEngineView", ) diff --git a/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtwebkit.py b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtwebkit.py new file mode 100644 index 0000000..087ec6e --- /dev/null +++ b/python_gui/可执行文件_main/PyQt5/uic/widget-plugins/qtwebkit.py @@ -0,0 +1,51 @@ +############################################################################# +## +## Copyright (C) 2014 Riverbank Computing Limited. +## Copyright (C) 2006 Thorsten Marek. +## All right reserved. +## +## This file is part of PyQt. +## +## You may use this file under the terms of the GPL v2 or the revised BSD +## license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of the Riverbank Computing Limited nor the names +## of its contributors may be used to endorse or promote products +## derived from this software without specific prior written +## permission. +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +############################################################################# + + +# If pluginType is MODULE, the plugin loader will call moduleInformation. The +# variable MODULE is inserted into the local namespace by the plugin loader. +pluginType = MODULE + + +# moduleInformation() must return a tuple (module, widget_list). If "module" +# is "A" and any widget from this module is used, the code generator will write +# "import A". If "module" is "A[.B].C", the code generator will write +# "from A[.B] import C". Each entry in "widget_list" must be unique. +def moduleInformation(): + return "PyQt5.QtWebKitWidgets", ("QWebView", ) diff --git a/python_gui/可执行文件_main/Qt5Core.dll b/python_gui/可执行文件_main/Qt5Core.dll new file mode 100644 index 0000000..40e8de1 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Core.dll differ diff --git a/python_gui/可执行文件_main/Qt5DBus.dll b/python_gui/可执行文件_main/Qt5DBus.dll new file mode 100644 index 0000000..e06ebf3 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5DBus.dll differ diff --git a/python_gui/可执行文件_main/Qt5Gui.dll b/python_gui/可执行文件_main/Qt5Gui.dll new file mode 100644 index 0000000..bf38dda Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Gui.dll differ diff --git a/python_gui/可执行文件_main/Qt5Network.dll b/python_gui/可执行文件_main/Qt5Network.dll new file mode 100644 index 0000000..d32644d Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Network.dll differ diff --git a/python_gui/可执行文件_main/Qt5Qml.dll b/python_gui/可执行文件_main/Qt5Qml.dll new file mode 100644 index 0000000..7c2e538 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Qml.dll differ diff --git a/python_gui/可执行文件_main/Qt5QmlModels.dll b/python_gui/可执行文件_main/Qt5QmlModels.dll new file mode 100644 index 0000000..a0497d3 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5QmlModels.dll differ diff --git a/python_gui/可执行文件_main/Qt5Quick.dll b/python_gui/可执行文件_main/Qt5Quick.dll new file mode 100644 index 0000000..4ff0bc6 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Quick.dll differ diff --git a/python_gui/可执行文件_main/Qt5Svg.dll b/python_gui/可执行文件_main/Qt5Svg.dll new file mode 100644 index 0000000..edfbf4a Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Svg.dll differ diff --git a/python_gui/可执行文件_main/Qt5Test.dll b/python_gui/可执行文件_main/Qt5Test.dll new file mode 100644 index 0000000..e3db005 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Test.dll differ diff --git a/python_gui/可执行文件_main/Qt5WebSockets.dll b/python_gui/可执行文件_main/Qt5WebSockets.dll new file mode 100644 index 0000000..1b21504 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5WebSockets.dll differ diff --git a/python_gui/可执行文件_main/Qt5Widgets.dll b/python_gui/可执行文件_main/Qt5Widgets.dll new file mode 100644 index 0000000..80ae4e3 Binary files /dev/null and b/python_gui/可执行文件_main/Qt5Widgets.dll differ diff --git a/python_gui/可执行文件_main/VCRUNTIME140.dll b/python_gui/可执行文件_main/VCRUNTIME140.dll new file mode 100644 index 0000000..690f3fb Binary files /dev/null and b/python_gui/可执行文件_main/VCRUNTIME140.dll differ diff --git a/python_gui/可执行文件_main/VCRUNTIME140_1.dll b/python_gui/可执行文件_main/VCRUNTIME140_1.dll new file mode 100644 index 0000000..f12cb6f Binary files /dev/null and b/python_gui/可执行文件_main/VCRUNTIME140_1.dll differ diff --git a/python_gui/可执行文件_main/_bz2.pyd b/python_gui/可执行文件_main/_bz2.pyd new file mode 100644 index 0000000..4951d9c Binary files /dev/null and b/python_gui/可执行文件_main/_bz2.pyd differ diff --git a/python_gui/可执行文件_main/_ctypes.pyd b/python_gui/可执行文件_main/_ctypes.pyd new file mode 100644 index 0000000..8b9278d Binary files /dev/null and b/python_gui/可执行文件_main/_ctypes.pyd differ diff --git a/python_gui/可执行文件_main/_decimal.pyd b/python_gui/可执行文件_main/_decimal.pyd new file mode 100644 index 0000000..097afaf Binary files /dev/null and b/python_gui/可执行文件_main/_decimal.pyd differ diff --git a/python_gui/可执行文件_main/_elementtree.pyd b/python_gui/可执行文件_main/_elementtree.pyd new file mode 100644 index 0000000..e94ea1f Binary files /dev/null and b/python_gui/可执行文件_main/_elementtree.pyd differ diff --git a/python_gui/可执行文件_main/_hashlib.pyd b/python_gui/可执行文件_main/_hashlib.pyd new file mode 100644 index 0000000..833e3b2 Binary files /dev/null and b/python_gui/可执行文件_main/_hashlib.pyd differ diff --git a/python_gui/可执行文件_main/_lzma.pyd b/python_gui/可执行文件_main/_lzma.pyd new file mode 100644 index 0000000..97ed8a8 Binary files /dev/null and b/python_gui/可执行文件_main/_lzma.pyd differ diff --git a/python_gui/可执行文件_main/_multiprocessing.pyd b/python_gui/可执行文件_main/_multiprocessing.pyd new file mode 100644 index 0000000..bbe6a86 Binary files /dev/null and b/python_gui/可执行文件_main/_multiprocessing.pyd differ diff --git a/python_gui/可执行文件_main/_queue.pyd b/python_gui/可执行文件_main/_queue.pyd new file mode 100644 index 0000000..70b6dfd Binary files /dev/null and b/python_gui/可执行文件_main/_queue.pyd differ diff --git a/python_gui/可执行文件_main/_socket.pyd b/python_gui/可执行文件_main/_socket.pyd new file mode 100644 index 0000000..60a80f2 Binary files /dev/null and b/python_gui/可执行文件_main/_socket.pyd differ diff --git a/python_gui/可执行文件_main/_ssl.pyd b/python_gui/可执行文件_main/_ssl.pyd new file mode 100644 index 0000000..f0dc069 Binary files /dev/null and b/python_gui/可执行文件_main/_ssl.pyd differ diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/INSTALLER b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/LICENSE b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/LICENSE new file mode 100644 index 0000000..6013a21 --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/LICENSE @@ -0,0 +1,18 @@ +Copyright (c) 2004 Istvan Albert unless otherwise noted. +Copyright (c) 2006-2010 Bob Ippolito +Copyright (2) 2010-2020 Ronald Oussoren, et. al. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/METADATA b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/METADATA new file mode 100644 index 0000000..02551a6 --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/METADATA @@ -0,0 +1,289 @@ +Metadata-Version: 2.1 +Name: altgraph +Version: 0.17.2 +Summary: Python graph (network) package +Home-page: https://altgraph.readthedocs.io +Author: Ronald Oussoren +Author-email: ronaldoussoren@mac.com +Maintainer: Ronald Oussoren +Maintainer-email: ronaldoussoren@mac.com +License: MIT +Download-URL: http://pypi.python.org/pypi/altgraph +Keywords: graph +Platform: any +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Scientific/Engineering :: Mathematics +Classifier: Topic :: Scientific/Engineering :: Visualization +Description-Content-Type: text/x-rst; charset=UTF-8 +License-File: LICENSE +Project-URL: Documentation, https://altgraph.readthedocs.io/en/latest/ +Project-URL: Issue tracker, https://github.com/ronaldoussoren/altgraph/issues +Project-URL: Repository, https://github.com/ronaldoussoren/altgraph + +altgraph is a fork of graphlib: a graph (network) package for constructing +graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with +graphviz output. + +altgraph includes some additional usage of Python 2.6+ features and +enhancements related to modulegraph and macholib. + +CI status +--------- + +.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Lint/badge.svg +.. image:: https://github.com/ronaldoussoren/altgraph/workflows/Test/badge.svg + +Project links +------------- + +* `Documentation `_ + +* `Issue Tracker `_ + +* `Repository `_ + + +Release history +=============== + +0.17.1 +------ + +* Explicitly mark Python 3.10 as supported in wheel metadata. + +0.17 +---- + +* Explicitly mark Python 3.8 as supported in wheel metadata. + +* Migrate from Bitbucket to GitHub + +* Run black on the entire repository + +0.16.1 +------ + +* Explicitly mark Python 3.7 as supported in wheel metadata. + +0.16 +---- + +* Add LICENSE file + +0.15 +---- + +* ``ObjectGraph.get_edges``, ``ObjectGraph.getEdgeData`` and ``ObjectGraph.updateEdgeData`` + accept *None* as the node to get and treat this as an alias for *self* (as other + methods already did). + +0.14 +---- + +- Issue #7: Remove use of ``iteritems`` in altgraph.GraphAlgo code + +0.13 +---- + +- Issue #4: Graph._bfs_subgraph and back_bfs_subgraph return subgraphs with reversed edges + + Fix by "pombredanne" on bitbucket. + + +0.12 +---- + +- Added ``ObjectGraph.edgeData`` to retrieve the edge data + from a specific edge. + +- Added ``AltGraph.update_edge_data`` and ``ObjectGraph.updateEdgeData`` + to update the data associated with a graph edge. + +0.11 +---- + +- Stabilize the order of elements in dot file exports, + patch from bitbucket user 'pombredanne'. + +- Tweak setup.py file to remove dependency on distribute (but + keep the dependency on setuptools) + + +0.10.2 +------ + +- There where no classifiers in the package metadata due to a bug + in setup.py + +0.10.1 +------ + +This is a bugfix release + +Bug fixes: + +- Issue #3: The source archive contains a README.txt + while the setup file refers to ReadMe.txt. + + This is caused by a misfeature in distutils, as a + workaround I've renamed ReadMe.txt to README.txt + in the source tree and setup file. + + +0.10 +----- + +This is a minor feature release + +Features: + +- Do not use "2to3" to support Python 3. + + As a side effect of this altgraph now supports + Python 2.6 and later, and no longer supports + earlier releases of Python. + +- The order of attributes in the Dot output + is now always alphabetical. + + With this change the output will be consistent + between runs and Python versions. + +0.9 +--- + +This is a minor bugfix release + +Features: + +- Added ``altgraph.ObjectGraph.ObjectGraph.nodes``, a method + yielding all nodes in an object graph. + +Bugfixes: + +- The 0.8 release didn't work with py2app when using + python 3.x. + + +0.8 +----- + +This is a minor feature release. The major new feature +is a extensive set of unittests, which explains almost +all other changes in this release. + +Bugfixes: + +- Installing failed with Python 2.5 due to using a distutils + class that isn't available in that version of Python + (issue #1 on the issue tracker) + +- ``altgraph.GraphStat.degree_dist`` now actually works + +- ``altgraph.Graph.add_edge(a, b, create_nodes=False)`` will + no longer create the edge when one of the nodes doesn't + exist. + +- ``altgraph.Graph.forw_topo_sort`` failed for some sparse graphs. + +- ``altgraph.Graph.back_topo_sort`` was completely broken in + previous releases. + +- ``altgraph.Graph.forw_bfs_subgraph`` now actually works. + +- ``altgraph.Graph.back_bfs_subgraph`` now actually works. + +- ``altgraph.Graph.iterdfs`` now returns the correct result + when the ``forward`` argument is ``False``. + +- ``altgraph.Graph.iterdata`` now returns the correct result + when the ``forward`` argument is ``False``. + + +Features: + +- The ``altgraph.Graph`` constructor now accepts an argument + that contains 2- and 3-tuples instead of requireing that + all items have the same size. The (optional) argument can now + also be any iterator. + +- ``altgraph.Graph.Graph.add_node`` has no effect when you + add a hidden node. + +- The private method ``altgraph.Graph._bfs`` is no longer + present. + +- The private method ``altgraph.Graph._dfs`` is no longer + present. + +- ``altgraph.ObjectGraph`` now has a ``__contains__`` methods, + which means you can use the ``in`` operator to check if a + node is part of a graph. + +- ``altgraph.GraphUtil.generate_random_graph`` will raise + ``GraphError`` instead of looping forever when it is + impossible to create the requested graph. + +- ``altgraph.Dot.edge_style`` raises ``GraphError`` when + one of the nodes is not present in the graph. The method + silently added the tail in the past, but without ensuring + a consistent graph state. + +- ``altgraph.Dot.save_img`` now works when the mode is + ``"neato"``. + +0.7.2 +----- + +This is a minor bugfix release + +Bugfixes: + +- distutils didn't include the documentation subtree + +0.7.1 +----- + +This is a minor feature release + +Features: + +- Documentation is now generated using `sphinx `_ + and can be viewed at . + +- The repository has moved to bitbucket + +- ``altgraph.GraphStat.avg_hops`` is no longer present, the function had no + implementation and no specified behaviour. + +- the module ``altgraph.compat`` is gone, which means altgraph will no + longer work with Python 2.3. + + +0.7.0 +----- + +This is a minor feature release. + +Features: + +- Support for Python 3 + +- It is now possible to run tests using 'python setup.py test' + + (The actual testsuite is still very minimal though) + + diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/RECORD b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/RECORD new file mode 100644 index 0000000..876d19a --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/RECORD @@ -0,0 +1,21 @@ +altgraph-0.17.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +altgraph-0.17.2.dist-info/LICENSE,sha256=bBlNbbDGTUVTXRDJUUK5sM2nt9zH8d3uMCs9U289vkY,1002 +altgraph-0.17.2.dist-info/METADATA,sha256=F3Nk9zBKSMii3kNr_Ju4si34--Zoud_UMHFHsZT6yt8,7221 +altgraph-0.17.2.dist-info/RECORD,, +altgraph-0.17.2.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110 +altgraph-0.17.2.dist-info/top_level.txt,sha256=HEBeRWf5ItVPc7Y9hW7hGlrLXZjPoL4by6CAhBV_BwA,9 +altgraph-0.17.2.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +altgraph/Dot.py,sha256=fHS-GozpcEKyWxW2v110JaFMS68iIc0oYFlFDuNQgOQ,9901 +altgraph/Graph.py,sha256=6b6fSHLA5QSqMDnSHIO7_WJnBYIdq3K5Bt8VipRODwg,20788 +altgraph/GraphAlgo.py,sha256=Uu9aTjSKWi38iQ_e9ZrwCnzQaI1WWFDhJ6kfmu0jxAA,5645 +altgraph/GraphStat.py,sha256=vj3VqCOkzpAKggxVFLE_AlMIfPm1WN17DX4rbZjXAx4,1890 +altgraph/GraphUtil.py,sha256=1T4DJc2bJn6EIU_Ct4m0oiKlXWkXvqcXE8CGL2K9en8,3990 +altgraph/ObjectGraph.py,sha256=o7fPJtyBEgJSXAkUjzvj35B-FOY4uKzfLGqSvTitx8c,6490 +altgraph/__init__.py,sha256=YtY-rHf6X_lYk8820da2uVZT-C-B9KGpGXvBg1oZ0Fc,5015 +altgraph/__pycache__/Dot.cpython-37.pyc,, +altgraph/__pycache__/Graph.cpython-37.pyc,, +altgraph/__pycache__/GraphAlgo.cpython-37.pyc,, +altgraph/__pycache__/GraphStat.cpython-37.pyc,, +altgraph/__pycache__/GraphUtil.cpython-37.pyc,, +altgraph/__pycache__/ObjectGraph.cpython-37.pyc,, +altgraph/__pycache__/__init__.cpython-37.pyc,, diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/WHEEL b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/WHEEL new file mode 100644 index 0000000..01b8fc7 --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.36.2) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/top_level.txt b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/top_level.txt new file mode 100644 index 0000000..5ad6b8a --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/top_level.txt @@ -0,0 +1 @@ +altgraph diff --git a/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/zip-safe b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/python_gui/可执行文件_main/altgraph-0.17.2.dist-info/zip-safe @@ -0,0 +1 @@ + diff --git a/python_gui/可执行文件_main/api-ms-win-core-console-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..4063d88 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-console-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-datetime-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..3ccde41 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-debug-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..1d2d84b Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-errorhandling-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..1dea311 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-file-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..d9b1fd6 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-file-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-file-l1-2-0.dll b/python_gui/可执行文件_main/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..cb35255 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-file-l1-2-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-file-l2-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..7c6177d Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-file-l2-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-handle-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..1f39123 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-heap-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..7642b72 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-interlocked-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..596cf77 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-libraryloader-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..59e7075 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-localization-l1-2-0.dll b/python_gui/可执行文件_main/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..d0addc9 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-memory-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..bac2fa6 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-namedpipe-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..a9f2c98 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-processenvironment-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..4b30657 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-processthreads-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..08ceffb Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-processthreads-l1-1-1.dll b/python_gui/可执行文件_main/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..d6e306f Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-profile-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..11e728a Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-rtlsupport-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..f48a14d Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-string-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..0161834 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-string-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-synch-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..542058e Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-synch-l1-2-0.dll b/python_gui/可执行文件_main/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..2901731 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-sysinfo-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..a15c53c Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-timezone-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..aeca182 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-core-util-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..43eb433 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-core-util-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-conio-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..2779836 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-convert-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..80986fc Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-environment-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..7c37a62 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-filesystem-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..5dc19c0 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-heap-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..237ee32 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-locale-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..6baeef2 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-math-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..b616de0 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-process-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..2d16122 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-runtime-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..d06fbdd Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-stdio-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..5665a01 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-string-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..e9d2743 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-time-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..b4979a7 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/api-ms-win-crt-utility-l1-1-0.dll b/python_gui/可执行文件_main/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..1def184 Binary files /dev/null and b/python_gui/可执行文件_main/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/python_gui/可执行文件_main/base_library.zip b/python_gui/可执行文件_main/base_library.zip new file mode 100644 index 0000000..98c7eed Binary files /dev/null and b/python_gui/可执行文件_main/base_library.zip differ diff --git a/python_gui/可执行文件_main/d3dcompiler_47.dll b/python_gui/可执行文件_main/d3dcompiler_47.dll new file mode 100644 index 0000000..56512f5 Binary files /dev/null and b/python_gui/可执行文件_main/d3dcompiler_47.dll differ diff --git a/python_gui/可执行文件_main/libEGL.dll b/python_gui/可执行文件_main/libEGL.dll new file mode 100644 index 0000000..e910cc9 Binary files /dev/null and b/python_gui/可执行文件_main/libEGL.dll differ diff --git a/python_gui/可执行文件_main/libGLESv2.dll b/python_gui/可执行文件_main/libGLESv2.dll new file mode 100644 index 0000000..d357182 Binary files /dev/null and b/python_gui/可执行文件_main/libGLESv2.dll differ diff --git a/python_gui/可执行文件_main/libcrypto-1_1.dll b/python_gui/可执行文件_main/libcrypto-1_1.dll new file mode 100644 index 0000000..5d95d97 Binary files /dev/null and b/python_gui/可执行文件_main/libcrypto-1_1.dll differ diff --git a/python_gui/可执行文件_main/libopenblas.XWYDX2IKJW2NMTWSFYNGFUWKQU3LYTCZ.gfortran-win_amd64.dll b/python_gui/可执行文件_main/libopenblas.XWYDX2IKJW2NMTWSFYNGFUWKQU3LYTCZ.gfortran-win_amd64.dll new file mode 100644 index 0000000..d6c9715 Binary files /dev/null and b/python_gui/可执行文件_main/libopenblas.XWYDX2IKJW2NMTWSFYNGFUWKQU3LYTCZ.gfortran-win_amd64.dll differ diff --git a/python_gui/可执行文件_main/libssl-1_1.dll b/python_gui/可执行文件_main/libssl-1_1.dll new file mode 100644 index 0000000..b321efd Binary files /dev/null and b/python_gui/可执行文件_main/libssl-1_1.dll differ diff --git a/python_gui/可执行文件_main/main.exe b/python_gui/可执行文件_main/main.exe new file mode 100644 index 0000000..a2c8dff Binary files /dev/null and b/python_gui/可执行文件_main/main.exe differ diff --git a/python_gui/可执行文件_main/numpy/core/_multiarray_tests.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/core/_multiarray_tests.cp37-win_amd64.pyd new file mode 100644 index 0000000..3458097 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/core/_multiarray_tests.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/core/_multiarray_umath.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/core/_multiarray_umath.cp37-win_amd64.pyd new file mode 100644 index 0000000..601f4e8 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/core/_multiarray_umath.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/fft/_pocketfft_internal.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/fft/_pocketfft_internal.cp37-win_amd64.pyd new file mode 100644 index 0000000..ce11c4a Binary files /dev/null and b/python_gui/可执行文件_main/numpy/fft/_pocketfft_internal.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/linalg/_umath_linalg.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/linalg/_umath_linalg.cp37-win_amd64.pyd new file mode 100644 index 0000000..b6b6ce0 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/linalg/_umath_linalg.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/linalg/lapack_lite.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/linalg/lapack_lite.cp37-win_amd64.pyd new file mode 100644 index 0000000..9cf35f7 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/linalg/lapack_lite.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_bounded_integers.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_bounded_integers.cp37-win_amd64.pyd new file mode 100644 index 0000000..c306c82 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_bounded_integers.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_common.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_common.cp37-win_amd64.pyd new file mode 100644 index 0000000..6a989aa Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_common.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_generator.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_generator.cp37-win_amd64.pyd new file mode 100644 index 0000000..de8f057 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_generator.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_mt19937.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_mt19937.cp37-win_amd64.pyd new file mode 100644 index 0000000..dce3ffd Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_mt19937.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_pcg64.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_pcg64.cp37-win_amd64.pyd new file mode 100644 index 0000000..863579d Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_pcg64.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_philox.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_philox.cp37-win_amd64.pyd new file mode 100644 index 0000000..3a70200 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_philox.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/_sfc64.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/_sfc64.cp37-win_amd64.pyd new file mode 100644 index 0000000..8b583ff Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/_sfc64.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/bit_generator.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/bit_generator.cp37-win_amd64.pyd new file mode 100644 index 0000000..1a81335 Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/bit_generator.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/numpy/random/mtrand.cp37-win_amd64.pyd b/python_gui/可执行文件_main/numpy/random/mtrand.cp37-win_amd64.pyd new file mode 100644 index 0000000..bac4d5c Binary files /dev/null and b/python_gui/可执行文件_main/numpy/random/mtrand.cp37-win_amd64.pyd differ diff --git a/python_gui/可执行文件_main/opengl32sw.dll b/python_gui/可执行文件_main/opengl32sw.dll new file mode 100644 index 0000000..475e82a Binary files /dev/null and b/python_gui/可执行文件_main/opengl32sw.dll differ diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/INSTALLER b/python_gui/可执行文件_main/pip-20.1.1.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/LICENSE.txt b/python_gui/可执行文件_main/pip-20.1.1.dist-info/LICENSE.txt new file mode 100644 index 0000000..737fec5 --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-2019 The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/METADATA b/python_gui/可执行文件_main/pip-20.1.1.dist-info/METADATA new file mode 100644 index 0000000..1413a04 --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/METADATA @@ -0,0 +1,87 @@ +Metadata-Version: 2.1 +Name: pip +Version: 20.1.1 +Summary: The PyPA recommended tool for installing Python packages. +Home-page: https://pip.pypa.io/ +Author: The pip developers +Author-email: pypa-dev@groups.google.com +License: MIT +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Keywords: distutils easy_install egg setuptools wheel virtualenv +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +In 2020, we're working on improvements to the heart of pip. Please `learn more and take our survey`_ to help us do it right. + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development mailing list`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installing.html +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _learn more and take our survey: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _Development mailing list: https://groups.google.com/forum/#!forum/pypa-dev +.. _User IRC: https://webchat.freenode.net/?channels=%23pypa +.. _Development IRC: https://webchat.freenode.net/?channels=%23pypa-dev +.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/ + + diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/RECORD b/python_gui/可执行文件_main/pip-20.1.1.dist-info/RECORD new file mode 100644 index 0000000..b049b03 --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/RECORD @@ -0,0 +1,743 @@ +../../Scripts/pip.exe,sha256=vp3p4TBez0JYw_N4ePfsFLvdZ0P-YVYyCTqYchYhI74,106374 +../../Scripts/pip3.7.exe,sha256=vp3p4TBez0JYw_N4ePfsFLvdZ0P-YVYyCTqYchYhI74,106374 +../../Scripts/pip3.exe,sha256=vp3p4TBez0JYw_N4ePfsFLvdZ0P-YVYyCTqYchYhI74,106374 +pip-20.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-20.1.1.dist-info/LICENSE.txt,sha256=W6Ifuwlk-TatfRU2LR7W1JMcyMj5_y1NkRkOEJvnRDE,1090 +pip-20.1.1.dist-info/METADATA,sha256=dwRFheMvgIBpyZllM4tVlf5TfjoXc1ZxlsJf0ze61_M,3634 +pip-20.1.1.dist-info/RECORD,, +pip-20.1.1.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110 +pip-20.1.1.dist-info/entry_points.txt,sha256=HtfDOwpUlr9s73jqLQ6wF9V0_0qvUXJwCBz7Vwx0Ue0,125 +pip-20.1.1.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=9lnkMA2mCKfgnTkqep7tMbosgEJ4rENcyu2tcqDwUNw,455 +pip/__main__.py,sha256=bqCAM1cj1HwHCDx3WJa-LJxOBXimGxE8OjBqAvnhVg0,911 +pip/__pycache__/__init__.cpython-37.pyc,, +pip/__pycache__/__main__.cpython-37.pyc,, +pip/_internal/__init__.py,sha256=2si23JBW1erg19xIJ8CD6tfGknz0ijtXmzuXjGfGMGE,495 +pip/_internal/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/__pycache__/build_env.cpython-37.pyc,, +pip/_internal/__pycache__/cache.cpython-37.pyc,, +pip/_internal/__pycache__/configuration.cpython-37.pyc,, +pip/_internal/__pycache__/exceptions.cpython-37.pyc,, +pip/_internal/__pycache__/locations.cpython-37.pyc,, +pip/_internal/__pycache__/main.cpython-37.pyc,, +pip/_internal/__pycache__/pyproject.cpython-37.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-37.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-37.pyc,, +pip/_internal/build_env.py,sha256=2P0xaKpDhEfrA5P7cXnbx9QpL52Hc1Uturp8EIcjGRg,7506 +pip/_internal/cache.py,sha256=aXPdcihRKQVH26jl1cxSKTmTnV0_hNMs7cGADMUFi1Y,12334 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-37.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-37.pyc,, +pip/_internal/cli/__pycache__/main.cpython-37.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-37.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-37.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-37.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-37.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc,, +pip/_internal/cli/autocompletion.py,sha256=ekGNtcDI0p7rFVc-7s4T9Tbss4Jgb7vsB649XJIblRg,6547 +pip/_internal/cli/base_command.py,sha256=O5fT5HHfc_UYNvhqK0rjfh_13K3fIVQzcKUF4xKbFts,8024 +pip/_internal/cli/cmdoptions.py,sha256=SjHNqaQ49FO0VKshjoazPVFb7iDx71FKW_N4KgcS3qQ,28403 +pip/_internal/cli/command_context.py,sha256=ygMVoTy2jpNilKT-6416gFSQpaBtrKRBbVbi2fy__EU,975 +pip/_internal/cli/main.py,sha256=Hxc9dZyW3xiDsYZX-_J2cGXT5DWNLNn_Y7o9oUme-Ec,2616 +pip/_internal/cli/main_parser.py,sha256=voAtjo4WVPIYeu7Fqabva9SXaB3BjG0gH93GBfe6jHQ,2843 +pip/_internal/cli/parser.py,sha256=4FfwW8xB84CrkLs35ud90ZkhCcWyVkx17XD6j3XCW7c,9480 +pip/_internal/cli/progress_bars.py,sha256=WtKOHkePvHwnlhDUotAmKpjBH6hBdVTOnxSiiuCC2l8,9031 +pip/_internal/cli/req_command.py,sha256=NajtG3IfB3YkiM7LANLttyJTfPtgB-3CTErY0YR0k50,15309 +pip/_internal/cli/spinners.py,sha256=PS9s53LB5aDPelIn8FhKerK3bOdgeefFH5wSWJ2PCzI,5509 +pip/_internal/cli/status_codes.py,sha256=F6uDG6Gj7RNKQJUDnd87QKqI16Us-t-B0wPF_4QMpWc,156 +pip/_internal/commands/__init__.py,sha256=yoLAnmEXjoQgYfDuwsuWG3RzzD19oeHobGEhmpIYsB4,4100 +pip/_internal/commands/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-37.pyc,, +pip/_internal/commands/__pycache__/check.cpython-37.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-37.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-37.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-37.pyc,, +pip/_internal/commands/__pycache__/download.cpython-37.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-37.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-37.pyc,, +pip/_internal/commands/__pycache__/help.cpython-37.pyc,, +pip/_internal/commands/__pycache__/install.cpython-37.pyc,, +pip/_internal/commands/__pycache__/list.cpython-37.pyc,, +pip/_internal/commands/__pycache__/search.cpython-37.pyc,, +pip/_internal/commands/__pycache__/show.cpython-37.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-37.pyc,, +pip/_internal/commands/cache.py,sha256=LZCLVEYCr5Ugh81Zt07Hz5v6SIt0QQzr2-npj3M44aE,5676 +pip/_internal/commands/check.py,sha256=fqRrz2uKPC8Qsx2rgLygAD2Rbr-qxp1Q55zUoyZzB9Q,1677 +pip/_internal/commands/completion.py,sha256=BoEW3RZQZhsZe5to1aOe245dcBLkf-PTCJL7_u9A-Es,2957 +pip/_internal/commands/configuration.py,sha256=y74Vl2p41dBOE2NwUzW4YqnbGbl9r0lsCyBlHguDAWA,7206 +pip/_internal/commands/debug.py,sha256=3YkY_M-h1tfpEzat4agulzAk17MU93Qt7ehy_Gi2l6Q,7275 +pip/_internal/commands/download.py,sha256=thDfHi0qY6DQ_1GkYPTutwta3tA0RaHJhKycepC4FgA,4740 +pip/_internal/commands/freeze.py,sha256=LveCd11SlrZ7s3RovnWpaK0tXB2Jci4DPcP6A9cj0e4,3342 +pip/_internal/commands/hash.py,sha256=KckEd5FeomfsRgZmRzhJRPYSsz-HXbFZGNdrzp12ftQ,1742 +pip/_internal/commands/help.py,sha256=s8bDMJbRVxs9ehLKuD4mXTsv1bTRapy1jDwaTCE90qw,1193 +pip/_internal/commands/install.py,sha256=1oXXadnvHM-55XWIdeqdaR75BjLPGC2-wXEkkhMyMtQ,25430 +pip/_internal/commands/list.py,sha256=GCrhhu07cw3CyZGFk8rGM2ejk3JmeF9XLbC7raiq_bw,10141 +pip/_internal/commands/search.py,sha256=KjAz-s9mwkiLfDd-cpQO3pL6KFoOyl1RKlvxnJj3zz8,5191 +pip/_internal/commands/show.py,sha256=RqSX_KvzcZWz1gxIOZEnnk4-VeSkNvr0yWz5jF6JrcY,6791 +pip/_internal/commands/uninstall.py,sha256=D2Otze7J-RJvjfozRq2Yon9NKJrg4cbBGFuXyEwBMR0,3202 +pip/_internal/commands/wheel.py,sha256=oxyo51V1m_Hu4U-HCS53vBx5-82Q6GOhn1doOgAr3KE,6431 +pip/_internal/configuration.py,sha256=k3Y3HMMMm_fzNqX75QoNuHvjX8tplmNBuIJJpDHmf9M,14349 +pip/_internal/distributions/__init__.py,sha256=ECBUW5Gtu9TjJwyFLvim-i6kUMYVuikNh9I5asL6tbA,959 +pip/_internal/distributions/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-37.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-37.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-37.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-37.pyc,, +pip/_internal/distributions/base.py,sha256=ruprpM_L2T2HNi3KLUHlbHimZ1sWVw-3Q0Lb8O7TDAI,1425 +pip/_internal/distributions/installed.py,sha256=YqlkBKr6TVP1MAYS6SG8ojud21wVOYLMZ8jMLJe9MSU,760 +pip/_internal/distributions/sdist.py,sha256=D4XTMlCwgPlK69l62GLYkNSVTVe99fR5iAcVt2EbGok,4086 +pip/_internal/distributions/wheel.py,sha256=95uD-TfaYoq3KiKBdzk9YMN4RRqJ28LNoSTS2K46gek,1294 +pip/_internal/exceptions.py,sha256=B3tSkzheqSfGoGt5OcAOhLhfnWWMzfJ60URvZWwkwHw,10308 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/index/__pycache__/collector.cpython-37.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-37.pyc,, +pip/_internal/index/collector.py,sha256=tFpQdkBlbNzdwlep7a5_o9unymgWuEmo2WtARsagiao,21547 +pip/_internal/index/package_finder.py,sha256=2Uq4RPSRboyRPj1Zp3-SB8ZFNLAEMrZv6G2yH-wVjIA,37676 +pip/_internal/locations.py,sha256=VifFEqhc7FWFV8QGoEM3CpECRY8Doq7kTytytxsEgx0,6734 +pip/_internal/main.py,sha256=IVBnUQ-FG7DK6617uEXRB5_QJqspAsBFmTmTesYkbdQ,437 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-37.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-37.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-37.pyc,, +pip/_internal/models/__pycache__/index.cpython-37.pyc,, +pip/_internal/models/__pycache__/link.cpython-37.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-37.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-37.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-37.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-37.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-37.pyc,, +pip/_internal/models/candidate.py,sha256=Y58Bcm6oXUj0iS-yhmerlGo5CQJI2p0Ww9h6hR9zQDw,1150 +pip/_internal/models/direct_url.py,sha256=MnBLPci1hE9Ndh6d3m0LAqB7hX3ci80CCJTE5eerFaQ,6900 +pip/_internal/models/format_control.py,sha256=ICzVjjGwfZYdX-eLLKHjMHLutEJlAGpfj09OG_eMqac,2673 +pip/_internal/models/index.py,sha256=K59A8-hVhBM20Xkahr4dTwP7OjkJyEqXH11UwHFVgqM,1060 +pip/_internal/models/link.py,sha256=KobEaGViwOzyPBD7kgzpGqyrQfh5zjlonOStCGAhl2U,7302 +pip/_internal/models/scheme.py,sha256=vvhBrrno7eVDXcdKHiZWwxhPHf4VG5uSCEkC0QDR2RU,679 +pip/_internal/models/search_scope.py,sha256=AYbFyfEen5cx0kRZTMgUWUxzcMr5nDk32MO4S67Ror4,4712 +pip/_internal/models/selection_prefs.py,sha256=rPeif2KKjhTPXeMoQYffjqh10oWpXhdkxRDaPT1HO8k,1908 +pip/_internal/models/target_python.py,sha256=bbOSwPmojPMtCW6i2XMNjVJzt_2GQYfx3FcGQY8pL44,3842 +pip/_internal/models/wheel.py,sha256=FTfzVb4WIbfIehxhdlAVvCil_MQ0-W44oyN56cE6NHc,2772 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/network/__pycache__/auth.cpython-37.pyc,, +pip/_internal/network/__pycache__/cache.cpython-37.pyc,, +pip/_internal/network/__pycache__/download.cpython-37.pyc,, +pip/_internal/network/__pycache__/session.cpython-37.pyc,, +pip/_internal/network/__pycache__/utils.cpython-37.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-37.pyc,, +pip/_internal/network/auth.py,sha256=HJg5peC3gL44H7pmZhCPnu2MrwpAalOSF7d1jmNDqt8,11125 +pip/_internal/network/cache.py,sha256=51CExcRkXWrgMZ7WsrZ6cmijKfViD5tVgKbBvJHO1IE,2394 +pip/_internal/network/download.py,sha256=MIisedL1oFOSrYAN119HDlIuFfw6eL6CNY7oJhHIzUc,6269 +pip/_internal/network/session.py,sha256=Zs0uiyPxTpfpgSv-ZI9hK9TjasmTplBuBivOTcUiJME,15208 +pip/_internal/network/utils.py,sha256=iiixo1OeaQ3niUWiBjg59PN6f1w7vvTww1vFriTD_IU,1959 +pip/_internal/network/xmlrpc.py,sha256=AL115M3vFJ8xiHVJneb8Hi0ZFeRvdPhblC89w25OG5s,1597 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/operations/__pycache__/check.cpython-37.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-37.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-37.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-37.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-37.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-37.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-37.pyc,, +pip/_internal/operations/build/metadata.py,sha256=yHMi5gHYXcXyHcvUPWHdO-UyOo3McFWljn_nHfM1O9c,1307 +pip/_internal/operations/build/metadata_legacy.py,sha256=VgzBTk8naIO8-8N_ifEYF7ZAxWUDhphWVIaVlZ2FqYM,2011 +pip/_internal/operations/build/wheel.py,sha256=ntltdNP6D2Tpr4V0agssu6rE0F9LaBpJkYT6zSdhEbw,1469 +pip/_internal/operations/build/wheel_legacy.py,sha256=N1aqNZyGURBX0Bj6wPmB0t4866oMbxoHUpC9pz6FyT0,3356 +pip/_internal/operations/check.py,sha256=a6uHG0daoWpmSPCdL7iYJaGQYZ-CRvPvTnCv2PnIIs0,5353 +pip/_internal/operations/freeze.py,sha256=mGT2OFjMOb0FlVjgedAzJ9GbNOgNwYiL0130xx60pHA,10587 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-37.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-37.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-37.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=rJ_xs2qtDUjpY2-n6eYlVyZiNoKbOtZXZrYrcnIELt4,1488 +pip/_internal/operations/install/legacy.py,sha256=YkKdL_tyNwDP2huOGxmopySh5Pz2v_wRVeSTEa6ZUco,4686 +pip/_internal/operations/install/wheel.py,sha256=8IO3GYTtrJ42cqipLOh0rxex4j-PfU8m71HVB0tOQd0,23885 +pip/_internal/operations/prepare.py,sha256=RDwtSetVTfv-nv1-_apYBA3Dez5ngBmOYzcuZy2Q3vk,20030 +pip/_internal/pyproject.py,sha256=VJKsrXORGiGoDPVKCQhuu4tWlQSTOhoiRlVLRNu4rx4,7400 +pip/_internal/req/__init__.py,sha256=UVaYPlHZVGRBQQPjvGC_6jJDQtewXm0ws-8Lxhg_TiY,2671 +pip/_internal/req/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-37.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-37.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-37.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-37.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc,, +pip/_internal/req/constructors.py,sha256=i_dU2sYtSk5GMsad68gBx26tfneRmhPF2sYGe4uPnu8,15441 +pip/_internal/req/req_file.py,sha256=5QlZr36kkw1Jsbr8vFO-fGUEAef9h-AoRRqjx8EYSuQ,19075 +pip/_internal/req/req_install.py,sha256=9yn_fBFTyzHPMjYG5WXBB2WiGQvk3BT6gYl9Khw8ZoE,31713 +pip/_internal/req/req_set.py,sha256=EBHZ9zWSR8arxjcadyU2OotZIECemM8oOFQ0nK-Bb7E,7792 +pip/_internal/req/req_tracker.py,sha256=cAKhSw-QbhGxqPF1Wc0zD6jo932jpdYF3ROfRSH8hes,4744 +pip/_internal/req/req_uninstall.py,sha256=NdErRQBpNScsdwJAo3O_zo2KPPfQyVMJ_Q2mxPWYyOA,23734 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-37.pyc,, +pip/_internal/resolution/base.py,sha256=xi72YmIS-lEjyK13PN_3qkGGthA4yGoK0C6qWynyHrE,682 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-37.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=56GuGHWcseV24cvTCOuRHMAF_Er1UeDxn5m18XMkHBs,17587 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-37.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=l2Z3-1Qg243lWzwFbaN17qixA4U8LYr-qMhZTdaHROc,1502 +pip/_internal/resolution/resolvelib/candidates.py,sha256=wzi9t3aX1Twi3xTNEkpG6eWOd0dEg5uKul-QkK3arvw,15173 +pip/_internal/resolution/resolvelib/factory.py,sha256=mDs3p8D9N9zfYvn_iIx0saDLHF1SF7KHBQlA1gWSWVQ,7574 +pip/_internal/resolution/resolvelib/provider.py,sha256=0fKuPuEoD5T7w-YwKgQZc1AmgSnAkrxGnLBOf-_6Kiw,1703 +pip/_internal/resolution/resolvelib/requirements.py,sha256=bu9Y4YINHjvBm-NBKvnxw9IYHW4t6rRlm4-QKVqLDsM,3872 +pip/_internal/resolution/resolvelib/resolver.py,sha256=3LXhhCz6CtIpih8tK2nHeRvVEjVJmXrqxNCM1FQM1U0,6673 +pip/_internal/self_outdated_check.py,sha256=3KO1pTJUuYaiV9X0t87I9PimkGL82HbhLWbocqKZpBU,8009 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-37.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-37.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-37.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-37.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-37.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-37.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-37.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-37.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-37.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-37.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-37.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-37.pyc,, +pip/_internal/utils/__pycache__/models.cpython-37.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-37.pyc,, +pip/_internal/utils/__pycache__/pkg_resources.cpython-37.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-37.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc,, +pip/_internal/utils/__pycache__/typing.cpython-37.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-37.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-37.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-37.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-37.pyc,, +pip/_internal/utils/appdirs.py,sha256=RZzUG-Bkh2b-miX0DSZ3v703_-bgK-v0PfWCCjwVE9g,1349 +pip/_internal/utils/compat.py,sha256=ZRJsXMjq373p0US54CUkKRkpLH-ioOM3H3yAhmbUPcs,8898 +pip/_internal/utils/compatibility_tags.py,sha256=b2NWEbxfsrB2pBLwJkNVSYUrIAsumQ2IWDoNabbwLPs,5492 +pip/_internal/utils/deprecation.py,sha256=pBnNogoA4UGTxa_JDnPXBRRYpKMbExAhXpBwAwklOBs,3318 +pip/_internal/utils/direct_url_helpers.py,sha256=bZCBNwPQVyZpYGjX_VcomvVvRHvKw-9JzEV-Ft09LQc,4359 +pip/_internal/utils/distutils_args.py,sha256=a56mblNxk9BGifbpEETG61mmBrqhjtjRkJ4HYn-oOEE,1350 +pip/_internal/utils/encoding.py,sha256=hxZz0t3Whw3d4MHQEiofxalTlfKwxFdLc8fpeGfhKo8,1320 +pip/_internal/utils/entrypoints.py,sha256=vHcNpnksCv6mllihU6hfifdsKPEjwcaJ1aLIXEaynaU,1152 +pip/_internal/utils/filesystem.py,sha256=fqpFwT280152rlX1RjJqjoLp_MXVA8HzKTtDmsl15Ps,6813 +pip/_internal/utils/filetypes.py,sha256=R2FwzoeX7b-rZALOXx5cuO8VPPMhUQ4ne7wm3n3IcWA,571 +pip/_internal/utils/glibc.py,sha256=LOeNGgawCKS-4ke9fii78fwXD73dtNav3uxz1Bf-Ab8,3297 +pip/_internal/utils/hashes.py,sha256=LQVOt2LTWAdBJH6WPim1YGdF0J-0AfBBLghIDlY1-80,3986 +pip/_internal/utils/inject_securetransport.py,sha256=M17ZlFVY66ApgeASVjKKLKNz0LAfk-SyU0HZ4ZB6MmI,810 +pip/_internal/utils/logging.py,sha256=YIfuDUEkmdn9cIRQ_Ec8rgXs1m5nOwDECtZqM4CBH5U,13093 +pip/_internal/utils/misc.py,sha256=cK17YkNfEccS9AuH6Xc9kYQxE0DPNgb-ULh8QgKPr8c,26195 +pip/_internal/utils/models.py,sha256=IA0hw_T4awQzui0kqfIEASm5yLtgZAB08ag59Nip5G8,1148 +pip/_internal/utils/packaging.py,sha256=VtiwcAAL7LBi7tGL2je7LeW4bE11KMHGCsJ1NZY5XtM,3035 +pip/_internal/utils/pkg_resources.py,sha256=ZX-k7V5q_aNWyDse92nN7orN1aCpRLsaxzpkBZ1XKzU,1254 +pip/_internal/utils/setuptools_build.py,sha256=E1KswI7wfNnCDE5R6G8c9ZbByENpu7NqocjY26PCQDw,5058 +pip/_internal/utils/subprocess.py,sha256=vI2QWpNDqM-dkn-z8i1Yrfxnn5sYniPeWn6FhTxX4dY,9902 +pip/_internal/utils/temp_dir.py,sha256=H8yUBrRWqTM83cuUu7jVvw_xKL9eZtg_IIbXQtjMLlA,8185 +pip/_internal/utils/typing.py,sha256=xkYwOeHlf4zsHXBDC4310HtEqwhQcYXFPq2h35Tcrl0,1401 +pip/_internal/utils/unpacking.py,sha256=M944JTSiapBOSKLWu7lbawpVHSE7flfzZTEr3TAG7v8,9438 +pip/_internal/utils/urls.py,sha256=q2rw1kMiiig_XZcoyJSsWMJQqYw-2wUmrMoST4mCW_I,1527 +pip/_internal/utils/virtualenv.py,sha256=iVJ8ZlbNtGon6I4uZFsY2SidrUf1vt3YHrgS5CuU98w,3553 +pip/_internal/utils/wheel.py,sha256=ofsZEN35YhSxRYC4gfzpTtqa_UQ8GF1tl4jtyUdd0gU,7306 +pip/_internal/vcs/__init__.py,sha256=viJxJRqRE_mVScum85bgQIXAd6o0ozFt18VpC-qIJrM,617 +pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-37.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-37.pyc,, +pip/_internal/vcs/bazaar.py,sha256=84q1-kj1_nJ9AMzMu8RmMp-riRZu81M7K9kowcYgi3U,3957 +pip/_internal/vcs/git.py,sha256=wlvvVT-hPRwCvkihEoOCZmkCzMzosmV43_DTPvEVA_M,14165 +pip/_internal/vcs/mercurial.py,sha256=wVdmoFH-RYoaxjtuAqw40b0daMPX-Fr_26W1ME_9HZU,5347 +pip/_internal/vcs/subversion.py,sha256=6shByxeASetbM7WCj6WNoPcuLfBK65DoOEqbkSiWPAI,12331 +pip/_internal/vcs/versioncontrol.py,sha256=RtSrHr96CynqXYBQIC61cVY_9C0e7hk8dXUV-BpHmpI,23591 +pip/_internal/wheel_builder.py,sha256=p9ZFawfCR1GXchTRY6oq7Qx5enLLjs2SouafNFNsAAE,9590 +pip/_vendor/__init__.py,sha256=Tfcbsek_rpFZWMnYp6vzGpWHsmiwBGYOmInUX1NGJp4,4788 +pip/_vendor/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/__pycache__/appdirs.cpython-37.pyc,, +pip/_vendor/__pycache__/contextlib2.cpython-37.pyc,, +pip/_vendor/__pycache__/distro.cpython-37.pyc,, +pip/_vendor/__pycache__/ipaddress.cpython-37.pyc,, +pip/_vendor/__pycache__/pyparsing.cpython-37.pyc,, +pip/_vendor/__pycache__/retrying.cpython-37.pyc,, +pip/_vendor/__pycache__/six.cpython-37.pyc,, +pip/_vendor/__pycache__/toml.cpython-37.pyc,, +pip/_vendor/appdirs.py,sha256=pYg72GhKgkVzkPxZNFUSIzMF3tAPWBgIPoQE8jgVftg,25888 +pip/_vendor/cachecontrol/__init__.py,sha256=pJtAaUxOsMPnytI1A3juAJkXYDr8krdSnsg4Yg3OBEg,302 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=URGE0KrA87QekCG3SGPatlSPT571dZTDjNa-ZXX3pDc,1295 +pip/_vendor/cachecontrol/adapter.py,sha256=sSwaSYd93IIfCFU4tOMgSo6b2LCt_gBSaQUj8ktJFOA,4882 +pip/_vendor/cachecontrol/cache.py,sha256=1fc4wJP8HYt1ycnJXeEw5pCpeBL2Cqxx6g9Fb0AYDWQ,805 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=-gHNKYvaeD0kOk5M74eOrsSgIKUtC6i6GfbmugGweEo,86 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-37.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-37.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=nYVKsJtXh6gJXvdn1iWyrhxvkwpQrK-eKoMRzuiwkKk,4153 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=HxelMpNCo-dYr2fiJDwM3hhhRmxUYtB5tXm1GpAAT4Y,856 +pip/_vendor/cachecontrol/compat.py,sha256=kHNvMRdt6s_Xwqq_9qJmr9ou3wYMOMUMxPPcwNxT8Mc,695 +pip/_vendor/cachecontrol/controller.py,sha256=CWEX3pedIM9s60suf4zZPtm_JvVgnvogMGK_OiBG5F8,14149 +pip/_vendor/cachecontrol/filewrapper.py,sha256=vACKO8Llzu_ZWyjV1Fxn1MA4TGU60N5N3GSrAFdAY2Q,2533 +pip/_vendor/cachecontrol/heuristics.py,sha256=BFGHJ3yQcxvZizfo90LLZ04T_Z5XSCXvFotrp7Us0sc,4070 +pip/_vendor/cachecontrol/serialize.py,sha256=vIa4jvq4x_KSOLdEIedoknX2aXYHQujLDFV4-F21Dno,7091 +pip/_vendor/cachecontrol/wrapper.py,sha256=5LX0uJwkNQUtYSEw3aGmGu9WY8wGipd81mJ8lG0d0M4,690 +pip/_vendor/certifi/__init__.py,sha256=AOqspvggP_F62Q_4UmJAhx5rZkoRHoRYBE3SCnSJzAk,64 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-37.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=hwBo73gFnF0BKiP3FQKfG32xkGDhxl4SwCQiH2rDKr0,284099 +pip/_vendor/certifi/core.py,sha256=c8hoNcYWz6rQo2VAM5d0mcEWiewCvQuOUbCwJz49vhQ,792 +pip/_vendor/chardet/__init__.py,sha256=YsP5wQlsHJ2auF1RZJfypiSrCA7_bQiRm3ES_NI76-Y,1559 +pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-37.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 +pip/_vendor/chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 +pip/_vendor/chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 +pip/_vendor/chardet/charsetgroupprober.py,sha256=6bDu8YIiRuScX4ca9Igb0U69TA2PGXXDej6Cc4_9kO4,3787 +pip/_vendor/chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 +pip/_vendor/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=DI8dlV3FBD0c0XA_y3sQ78z754DUv1J8n34RtDjOXNw,2774 +pip/_vendor/chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 +pip/_vendor/chardet/compat.py,sha256=PKTzHkSbtbHDqS9PyujMbX74q1a8mMpeQTDVsQhZMRw,1134 +pip/_vendor/chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 +pip/_vendor/chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 +pip/_vendor/chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 +pip/_vendor/chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 +pip/_vendor/chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 +pip/_vendor/chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 +pip/_vendor/chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 +pip/_vendor/chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 +pip/_vendor/chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 +pip/_vendor/chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 +pip/_vendor/chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 +pip/_vendor/chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 +pip/_vendor/chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 +pip/_vendor/chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=1HqQS9Pbtnj1xQgxitJMvw8X6kKr5OockNCZWfEQrPE,12839 +pip/_vendor/chardet/langcyrillicmodel.py,sha256=LODajvsetH87yYDDQKA2CULXUH87tI223dhfjh9Zx9c,17948 +pip/_vendor/chardet/langgreekmodel.py,sha256=8YAW7bU8YwSJap0kIJSbPMw1BEqzGjWzqcqf0WgUKAA,12688 +pip/_vendor/chardet/langhebrewmodel.py,sha256=JSnqmE5E62tDLTPTvLpQsg5gOMO4PbdWRvV7Avkc0HA,11345 +pip/_vendor/chardet/langhungarianmodel.py,sha256=RhapYSG5l0ZaO-VV4Fan5sW0WRGQqhwBM61yx3yxyOA,12592 +pip/_vendor/chardet/langthaimodel.py,sha256=8l0173Gu_W6G8mxmQOTEF4ls2YdE7FxWf3QkSxEGXJQ,11290 +pip/_vendor/chardet/langturkishmodel.py,sha256=W22eRNJsqI6uWAfwXSKVWWnCerYqrI8dZQTm_M0lRFk,11102 +pip/_vendor/chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 +pip/_vendor/chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 +pip/_vendor/chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 +pip/_vendor/chardet/sbcharsetprober.py,sha256=LDSpCldDCFlYwUkGkwD2oFxLlPWIWXT09akH_2PiY74,5657 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=1IprcCB_k1qfmnxGC6MBbxELlKqD3scW6S8YIwdeyXA,3546 +pip/_vendor/chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 +pip/_vendor/chardet/universaldetector.py,sha256=qL0174lSZE442eB21nnktT9_VcAye07laFWUeUrjttY,12485 +pip/_vendor/chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 +pip/_vendor/chardet/version.py,sha256=sp3B08mrDXB-pf3K9fqJ_zeDHOCLC8RrngQyDFap_7g,242 +pip/_vendor/colorama/__init__.py,sha256=DqjXH9URVP3IJwmMt7peYw50ns1RNAymIB9-XdPEFV8,239 +pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Fi0un-QLqRm-v7o_nKiOqyC8PapBJK7DLV_q9LKtTO0,2524 +pip/_vendor/colorama/ansitowin32.py,sha256=u8QaqdqS_xYSfNkPM1eRJLHz6JMWPodaJaP0mxgHCDc,10462 +pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915 +pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404 +pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438 +pip/_vendor/contextlib2.py,sha256=5HjGflUzwWAUfcILhSmC2GqvoYdZZzFzVfIDztHigUs,16915 +pip/_vendor/distlib/__init__.py,sha256=gzl1hjUXmDGrqRyU7ZLjBwJGAcMimQbrZ22XPVaKaRE,581 +pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-37.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc,, +pip/_vendor/distlib/_backport/__init__.py,sha256=bqS_dTOH6uW9iGgd0uzfpPjo6vZ4xpPZ7kyfZJ2vNaw,274 +pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc,, +pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc,, +pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-37.pyc,, +pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc,, +pip/_vendor/distlib/_backport/misc.py,sha256=KWecINdbFNOxSOP1fGF680CJnaC6S4fBRgEtaYTw0ig,971 +pip/_vendor/distlib/_backport/shutil.py,sha256=VW1t3uYqUjWZH7jV-6QiimLhnldoV5uIpH4EuiT1jfw,25647 +pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=swZKxq9RY5e9r3PXCrlvQPMsvOdiWZBTHLEbqS8LJLU,2617 +pip/_vendor/distlib/_backport/sysconfig.py,sha256=BQHFlb6pubCl_dvT1NjtzIthylofjKisox239stDg0U,26854 +pip/_vendor/distlib/_backport/tarfile.py,sha256=Ihp7rXRcjbIKw8COm9wSePV9ARGXbSF9gGXAMn2Q-KU,92628 +pip/_vendor/distlib/compat.py,sha256=xdNZmqFN5HwF30HjRn5M415pcC2kgXRBXn767xS8v-M,41404 +pip/_vendor/distlib/database.py,sha256=fhNzEDtb4HXrpxKyQvhVzDXcOiJlzrOM--UYnvCeZrI,51045 +pip/_vendor/distlib/index.py,sha256=SXKzpQCERctxYDMp_OLee2f0J0e19ZhGdCIoMlUfUQM,21066 +pip/_vendor/distlib/locators.py,sha256=c9E4cDEacJ_uKbuE5BqAVocoWp6rsuBGTkiNDQq3zV4,52100 +pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811 +pip/_vendor/distlib/markers.py,sha256=6Ac3cCfFBERexiESWIOXmg-apIP8l2esafNSX3KMy-8,4387 +pip/_vendor/distlib/metadata.py,sha256=OhbCKmf5lswE8unWBopI1hj7tRpHp4ZbFvU4d6aAEMM,40234 +pip/_vendor/distlib/resources.py,sha256=2FGv0ZHF14KXjLIlL0R991lyQQGcewOS4mJ-5n-JVnc,10766 +pip/_vendor/distlib/scripts.py,sha256=OAkEwxRvIzX-VSfhEttQEKJFVLA47gbW0OgQXJRs7OQ,16998 +pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768 +pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984 +pip/_vendor/distlib/util.py,sha256=f2jZCPrcLCt6LcnC0gUy-Fur60tXD8reA7k4rDpHMDw,59845 +pip/_vendor/distlib/version.py,sha256=_n7F6juvQGAcn769E_SHa7fOcf5ERlEVymJ_EjPRwGw,23391 +pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112 +pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840 +pip/_vendor/distlib/wheel.py,sha256=bRtR5bNR_u_DwkwktN1bgZuwLVOJT1p_vNIUPyN8kJc,40452 +pip/_vendor/distro.py,sha256=xxMIh2a3KmippeWEHzynTdHT3_jZM0o-pos0dAWJROM,43628 +pip/_vendor/html5lib/__init__.py,sha256=Ztrn7UvF-wIFAgRBBa0ML-Gu5AffH3BPX_INJx4SaBI,1162 +pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=3LBtJMlzgwM8vpQiU1TvGmEEmNH72sV0yD8yS53y07A,16705 +pip/_vendor/html5lib/_inputstream.py,sha256=bPUWcAfJScK4xkjQQaG_HsI2BvEVbFvI0AsodDYPQj0,32552 +pip/_vendor/html5lib/_tokenizer.py,sha256=YAaOEBD6qc5ISq9Xt9Nif1OFgcybTTfMdwqBkZhpAq4,76580 +pip/_vendor/html5lib/_trie/__init__.py,sha256=8VR1bcgD2OpeS2XExpu5yBhP_Q1K-lwKbBKICBPf1kU,289 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-37.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013 +pip/_vendor/html5lib/_trie/datrie.py,sha256=EQpqSfkZRuTbE-DuhW7xMdVDxdZNZ0CfmnYfHA_3zxM,1178 +pip/_vendor/html5lib/_trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775 +pip/_vendor/html5lib/_utils.py,sha256=ismpASeqa2jqEPQjHUj8vReAf7yIoKnvLN5fuOw6nv0,4015 +pip/_vendor/html5lib/constants.py,sha256=4lmZWLtEPRLnl8NzftOoYTJdo6jpeMtP6dqQC0g_bWQ,83518 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-37.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-37.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919 +pip/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945 +pip/_vendor/html5lib/filters/lint.py,sha256=jk6q56xY0ojiYfvpdP-OZSm9eTqcAdRqhCoPItemPYA,3643 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=4ON02KNjuqda1lCw5_JCUZxb0BzWR5M7ON84dtJ7dm0,26248 +pip/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214 +pip/_vendor/html5lib/html5parser.py,sha256=g5g2ezkusHxhi7b23vK_-d6K6BfIJRbqIQmvQ9z4EgI,118963 +pip/_vendor/html5lib/serializer.py,sha256=yfcfBHse2wDs6ojxn-kieJjLT5s1ipilQJ0gL3-rJis,15758 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=A0rY5gXIe4bJOiSGRO_j_tFhngRBO8QZPzPtPw5dFzo,679 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-37.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-37.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-37.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-37.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=wQGp5yy22TNG8tJ6aREe4UUeTR7A99dEz0BXVaedWb4,14579 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=aqIBOGj_dFYqBURIcTegGNBhAIJOw5iFDHb4jrkYH-8,12764 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=9V0dXxbJYYq-Skgb5-_OL2NkVYpjioEb4CHajo0e9yI,14122 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=yhXxHpjlSqfQyUag3v8-vWjMPriFBU8YRAPNpDgBTn8,5714 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-37.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-37.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-37.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=sz1o6mmE93NQ53qJFDO7HKyDtuwgK-Ay3qSFZPC6u00,4550 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=sY6wfRshWTllu6n48TPWpKsQRPp-0CQrT0hj_AdzHSU,6309 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309 +pip/_vendor/idna/__init__.py,sha256=9Nt7xpyet3DmOrPUGooDdAwmHZZu1qUAy2EaJ93kGiQ,58 +pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc,, +pip/_vendor/idna/codec.py,sha256=lvYb7yu7PhAqFaAIAdWcwgaWI2UmgseUua-1c0AsG0A,3299 +pip/_vendor/idna/compat.py,sha256=R-h29D-6mrnJzbXxymrWUW7iZUvy-26TQwZ0ij57i4U,232 +pip/_vendor/idna/core.py,sha256=Hy1RkJrrIQWW8kicqZ8vQT_GreYlAhkfopjESSzL3wk,11844 +pip/_vendor/idna/idnadata.py,sha256=p1_KeD9BqT-sDGqMcGxhBWAOrYNrPxj5YvHya0ImFbU,41201 +pip/_vendor/idna/intranges.py,sha256=TY1lpxZIQWEP6tNqjZkFA5hgoMWOj1OBmnUG8ihT87E,1749 +pip/_vendor/idna/package_data.py,sha256=IjspS_rQQ_0HCGc0CaNhn3NXl3ohvRg7-_P0gAaSc-o,21 +pip/_vendor/idna/uts46data.py,sha256=w9d1B5OESLSgr2tMx0svwoPBi0Qj0_7HRyL1Vq5axwg,201192 +pip/_vendor/ipaddress.py,sha256=-0RmurI31XgAaN20WCi0zrcuoat90nNA70_6yGlx2PU,79875 +pip/_vendor/msgpack/__init__.py,sha256=2gJwcsTIaAtCM0GMi2rU-_Y6kILeeQuqRkrQ22jSANc,1118 +pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-37.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc,, +pip/_vendor/msgpack/_version.py,sha256=hu7lzmZ_ClOaOOmRsWb4xomhzQ4UIsLsvv8KY6UysHE,20 +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=nV19BzE9Be8SJHrxxYJHFbvEHJaXcP3avRkHVp5wovM,6034 +pip/_vendor/msgpack/fallback.py,sha256=Z8V3iYUUPqKVy4WWTk64Vq3G0PylQIOmlWvgnMhmkdU,37133 +pip/_vendor/packaging/__about__.py,sha256=y-K51xPSysxvOfTjAb074yqOZfDeX5qSID0ZEbEb9cE,744 +pip/_vendor/packaging/__init__.py,sha256=6enbp5XgRfjBjsI9-bn00HjHf5TH21PDMOKkJW8xw-w,562 +pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/_typing.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-37.pyc,, +pip/_vendor/packaging/_compat.py,sha256=Z-PwchK0cREbaRGF5MZP8LEv8JkC-qydn2FRrtjeixk,1138 +pip/_vendor/packaging/_structures.py,sha256=ozkCX8Q8f2qE1Eic3YiQ4buDVfgz2iYevY9e7R2y3iY,2022 +pip/_vendor/packaging/_typing.py,sha256=-cq_iNeveAWCVoseVvqmknWLbvZ_i9g7BeZBo0ShtHg,1449 +pip/_vendor/packaging/markers.py,sha256=yap5bk3c8QyPuGtiVbQSYhN70bxWj1nLDv2ZuaCLq7g,9501 +pip/_vendor/packaging/requirements.py,sha256=G43p2ylM_REg87RLG9JybjbdwfaPyzaKYRtllRfNdrM,4913 +pip/_vendor/packaging/specifiers.py,sha256=Nz8bnFp53cQInmRGZy50QXlIi2tkDXMfRuGyGps2IRE,31314 +pip/_vendor/packaging/tags.py,sha256=SCrw-jC3h0ymam6QXDX5ZqgvRcMNq_cQD55gFnT56Xg,23704 +pip/_vendor/packaging/utils.py,sha256=v5Wk8B7gUL13Rzed6NNhCZlutPQT7jNV-7hr-WOtacU,1700 +pip/_vendor/packaging/version.py,sha256=qRdNN0_XuPFOJ3fut8ehzxJrNYtBzqF8ZtagEvgNUUM,15480 +pip/_vendor/pep517/__init__.py,sha256=r5uA106NGJa3slspaD2m32aFpFUiZX-mZ9vIlzAEOp4,84 +pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/_in_process.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-37.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc,, +pip/_vendor/pep517/_in_process.py,sha256=XrKOTURJdia5R7i3i_OQmS89LASFXE3HQXfX63qZBIE,8438 +pip/_vendor/pep517/build.py,sha256=DN4ouyj_bd00knOKqv0KHRtN0-JezJoNNZQmcDi4juk,3335 +pip/_vendor/pep517/check.py,sha256=YoaNE3poJGpz96biVCYwtcDshwEGE2HRU5KKya9yfpY,5961 +pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098 +pip/_vendor/pep517/compat.py,sha256=M-5s4VNp8rjyT76ZZ_ibnPD44DYVzSQlyCEHayjtDPw,780 +pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129 +pip/_vendor/pep517/envbuild.py,sha256=szKUFlO50X1ahQfXwz4hD9V2VE_bz9MLVPIeidsFo4w,6041 +pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463 +pip/_vendor/pep517/wrappers.py,sha256=yFU4Lp7TIYbmuVOTY-pXnlyGZ3F_grIi-JlLkpGN8Gk,10783 +pip/_vendor/pkg_resources/__init__.py,sha256=XpGBfvS9fafA6bm5rx7vnxdxs7yqyoc_NnpzKApkJ64,108277 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562 +pip/_vendor/progress/__init__.py,sha256=fcbQQXo5np2CoQyhSH5XprkicwLZNLePR3uIahznSO0,4857 +pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-37.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-37.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc,, +pip/_vendor/progress/bar.py,sha256=QuDuVNcmXgpxtNtxO0Fq72xKigxABaVmxYGBw4J3Z_E,2854 +pip/_vendor/progress/counter.py,sha256=MznyBrvPWrOlGe4MZAlGUb9q3aODe6_aNYeAE_VNoYA,1372 +pip/_vendor/progress/spinner.py,sha256=k8JbDW94T0-WXuXfxZIFhdoNPYp3jfnpXqBnfRv5fGs,1380 +pip/_vendor/pyparsing.py,sha256=J1b4z3S_KwyJW7hKGnoN-hXW9pgMIzIP6QThyY5yJq4,273394 +pip/_vendor/requests/__init__.py,sha256=DoS7sn6SOs-Vmi3IHdJFfM1RmlONZHmEKO3DGvyWsnY,4080 +pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-37.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-37.pyc,, +pip/_vendor/requests/__version__.py,sha256=dpcXABdGo9y3UFFKFU_Wu_YHSa7TBXxCghOju7S8IYs,441 +pip/_vendor/requests/_internal_utils.py,sha256=Zx3PnEUccyfsB-ie11nZVAW8qClJy0gx1qNME7rgT18,1096 +pip/_vendor/requests/adapters.py,sha256=e-bmKEApNVqFdylxuMJJfiaHdlmS_zhWhIMEzlHvGuc,21548 +pip/_vendor/requests/api.py,sha256=PlHM-HT3PQ5lyufoeGmV-nJxRi7UnUyGVh7OV7B9XV4,6496 +pip/_vendor/requests/auth.py,sha256=OMoJIVKyRLy9THr91y8rxysZuclwPB-K1Xg1zBomUhQ,10207 +pip/_vendor/requests/certs.py,sha256=nXRVq9DtGmv_1AYbwjTu9UrgAcdJv05ZvkNeaoLOZxY,465 +pip/_vendor/requests/compat.py,sha256=LQWuCR4qXk6w7-qQopXyz0WNHUdAD40k0mKnaAEf1-g,2045 +pip/_vendor/requests/cookies.py,sha256=Y-bKX6TvW3FnYlE6Au0SXtVVWcaNdFvuAwQxw-G0iTI,18430 +pip/_vendor/requests/exceptions.py,sha256=-mLam3TAx80V09EaH3H-ZxR61eAVuLRZ8zgBBSLjK44,3197 +pip/_vendor/requests/help.py,sha256=SJPVcoXeo7KfK4AxJN5eFVQCjr0im87tU2n7ubLsksU,3578 +pip/_vendor/requests/hooks.py,sha256=QReGyy0bRcr5rkwCuObNakbYsc7EkiKeBwG4qHekr2Q,757 +pip/_vendor/requests/models.py,sha256=P7sUBpjV7iIzjpf9rYVzHaOXlxlzJk5ikFP_Nsg6zAU,34278 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=Ju8VnlWZPU_Xr-cMjKXNbs_l2cyanr3Dm9c7fLxprQI,29265 +pip/_vendor/requests/status_codes.py,sha256=gT79Pbs_cQjBgp-fvrUgg1dn2DQO32bDj4TInjnMPSc,4188 +pip/_vendor/requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005 +pip/_vendor/requests/utils.py,sha256=VBs99cvV8Z29WGXeWZqHzZ80_nu1AwwjYzJfe0wQIvs,30176 +pip/_vendor/resolvelib/__init__.py,sha256=aBndiGQ3I68Ezdv0fMPQ9ek6ScvwpuQRimxn6wp7pJ4,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-37.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-37.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-37.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-37.pyc,, +pip/_vendor/resolvelib/providers.py,sha256=1JCBbBV0E_Q1o0XOAeAdr2YaKU_zHxO7i_BBLqCLhUc,4913 +pip/_vendor/resolvelib/reporters.py,sha256=5gXUn3hRjA4UomD3HHZGreBp23aSjMHgBrC3OgYSpTY,1094 +pip/_vendor/resolvelib/resolvers.py,sha256=nTTfBBIMsoxGhqUAyh8GbmR-si_TijpY67wD7aUS264,14481 +pip/_vendor/resolvelib/structs.py,sha256=yrdhd-n7DercimPGclXe20rgqhlxw8PnxC0wmcXO19Y,2016 +pip/_vendor/retrying.py,sha256=k3fflf5_Mm0XcIJYhB7Tj34bqCCPhUDkYbx1NvW2FPE,9972 +pip/_vendor/six.py,sha256=Q6WvEXZ1DGEASAo3CGNCJkKv2tPy8xkSmK-VHE9PYIA,34074 +pip/_vendor/toml.py,sha256=D8pTQbgSGge2nDdpsAk8_C7UGJeva0qFq2tGGNaE70Q,35675 +pip/_vendor/toml/__init__.py,sha256=CwtvzaEThoIbqNwJJB8BhHoA5clb2_x8V42UF6JAysA,527 +pip/_vendor/toml/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/toml/__pycache__/decoder.cpython-37.pyc,, +pip/_vendor/toml/__pycache__/encoder.cpython-37.pyc,, +pip/_vendor/toml/__pycache__/ordered.cpython-37.pyc,, +pip/_vendor/toml/__pycache__/tz.cpython-37.pyc,, +pip/_vendor/toml/decoder.py,sha256=8uIcWLLyMFwBGT3fiph98KDx8uF_V2Pf84Qi43pqNf0,35067 +pip/_vendor/toml/encoder.py,sha256=Nw1wrNgcUgod1XbOXwxFSDGqO5blgOi07Lp_6kStTgc,8128 +pip/_vendor/toml/ordered.py,sha256=UWt5Eka90IWVBYdvLgY5PXnkBcVYpHjnw9T67rM85T8,378 +pip/_vendor/toml/tz.py,sha256=DrAgI3wZxZiGcLuV_l8ueA_nPrYoxQ3hZA9tJSjWRsQ,618 +pip/_vendor/urllib3/__init__.py,sha256=oVOeFuNyEg33ShIefD4qSeGvbb-aJ3otjcdX2iswkLM,2683 +pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=GouVsNzwg6jADZTmimMI6oqmwKSswnMo9dh5tGNVWO4,10792 +pip/_vendor/urllib3/connection.py,sha256=wHpV1S60bvXWnqEDtdzmHiY9NwIiKeFwQI5VvX7AtqM,14026 +pip/_vendor/urllib3/connectionpool.py,sha256=jg_yTHo2B3Zyo4urYVecyg-34v3hxUrH9B401-c4A9w,36513 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=mullWYFaghBdRWla6HYU-TBgFRTPLBEfxj3jplbeJmQ,16886 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=V7GnujxnWZh2N2sMsV5N4d9Imymokkm3zBwgt77_bSE,11956 +pip/_vendor/urllib3/contrib/appengine.py,sha256=gfdK4T7CRin7v9HRhHDbDh-Hbk66hHDWeoz7nV3PJo8,11034 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=a402AwGN_Ll3N-4ur_AS6UrU-ycUtlnYqoBF76lORg8,4160 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=w35mWy_1POZUsbOhurVb_zhf0C1Jkd79AFlucLs6KuQ,16440 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=iKzVUAxKnChsADR5YMwc05oEixXDzAk0xPU0g-rc2z8,32275 +pip/_vendor/urllib3/contrib/socks.py,sha256=nzDMgDIFJWVubKHqvIn2-SKCO91hhJInP92WgHChGzA,7036 +pip/_vendor/urllib3/exceptions.py,sha256=P3e-p9_LScyIxX7FoR3wU0A6hZmDqFAVCz2wgI3D0lM,6607 +pip/_vendor/urllib3/fields.py,sha256=kroD76QK-GdHHW7f_AUN4XxDC3OQPI2FFrS9eSL4BCs,8553 +pip/_vendor/urllib3/filepost.py,sha256=vj0qbrpT1AFzvvW4SuC8M5kJiw7wftHcSr-7b8UpPpw,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=h4BLhD4tLaBx1adaDtKXfupsgqY0wWLXb_f1_yVlV6A,108 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=005wrvH-_pWSnTFqQ2sdzzh4zVCtQUUQ4mR2Yyxwc0A,1418 +pip/_vendor/urllib3/packages/six.py,sha256=adx4z-eM_D0Vvu0IIqVzFACQ_ux9l64y7DkSEfbxCDs,32536 +pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py,sha256=ywgKMtfHi1-DrXlzPfVAhzsLzzqcK7GT6eLgdode1Fg,688 +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=rvQDQviqQLtPJB6MfEgABnBFj3nXft7ZJ3Dx-BC0AQY,5696 +pip/_vendor/urllib3/poolmanager.py,sha256=JYUyBUN3IiEknUdjZ7VJrpCQr6SP7vi0WwSndrn8XpE,17053 +pip/_vendor/urllib3/request.py,sha256=hhoHvEEatyd9Tn5EbGjQ0emn-ENMCyY591yNWTneINA,6018 +pip/_vendor/urllib3/response.py,sha256=5OVDLR6ss88mak30ZhDaSqHxXbbAQ7CIUrktI7B5aPA,27833 +pip/_vendor/urllib3/util/__init__.py,sha256=bWNaav_OT-1L7-sxm59cGb59rDORlbhb_4noduM5m0U,1038 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=NsxUAKQ98GKywta--zg57CdVpeTCI6N-GElCq78Dl8U,4637 +pip/_vendor/urllib3/util/queue.py,sha256=myTX3JDHntglKQNBf3b6dasHH-uF-W59vzGSQiFdAfI,497 +pip/_vendor/urllib3/util/request.py,sha256=C-6-AWffxZG03AdRGoY59uqsn4CVItKU6gjxz7Hc3Mc,3815 +pip/_vendor/urllib3/util/response.py,sha256=_WbTQr8xRQuJuY2rTIZxVdJD6mnEOtQupjaK_bF_Vj8,2573 +pip/_vendor/urllib3/util/retry.py,sha256=Ui74h44gLIIWkAxT9SK3A2mEvu55-odWgJMw3LiUNGk,15450 +pip/_vendor/urllib3/util/ssl_.py,sha256=W52OyrqLO1IQ5kUgzM8fLAO-EgJxuftd5nhcTOD54ew,14167 +pip/_vendor/urllib3/util/timeout.py,sha256=bCtaS_xVKaTDJ5VMlroXBfCnPUDNVGZqik7-z83issg,9871 +pip/_vendor/urllib3/util/url.py,sha256=6cDyd46labP8STbF0vieWygu2xVhKkgcF1h3tc6HYno,13979 +pip/_vendor/urllib3/util/wait.py,sha256=k46KzqIYu3Vnzla5YW3EvtInNlU_QycFqQAghIOxoAg,5406 +pip/_vendor/vendor.txt,sha256=ZewT4rljE_Ct9eJsAk0HhDlKSHaguTqeBSGlF1zIgss,440 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-37.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/WHEEL b/python_gui/可执行文件_main/pip-20.1.1.dist-info/WHEEL new file mode 100644 index 0000000..ef99c6c --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.34.2) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/entry_points.txt b/python_gui/可执行文件_main/pip-20.1.1.dist-info/entry_points.txt new file mode 100644 index 0000000..d48bd8a --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.8 = pip._internal.cli.main:main + diff --git a/python_gui/可执行文件_main/pip-20.1.1.dist-info/top_level.txt b/python_gui/可执行文件_main/pip-20.1.1.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/python_gui/可执行文件_main/pip-20.1.1.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/python_gui/可执行文件_main/pyexpat.pyd b/python_gui/可执行文件_main/pyexpat.pyd new file mode 100644 index 0000000..36cf09f Binary files /dev/null and b/python_gui/可执行文件_main/pyexpat.pyd differ diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/COPYING.txt b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/COPYING.txt new file mode 100644 index 0000000..1e65534 --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/COPYING.txt @@ -0,0 +1,602 @@ +================================ + The PyInstaller licensing terms +================================ + + +Copyright (c) 2010-2021, PyInstaller Development Team +Copyright (c) 2005-2009, Giovanni Bajo +Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. + + +PyInstaller is licensed under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 of the License, +or (at your option) any later version. + + +Bootloader Exception +-------------------- + +In addition to the permissions in the GNU General Public License, the +authors give you unlimited permission to link or embed compiled bootloader +and related files into combinations with other programs, and to distribute +those combinations without any restriction coming from the use of those +files. (The General Public License restrictions do apply in other respects; +for example, they cover modification of the files, and distribution when +not linked into a combined executable.) + + +Bootloader and Related Files +---------------------------- + +Bootloader and related files are files which are embedded within the +final executable. This includes files in directories: + +./bootloader/ +./PyInstaller/loader + + +Run-time Hooks +---------------------------- + +Run-time Hooks are a different kind of files embedded within the final +executable. To ease moving them into a separate repository, or into the +respective project, these file are now licensed under the Apache License, +Version 2.0. + +Run-time Hooks are in the directory +./PyInstaller/hooks/rthooks + + +About the PyInstaller Development Team +-------------------------------------- + +The PyInstaller Development Team is the set of contributors +to the PyInstaller project. A full list with details is kept +in the documentation directory, in the file +``doc/CREDITS.rst``. + +The core team that coordinates development on GitHub can be found here: +https://github.com/pyinstaller/pyinstaller. As of 2021, it consists of: + +* Hartmut Goebel +* Jasper Harrison +* Bryan Jones +* Brenainn Woodsend +* Rok Mandeljc + +Our Copyright Policy +-------------------- + +PyInstaller uses a shared copyright model. Each contributor maintains copyright +over their contributions to PyInstaller. But, it is important to note that these +contributions are typically only changes to the repositories. Thus, +the PyInstaller source code, in its entirety is not the copyright of any single +person or institution. Instead, it is the collective copyright of the entire +PyInstaller Development Team. If individual contributors want to maintain +a record of what changes/contributions they have specific copyright on, they +should indicate their copyright in the commit message of the change, when they +commit the change to the PyInstaller repository. + +With this in mind, the following banner should be used in any source code file +to indicate the copyright and license terms: + + +#----------------------------------------------------------------------------- +# Copyright (c) 2005-2021, PyInstaller Development Team. +# +# Distributed under the terms of the GNU General Public License (version 2 +# or later) with exception for distributing the bootloader. +# +# The full license is in the file COPYING.txt, distributed with this software. +# +# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception) +#----------------------------------------------------------------------------- + + +For run-time hooks, the following banner should be used: + +#----------------------------------------------------------------------------- +# Copyright (c) 2005-2021, PyInstaller Development Team. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# +# The full license is in the file COPYING.txt, distributed with this software. +# +# SPDX-License-Identifier: Apache-2.0 +#----------------------------------------------------------------------------- + + +================================ +GNU General Public License +================================ + +https://gnu.org/licenses/gpl-2.0.html + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + +================================ +Apache License 2.0 +================================ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/INSTALLER b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/METADATA b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/METADATA new file mode 100644 index 0000000..d6f0fee --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/METADATA @@ -0,0 +1,207 @@ +Metadata-Version: 2.1 +Name: pyinstaller +Version: 4.7 +Summary: PyInstaller bundles a Python application and all its dependencies into a single package. +Home-page: http://www.pyinstaller.org/ +Author: Hartmut Goebel, Giovanni Bajo, David Vierra, David Cortesi, Martin Zibricky +License: GPLv2-or-later with a special exception which allows to use PyInstaller to build and distribute non-free programs (including commercial ones) +Keywords: packaging, app, apps, bundle, convert, standalone, executable,pyinstaller, cxfreeze, freeze, py2exe, py2app, bbfreeze +Platform: UNKNOWN +Classifier: Development Status :: 6 - Mature +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Other Audience +Classifier: Intended Audience :: System Administrators +Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2) +Classifier: Natural Language :: English +Classifier: Operating System :: MacOS :: MacOS X +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX +Classifier: Operating System :: POSIX :: AIX +Classifier: Operating System :: POSIX :: BSD +Classifier: Operating System :: POSIX :: Linux +Classifier: Operating System :: POSIX :: SunOS/Solaris +Classifier: Programming Language :: C +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Topic :: Software Development +Classifier: Topic :: Software Development :: Build Tools +Classifier: Topic :: Software Development :: Interpreters +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: System :: Installation/Setup +Classifier: Topic :: System :: Software Distribution +Classifier: Topic :: Utilities +Requires-Python: <3.11,>=3.6 +Description-Content-Type: text/x-rst +Requires-Dist: setuptools +Requires-Dist: altgraph +Requires-Dist: pyinstaller-hooks-contrib (>=2020.6) +Requires-Dist: importlib-metadata ; python_version < "3.8" +Requires-Dist: macholib (>=1.8) ; sys_platform == "darwin" +Requires-Dist: pefile (>=2017.8.1) ; sys_platform == "win32" +Requires-Dist: pywin32-ctypes (>=0.2.0) ; sys_platform == "win32" +Provides-Extra: encryption +Requires-Dist: tinyaes (>=1.0.0) ; extra == 'encryption' +Provides-Extra: hook_testing +Requires-Dist: pytest (>=2.7.3) ; extra == 'hook_testing' +Requires-Dist: execnet (>=1.5.0) ; extra == 'hook_testing' +Requires-Dist: psutil ; extra == 'hook_testing' + +PyInstaller Overview +==================== + +PyInstaller bundles a Python application and all its dependencies into a single +package. The user can run the packaged app without installing a Python +interpreter or any modules. + +:Documentation: https://pyinstaller.readthedocs.io/ +:Website: http://www.pyinstaller.org/ +:Code: https://github.com/pyinstaller/pyinstaller + +PyInstaller reads a Python script written by you. It analyzes your code +to discover every other module and library your script needs in order to +execute. Then it collects copies of all those files -- including the active +Python interpreter! -- and puts them with your script in a single folder, or +optionally in a single executable file. + + +PyInstaller is tested against Windows, Mac OS X, and GNU/Linux. +However, it is not a cross-compiler: +to make a Windows app you run PyInstaller in Windows; to make +a GNU/Linux app you run it in GNU/Linux, etc. +PyInstaller has been used successfully +with AIX, Solaris, FreeBSD and OpenBSD, +but is not tested against them as part of the continuous integration tests. + + +Main Advantages +--------------- + +- Works out-of-the-box with any Python version 3.6-3.10. +- Fully multi-platform, and uses the OS support to load the dynamic libraries, + thus ensuring full compatibility. +- Correctly bundles the major Python packages such as numpy, PyQt5, + PySide2, Django, wxPython, matplotlib and others out-of-the-box. +- Compatible with many 3rd-party packages out-of-the-box. (All the required + tricks to make external packages work are already integrated.) +- Libraries like PyQt5, PySide2, wxPython, matplotlib or Django are fully + supported, without having to handle plugins or external data files manually. +- Works with code signing on OS X. +- Bundles MS Visual C++ DLLs on Windows. + + +Installation +------------ + +PyInstaller is available on PyPI. You can install it through `pip`:: + + pip install pyinstaller + + +Requirements and Tested Platforms +--------------------------------- + +- Python: + + - 3.6-3.10 + - tinyaes_ 1.0+ (only if using bytecode encryption). + Instead of installing tinyaes, ``pip install pyinstaller[encryption]`` instead. + +- Windows (32bit/64bit): + + - PyInstaller should work on Windows 7 or newer, but we only officially support Windows 8+. + + - Support for Python installed from the Windows store without using virtual + environments requires PyInstaller 4.4 or later. + +- GNU/Linux (32bit/64bit) + + - ldd: Console application to print the shared libraries required + by each program or shared library. This typically can be found in + the distribution-package `glibc` or `libc-bin`. + - objdump: Console application to display information from + object files. This typically can be found in the + distribution-package `binutils`. + - objcopy: Console application to copy and translate object files. + This typically can be found in the distribution-package `binutils`, + too. + +- Mac OS X (64bit): + + - Mac OS X 10.13 (High Sierra) or newer. + + +Usage +----- + +Basic usage is very simple, just run it against your main script:: + + pyinstaller /path/to/yourscript.py + +For more details, see the `manual`_. + + +Untested Platforms +------------------ + +The following platforms have been contributed and any feedback or +enhancements on these are welcome. + +- FreeBSD + + - ldd + +- Solaris + + - ldd + - objdump + +- AIX + + - AIX 6.1 or newer. PyInstaller will not work with statically + linked Python libraries. + - ldd + +- PowerPC GNU/Linux (Debian) + + +Before using any contributed platform, you need to build the PyInstaller +bootloader, as we do not ship binary packages. Download PyInstaller +source, and build the bootloader:: + + cd bootloader + python ./waf all + +Then install PyInstaller:: + + python setup.py install + +or simply use it directly from the source (pyinstaller.py). + + +Support +------- + +See http://www.pyinstaller.org/support.html for how to find help as well as +for commercial support. + + +Changes in this Release +----------------------- + +You can find a detailed list of changes in this release +in the `Changelog`_ section of the manual. + + +.. _tinyaes: https://github.com/naufraghi/tinyaes-py +.. _`manual`: https://pyinstaller.readthedocs.io/en/v4.7/ +.. _`Changelog`: https://pyinstaller.readthedocs.io/en/v4.7/CHANGES.html + + diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/RECORD b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/RECORD new file mode 100644 index 0000000..1f38db8 --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/RECORD @@ -0,0 +1,660 @@ +../Scripts/pyi-archive_viewer.exe,sha256=jS16fPmuNIOJpz_Z0Tteau-gY9xdlYmgEfehtT5uinU,106391 +../Scripts/pyi-bindepend.exe,sha256=d3WfPrp28N_EAjelnAKkDCfG5EtD-OCozv31-vi72V8,106386 +../Scripts/pyi-grab_version.exe,sha256=cXB7rb_-kLkTIQb5GClzS3BbQxe_C-ERg74FwALioA0,106389 +../Scripts/pyi-makespec.exe,sha256=bf1oJXrwq9ClP6G9nsFU0RnVlWAX-kIVfrOpbQNftpc,106385 +../Scripts/pyi-set_version.exe,sha256=Dng5e3NbxdZZgXqQjtvsKT_UqLShpiSLjqBkurqRIes,106388 +../Scripts/pyinstaller.exe,sha256=nI3ZdhQILAfzWf_Ve2i8ByZfLKKK-CgKJjfVE7n8k60,106370 +PyInstaller/__init__.py,sha256=06e1GnGNJKgI_DNQJUnM4L3Ibey6PBj3qUzgevsYc4E,2995 +PyInstaller/__main__.py,sha256=z5FJKeUWmlAhAukF--sDK-etA_qtJtoG0HEqVsU03PY,4458 +PyInstaller/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/__pycache__/__main__.cpython-37.pyc,, +PyInstaller/__pycache__/_recursion_to_deep_message.cpython-37.pyc,, +PyInstaller/__pycache__/_shared_with_waf.cpython-37.pyc,, +PyInstaller/__pycache__/compat.cpython-37.pyc,, +PyInstaller/__pycache__/config.cpython-37.pyc,, +PyInstaller/__pycache__/configure.cpython-37.pyc,, +PyInstaller/__pycache__/exceptions.cpython-37.pyc,, +PyInstaller/__pycache__/log.cpython-37.pyc,, +PyInstaller/__pycache__/old__main__.cpython-37.pyc,, +PyInstaller/_recursion_to_deep_message.py,sha256=lpHaIOb1Eaus0lUUbl_l-r9M6GHoPm4TeJvotCm7qnU,1821 +PyInstaller/_shared_with_waf.py,sha256=oRTRfFCFB3ueSLkBhmInuDsCUIC3DPO3DcbgdSiPry4,3681 +PyInstaller/archive/__init__.py,sha256=fNGhsx0m5s9iq4yMvH6J1tI0vzUKWd62lIQNSnKTGCE,22 +PyInstaller/archive/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/archive/__pycache__/pyz_crypto.cpython-37.pyc,, +PyInstaller/archive/__pycache__/readers.cpython-37.pyc,, +PyInstaller/archive/__pycache__/writers.cpython-37.pyc,, +PyInstaller/archive/pyz_crypto.py,sha256=uGRgilWcIhxDfFcbHUrgTmaWrWtrP1pNqjBKFiZGn4c,1311 +PyInstaller/archive/readers.py,sha256=HVUooABiG4Mceq6ahh9hVPFVDukD94805XGg9TDHRks,8191 +PyInstaller/archive/writers.py,sha256=ffk9lp7pdGVjXiSscDGk9_2lMAOsCvMuD5J3FPfwpJc,23688 +PyInstaller/bootloader/Windows-64bit/run.exe,sha256=ZMjGCjXZnNGX0-lO42Pru1yx1pgyf_tSN5dJuZJnSYk,250880 +PyInstaller/bootloader/Windows-64bit/run_d.exe,sha256=IkAVBX3BS0LVOeyrbAw_EYi3oR5xtnRmjNFhpbBNiaE,255488 +PyInstaller/bootloader/Windows-64bit/runw.exe,sha256=TIbdsmZaeAXh4pC-C1SaHVhf3LSbU5EYhWkBpO7gZF0,251392 +PyInstaller/bootloader/Windows-64bit/runw_d.exe,sha256=nLnn_XhMHUFJIHizX9zYpD_IGoKaVQqnsbKxs2LyOw8,256512 +PyInstaller/bootloader/images/github_logo.png,sha256=imO7TMwvLWqjXQOv6VYGyQ5AIMOoGN4HG_uXPrKR5fo,266950 +PyInstaller/bootloader/images/icon-console.icns,sha256=TrztrfQbL3yp6yZbQm1p-IV8XXZSOjTtl8sH-cXybpI,106001 +PyInstaller/bootloader/images/icon-console.ico,sha256=aALW1IOexhlTRN7sYcLc9gIWH52Xsk9ic3kEaehHets,59521 +PyInstaller/bootloader/images/icon-console.svg,sha256=ch-48QSGSm6Z0g0dPbFLAHqeoIBY8lQ5fvPFYBSrTC4,339276 +PyInstaller/bootloader/images/icon-windowed.icns,sha256=uQo7VuWRab4Phv4EEGmfQsyqFqDIXZgO8OtgaAMvCzY,110199 +PyInstaller/bootloader/images/icon-windowed.ico,sha256=Fo2xuKfGL6KrksEhAYXRRZI_McG-I_3tQtlCD0i5g5I,60690 +PyInstaller/bootloader/images/icon-windowed.svg,sha256=Djj2Zv-uqNbITnV31bkBgtK_nTP_16rWSMJesH_l7K0,339293 +PyInstaller/building/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/building/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/building/__pycache__/api.cpython-37.pyc,, +PyInstaller/building/__pycache__/build_main.cpython-37.pyc,, +PyInstaller/building/__pycache__/datastruct.cpython-37.pyc,, +PyInstaller/building/__pycache__/makespec.cpython-37.pyc,, +PyInstaller/building/__pycache__/osx.cpython-37.pyc,, +PyInstaller/building/__pycache__/splash.cpython-37.pyc,, +PyInstaller/building/__pycache__/splash_templates.cpython-37.pyc,, +PyInstaller/building/__pycache__/templates.cpython-37.pyc,, +PyInstaller/building/__pycache__/toc_conversion.cpython-37.pyc,, +PyInstaller/building/__pycache__/utils.cpython-37.pyc,, +PyInstaller/building/api.py,sha256=p3jJazIlqmqsWjFv3B6FJtOAXeXRWZp8ZVQgePamGUA,46078 +PyInstaller/building/build_main.py,sha256=_Cf3L6WVKQGc0KeVOVNqd0B6L5-9s2VF0V08KlAXF24,34577 +PyInstaller/building/datastruct.py,sha256=T6jHSR9Vz7_s8pLTH6fgAPQx6SYSsziJnTIFGG650zc,10269 +PyInstaller/building/makespec.py,sha256=uLmfCMhD_CYCP-tjvXMoorlljYj3M_hqnWEQLxwBjNg,31210 +PyInstaller/building/osx.py,sha256=lJV_Tjk-Kc7dn_uF0TcP7_17gFNeLYQxBvDe3iiuFyU,11847 +PyInstaller/building/splash.py,sha256=okn42J_-9gGhi8xlO0Pq2QxOi1ST7DJMeQuL3Qbm9-E,21124 +PyInstaller/building/splash_templates.py,sha256=7RYU_qP8pmaVQXYbkk4zV1iT-e7Z_C80c6e4uuBOdcA,6311 +PyInstaller/building/templates.py,sha256=iymTORu_p1TFlW_R2y23QTyuUAvlEGHEmT9qBa4jVVQ,4103 +PyInstaller/building/toc_conversion.py,sha256=EimXJD5JXsEVhYXYDraM5T-cU6ai_3kRdxpvRjB9plc,6962 +PyInstaller/building/utils.py,sha256=6gs2STcU03Scipa-jfdMAp5LnKkIznKQFHKyqdcXb4w,29973 +PyInstaller/compat.py,sha256=TZQiN8pu_OIfAH_iJD671FLCxbbdpZpJuRttGqEMiI4,30466 +PyInstaller/config.py,sha256=EdN0LH5ku9uEF9NUSZCxe3rUeoqKe1NDoAfxfqQWAOE,1727 +PyInstaller/configure.py,sha256=Rfu9-oNUxZvTtvLjWrSu0DOi79iyfgB1Y9wnfR5yN38,3346 +PyInstaller/depend/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/depend/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/depend/__pycache__/analysis.cpython-37.pyc,, +PyInstaller/depend/__pycache__/bindepend.cpython-37.pyc,, +PyInstaller/depend/__pycache__/bytecode.cpython-37.pyc,, +PyInstaller/depend/__pycache__/dylib.cpython-37.pyc,, +PyInstaller/depend/__pycache__/imphook.cpython-37.pyc,, +PyInstaller/depend/__pycache__/imphookapi.cpython-37.pyc,, +PyInstaller/depend/__pycache__/utils.cpython-37.pyc,, +PyInstaller/depend/analysis.py,sha256=GHpAfEEvl_C2EXQqPDtYUm3XYHjyFgl5j8Wn6SQk_Jk,40218 +PyInstaller/depend/bindepend.py,sha256=A0zZ00_6Cezbp1YIEHh7Qpw17OmUTaE4DDyGkwCfHy8,38394 +PyInstaller/depend/bytecode.py,sha256=yf2CM2sU2ZIJNi5NoqwaT4ysWnQjbZH21U4IaHxXbe0,8901 +PyInstaller/depend/dylib.py,sha256=L5Bsl6lrVfiK4p3WGTLRoYDG9sEVAXwiL82oyQ3j9mg,12269 +PyInstaller/depend/imphook.py,sha256=g9cFy_HmmTVZS-7gzR40zftNm19wRfn0ra8hUFKmxgo,26486 +PyInstaller/depend/imphookapi.py,sha256=1LJAByvjU_Mabq3W0HccdN6c9afG7N2ipNWuCrN6yeg,19293 +PyInstaller/depend/utils.py,sha256=8_RekkqrqU3FExc8UzVrs_vnSLkxVsu0takUH_AGa70,17469 +PyInstaller/exceptions.py,sha256=Z6rhJkdUoPBPC7HL8y8XbI3HUD2yRZTz8d61hAj5qmc,1101 +PyInstaller/fake-modules/__pycache__/pyi_splash.cpython-37.pyc,, +PyInstaller/fake-modules/__pycache__/site.cpython-37.pyc,, +PyInstaller/fake-modules/pyi_splash.py,sha256=pc0uYJScJDAoZR4IQ_TNkghP-BJ5r4JbAom8EF_DPDA,8550 +PyInstaller/fake-modules/site.py,sha256=PlRM-lcLQKxkq9WLpggk6Vq1Z_Y5awXqoZeQwsouZw4,2199 +PyInstaller/hooks/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/hooks/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PIL.Image.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PIL.ImageFilter.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PIL.SpiderImagePlugin.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PIL.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.Qt.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtCore.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtGui.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtHelp.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtLocation.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtMultimedia.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtNetwork.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtOpenGL.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtPositioning.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtPrintSupport.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtQml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtQuick.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtQuickWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtScript.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtSensors.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtSerialPort.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtSql.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtSvg.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtTest.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtWebEngineWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtWebKit.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtWebKitWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.QtXml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt5.uic.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtCore.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtGui.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtHelp.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtNetwork.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtOpenGL.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtOpenGLWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtPrintSupport.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtQml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtQuick.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtQuickWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtSql.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtSvg.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtTest.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.QtXml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PyQt6.uic.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtCore.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtGui.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtHelp.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtLocation.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtMultimedia.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtNetwork.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtOpenGL.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtPositioning.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtPrintSupport.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtQml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtQuick.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtQuickWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtScript.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtSensors.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtSerialPort.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtSql.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtSvg.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtTest.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtUiTools.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtWebEngineWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtWebKit.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtWebKitWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.QtXml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.Qwt5.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide2.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtCore.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtGui.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtHelp.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtNetwork.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtOpenGL.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtOpenGLWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtPrintSupport.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtQml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtQuick.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtQuickWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtSql.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtSvg.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtTest.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtUiTools.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtWidgets.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.QtXml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-PySide6.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-_tkinter.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-babel.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-difflib.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-distutils.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-distutils.util.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.contrib.sessions.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.core.cache.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.core.mail.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.core.management.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.db.backends.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.db.backends.mysql.base.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.db.backends.oracle.base.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-django.template.loaders.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-encodings.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gevent.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Atk.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Champlain.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Clutter.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GIRepository.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GLib.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GModule.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GObject.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Gdk.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GdkPixbuf.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Gio.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Gst.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GstAudio.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GstBase.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GstPbutils.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GstTag.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GstVideo.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Gtk.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GtkChamplain.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GtkClutter.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GtkSource.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.GtkosxApplication.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.HarfBuzz.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.Pango.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.PangoCairo.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.cairo.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-gi.repository.xlib.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-heapq.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-idlelib.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-importlib_metadata.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-importlib_resources.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-keyring.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-kivy.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-lib2to3.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-matplotlib.backends.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-matplotlib.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-matplotlib.numerix.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-multiprocessing.util.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-numpy._pytesttester.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-numpy.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-packaging.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pandas.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pandas.io.formats.style.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pandas.plotting.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pickle.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pkg_resources.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pygments.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pytz.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-pytzdata.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-qtawesome.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scapy.layers.all.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.io.matlab.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.linalg.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.sparse.csgraph.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.spatial.transform.rotation.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.special._ellip_harm_2.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.special._ufuncs.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scipy.stats._stats.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-scrapy.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-setuptools.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-setuptools.msvc.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-shelve.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-sphinx.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-sqlalchemy.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-sqlite3.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-sysconfig.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-wcwidth.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-win32ctypes.core.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-xml.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-xml.dom.domreg.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-xml.etree.cElementTree.cpython-37.pyc,, +PyInstaller/hooks/__pycache__/hook-zope.interface.cpython-37.pyc,, +PyInstaller/hooks/hook-PIL.Image.py,sha256=DJpsZDXKIwM4xIcKMou3Khlm2EcEPTmeupS472m00Dk,845 +PyInstaller/hooks/hook-PIL.ImageFilter.py,sha256=2QksTYzvBXENvZyr94EJP8MO4jFc1-2cYj1GEBzK1Qw,589 +PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py,sha256=MLdwD4XE9goIij012AoH6utYnsFJ-fIBX_40k37AyP4,773 +PyInstaller/hooks/hook-PIL.py,sha256=8LJoLfySOop5y2Aydm9VuKFKn6fKiaDcAKJ3MXWM9ZI,922 +PyInstaller/hooks/hook-PyQt5.Qt.py,sha256=Y8SM5gNxWTOSasOjvJXlL3YChccSEmbGGcjRS0t6FYc,1274 +PyInstaller/hooks/hook-PyQt5.QtCore.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtGui.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtHelp.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtLocation.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtMultimedia.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtNetwork.py,sha256=FJanmXeglBbTjPuv2mHo_QkAT6EjZKMK3prizukoPNU,742 +PyInstaller/hooks/hook-PyQt5.QtOpenGL.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtPositioning.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtQml.py,sha256=ehm04Skg0Q7YHm_puqpcU_WEgv2HOh-QhRyvWMmi8Ck,778 +PyInstaller/hooks/hook-PyQt5.QtQuick.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtScript.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtSensors.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtSerialPort.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtSql.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtSvg.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtTest.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py,sha256=hig4wXp1gbr8bRa-5qD3XJiRjN3cGX1ZjKr2QnHnKco,1051 +PyInstaller/hooks/hook-PyQt5.QtWebKit.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py,sha256=vjKobklgFJmfzE1nf0k_CFIRIe2Tg3JobbyQYxbjjD0,633 +PyInstaller/hooks/hook-PyQt5.QtWidgets.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.QtXml.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PyQt5.py,sha256=CR-1MXso0AE2UBAHFdd7tj4n1Kkgs_pTxOQcvDadn-U,1065 +PyInstaller/hooks/hook-PyQt5.uic.py,sha256=eEOLacW29kPu3tyFDCSxd6Vu3Zyvl3DrhtSn_Oln-W8,979 +PyInstaller/hooks/hook-PyQt6.QtCore.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtGui.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtHelp.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtNetwork.py,sha256=6VDbx2bvyr403K1LrHHDSTw-gbIYqQAUyFZWUCHixwI,737 +PyInstaller/hooks/hook-PyQt6.QtOpenGL.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtOpenGLWidgets.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtPrintSupport.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtQml.py,sha256=VM1OlZhC_M6ZYz7eGpwoFAIYtHvZN3kG9W0egEnfbKY,773 +PyInstaller/hooks/hook-PyQt6.QtQuick.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtQuickWidgets.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtSql.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtSvg.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtTest.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtWidgets.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.QtXml.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PyQt6.py,sha256=KYW9v8r-gJ18YymUOb8b9OQxSARqgNpje-3Dt-M_gJ8,889 +PyInstaller/hooks/hook-PyQt6.uic.py,sha256=-dUjw8JwYMnJm43AWw-IeTa7abcxPtHvi3CXe9xgH6s,974 +PyInstaller/hooks/hook-PySide2.QtCore.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtGui.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtHelp.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtLocation.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtMultimedia.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtNetwork.py,sha256=HBQnSNEHuE2QQIjXcHb7Q85VTtPbNDpDSKZ-dUuGDBQ,746 +PyInstaller/hooks/hook-PySide2.QtOpenGL.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtPositioning.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtPrintSupport.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtQml.py,sha256=SxbLEeVEYH-TjrJ97hnxOKeoW9yLcYoGzV6Qf4YBzwY,782 +PyInstaller/hooks/hook-PySide2.QtQuick.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtScript.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtSensors.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtSerialPort.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtSql.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtSvg.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtTest.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtUiTools.py,sha256=6Q0HITxGXTclfZypn7-trL5KafB0bzucZi63ViCJ2f0,705 +PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py,sha256=92UqoErrgR1oS58cxmabKdz3qUdDGrVlEkKWUB47Vt8,1059 +PyInstaller/hooks/hook-PySide2.QtWebKit.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py,sha256=vjKobklgFJmfzE1nf0k_CFIRIe2Tg3JobbyQYxbjjD0,633 +PyInstaller/hooks/hook-PySide2.QtWidgets.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.QtXml.py,sha256=Ao_UCFL_0soshLvqHQ4GpoxMM8-2N8ed7kw3Wc49jPc,633 +PyInstaller/hooks/hook-PySide2.Qwt5.py,sha256=AeQOi43U0-9-SVAIGpCSoyHJWpRXqvy-wo2hihVv8_c,1003 +PyInstaller/hooks/hook-PySide2.py,sha256=0MZ4Pf2tnSU27fzjWdRSNbX-W-lJERFjJybYeWBRcrE,904 +PyInstaller/hooks/hook-PySide6.QtCore.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtGui.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtHelp.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtNetwork.py,sha256=4C1fXy9jEIRqjiogdhxNuMuEmT4_nvyhqAnqGY1pITY,741 +PyInstaller/hooks/hook-PySide6.QtOpenGL.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtOpenGLWidgets.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtPrintSupport.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtQml.py,sha256=AFH67Q4Y8Y9_GiSStfhHh0YMhnjHO8BSisINvyeKZEg,777 +PyInstaller/hooks/hook-PySide6.QtQuick.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtQuickWidgets.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtSql.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtSvg.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtTest.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtUiTools.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtWidgets.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.QtXml.py,sha256=GLVPwOhw7r--8Hg-6hB6MlGY9nFBZzdXNBeINhoKcIM,628 +PyInstaller/hooks/hook-PySide6.py,sha256=1FtHtj02tsrBay4V1XxgElt2udyBtF6c4EKDGGmF1DI,899 +PyInstaller/hooks/hook-_tkinter.py,sha256=zfoj2gNt9VrJq2pBk0RDcohsJmf091Qi6O8oOZmlxvY,1327 +PyInstaller/hooks/hook-babel.py,sha256=uZiFPA2WMj-zxX4-T9GLJLdYuWh57uiM_7GegqKcEYg,633 +PyInstaller/hooks/hook-difflib.py,sha256=r8JhmNaF3sploe60NHevgbztPRoDwc8CU0mKaGZlMcM,577 +PyInstaller/hooks/hook-distutils.py,sha256=gE3Gh4EfTL_YSZT3Jea2kNP3PoNLMxuP7ilxuqHsWWA,1481 +PyInstaller/hooks/hook-distutils.util.py,sha256=mOKOpOzvWm9RmtkNdt3ziuXF8_gMhxyODYH1VUflNwE,661 +PyInstaller/hooks/hook-django.contrib.sessions.py,sha256=fEGv0_LmrhVoxG4RqKtmngWuInDk06Qo4MWlByfT-7w,635 +PyInstaller/hooks/hook-django.core.cache.py,sha256=dqeotFXDHiW7r9Rp79GBgvW_a6Crbb4P1jmVqAx6N-0,629 +PyInstaller/hooks/hook-django.core.mail.py,sha256=1A1uxtNI3KpVTkKGHPqeMGCkxn9XhBjDETKmXTAqYEw,1069 +PyInstaller/hooks/hook-django.core.management.py,sha256=T9xwwd_ScPTIX70q-3VmKC-EiobO_ZOeHnKq3AcUMLE,941 +PyInstaller/hooks/hook-django.db.backends.mysql.base.py,sha256=6MjzrMT5pbp4-e9sm9Y5gupfWcmmHOO_j2YoebSX0ys,611 +PyInstaller/hooks/hook-django.db.backends.oracle.base.py,sha256=3MrmBk3TcQH3GcvVDJATfNIO15ATy22CNbZnuO4WnO4,563 +PyInstaller/hooks/hook-django.db.backends.py,sha256=sayW1OGIkoJtJZ6iNTDqyxSSA1BCUwwJRFj7wq-2Nrg,983 +PyInstaller/hooks/hook-django.py,sha256=FkeE8uccXqNEfuEgj0duzvKz8kpUlzpV2fDtXc6TIMg,3773 +PyInstaller/hooks/hook-django.template.loaders.py,sha256=XAVUx1JHx-Aq1OieU2gdj8RyV1OTmZwBQIjoTErCaJQ,626 +PyInstaller/hooks/hook-encodings.py,sha256=dOdYi4qt1098a4vA22tzDLW1OFKk0OyP5j8S5FvgU_0,612 +PyInstaller/hooks/hook-gevent.py,sha256=b0Ds6Q_HHUz4q_pOtjP5pY3Vi1RvD60FLeT5U-Gzli4,1011 +PyInstaller/hooks/hook-gi.py,sha256=fMRlm62CyVQq2k4vIQF6CixuUiUOyFKBVQQUsXwPwqY,714 +PyInstaller/hooks/hook-gi.repository.Atk.py,sha256=gnunLg1Wxonlc0UB1-Ph9fPFPtUGiGk8iBLOse7bZg4,978 +PyInstaller/hooks/hook-gi.repository.Champlain.py,sha256=AYuu3hdei_b65SCs9N0pYnpMu62apRgKitHBDBFEXYg,705 +PyInstaller/hooks/hook-gi.repository.Clutter.py,sha256=-oCSRdy3MWUt_DC0eBm5jtkx5zAzjGLaadgngoQQ480,700 +PyInstaller/hooks/hook-gi.repository.GIRepository.py,sha256=THTkq4c8VnFt9PRMqyQ-tsvalXbtv7S7iH5B-DZI6mw,703 +PyInstaller/hooks/hook-gi.repository.GLib.py,sha256=0TPAEzFPuBwuQiZdM7YK_UtFkoEjjQRSwHFDwGbiVdE,1730 +PyInstaller/hooks/hook-gi.repository.GModule.py,sha256=iQOeN-vO8PVrkY0XnKw5nH27JYakD8QqmisyTps1Qiw,1136 +PyInstaller/hooks/hook-gi.repository.GObject.py,sha256=hjQNtcCd3Z_yyFyGr8z-onBpM7BxjeVOWQccSiMONJk,1136 +PyInstaller/hooks/hook-gi.repository.Gdk.py,sha256=oADgOWtyknWA4JpwWP9pyZNfuDqpt_WBp_GJxXVctvU,751 +PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py,sha256=HfHQZkRRoYUCEL2ZTjH2dEzRXvEARSOffFBD8YezecM,6416 +PyInstaller/hooks/hook-gi.repository.Gio.py,sha256=piI28gY4HNMGn6CtmsDFYGcVK_yMV5tRddoxkndQkfc,2751 +PyInstaller/hooks/hook-gi.repository.Gst.py,sha256=5119lSY0c8BnCl2QDNkFCqq1xZ14po9UvGhRshU9wJA,2517 +PyInstaller/hooks/hook-gi.repository.GstAudio.py,sha256=39CCHyc6Z5iEqhshfezDh680bziW1uAyd6_-eWaQN_w,869 +PyInstaller/hooks/hook-gi.repository.GstBase.py,sha256=tRMx39L96Hjviy8lT1fylK99gPIdgPuykJle9bPz9BA,868 +PyInstaller/hooks/hook-gi.repository.GstPbutils.py,sha256=6uK5bN7k0P-RaW5kEPf-oUVieEKe68njtcA5LzClLXY,871 +PyInstaller/hooks/hook-gi.repository.GstTag.py,sha256=4W3CveQhQuRkOUxi7EUND-v6lvVNaoi7HAp9AyZcBUI,867 +PyInstaller/hooks/hook-gi.repository.GstVideo.py,sha256=KSViSOHmUw86H2Ii0hHV0qgKTgg4IDpxGOy7l3Ftu4I,869 +PyInstaller/hooks/hook-gi.repository.Gtk.py,sha256=zbaokBHfairmS3zlteRG6BMm-JocFwHnIvvs4ywd9To,1879 +PyInstaller/hooks/hook-gi.repository.GtkChamplain.py,sha256=w8oLdP76_0mTQVff-L2lFThGtBumc3U6wNhs-xX-xIE,711 +PyInstaller/hooks/hook-gi.repository.GtkClutter.py,sha256=0RuJ_Sr66iDb_n3R4xqRAS-aILpX8kznbj8BJ2YBm6s,706 +PyInstaller/hooks/hook-gi.repository.GtkSource.py,sha256=OBBqkE1Lj0k0X6nN6cBq_c7-QJcORcT_YimocaeZOLE,1165 +PyInstaller/hooks/hook-gi.repository.GtkosxApplication.py,sha256=ObvaiF2_EwjztyDQBFnQW9vQG2XqW42Af6MpXJzeWN0,767 +PyInstaller/hooks/hook-gi.repository.HarfBuzz.py,sha256=BE3tuv4dgCkoyZiFwat9_y7dcCHJDzZEQwY48dqhWAo,699 +PyInstaller/hooks/hook-gi.repository.Pango.py,sha256=Qsgz0j5fJ8v-h76vpW4Nbd9PxFXpdKJMeZdLLKh8W9I,696 +PyInstaller/hooks/hook-gi.repository.PangoCairo.py,sha256=iZGv1kFCUbNRnJt2lL1LGzllZRwWVbYn_I5g7Lk-qKQ,701 +PyInstaller/hooks/hook-gi.repository.cairo.py,sha256=NaWKoEHeXevu5iy4FNDvE6JGVUyIy16B7NLUbvRdGS4,696 +PyInstaller/hooks/hook-gi.repository.xlib.py,sha256=eFlohi2qwlf_vZdlWzWrLXhA2-pwBkZPo4ZZvCGH-bI,695 +PyInstaller/hooks/hook-heapq.py,sha256=Wnb1uQc5RaIx_2gp9XWmsdav3ol8eKsSXfBfqgUkjPw,578 +PyInstaller/hooks/hook-idlelib.py,sha256=-6JX0FHJ-SXX6Y2WQwWRF_QyXUjkmOfJ-y6wsrf3Nyw,602 +PyInstaller/hooks/hook-importlib_metadata.py,sha256=u8yoe_2gop5mPqXaSO06P_F2BYClebIyaN1UbwTG-D4,1350 +PyInstaller/hooks/hook-importlib_resources.py,sha256=D_JiMYFHUEpHMnp-hh41qQNn6AXiCusQE6hVMi8Q9Z4,1181 +PyInstaller/hooks/hook-keyring.py,sha256=zyQgrxK9GyWhet7S5HzgrgzY6ArT-vkVfkP1wB_J7cw,888 +PyInstaller/hooks/hook-kivy.py,sha256=lb3Unft7dTLkJixmaoipsCkkyBCWU3IgiNB634xo_bM,1130 +PyInstaller/hooks/hook-lib2to3.py,sha256=9s722XzW-5h8Yx0qEaXWqaQePdmKSeaIUNetiNRuV0w,653 +PyInstaller/hooks/hook-matplotlib.backends.py,sha256=d7Z3ItAiDNLVlolR4O84GL5diJ7hDN1FJ5Q3FIK_3N0,3198 +PyInstaller/hooks/hook-matplotlib.numerix.py,sha256=5Z_m_voOymHQ3PiAvKoIeId_a5ciUb_v9L8-ESqR8fs,683 +PyInstaller/hooks/hook-matplotlib.py,sha256=LrULWoM3-rM-MJvmoJz9uiN6UILbD4tTcKP05nb28L4,774 +PyInstaller/hooks/hook-multiprocessing.util.py,sha256=g0JrveuNWNmHCR1NPHX4AtCpf6qz6Qo0cQ_Yo6kLc18,791 +PyInstaller/hooks/hook-numpy._pytesttester.py,sha256=cud1BLr7DfRpgeAiwWc2hzrsXxi6yC-6gjU8H90wboM,798 +PyInstaller/hooks/hook-numpy.py,sha256=z-lXspOX0dZt2b62j7NH9k54I2_MrYJB7IxMcKIUUuQ,2068 +PyInstaller/hooks/hook-packaging.py,sha256=f7Y21Os6G6FcKMcDpKDpdaknMpVuXZxGY_TZ3C1j_Xg,577 +PyInstaller/hooks/hook-pandas.io.formats.style.py,sha256=nhk9Yb_U1dzaU_Ge1d82VJ9hoy_3M7YRGhynxUFUfqs,746 +PyInstaller/hooks/hook-pandas.plotting.py,sha256=k6H-jpOwYo4Au-1qk4J5hr_rAEMI8spnsjSV7xUbb9g,939 +PyInstaller/hooks/hook-pandas.py,sha256=x6geZ6EGKcVMaG9hofh1jqGA40iUcrytoaIv76C2r9M,959 +PyInstaller/hooks/hook-pickle.py,sha256=Vb6udoUdC6zE7bHI5qHneBHKHQUn5T3LdBRonS5XG9g,810 +PyInstaller/hooks/hook-pkg_resources.py,sha256=NATAKdUMCa6ioslRrIlbZGq1nwZjXMOC10ntLFtHdSs,1389 +PyInstaller/hooks/hook-pygments.py,sha256=_XLTuohQNt-l3XiytnsN3nZaAivyaRr1r70pBoWQEfM,1184 +PyInstaller/hooks/hook-pytz.py,sha256=78P4DqSn4kpDorroP8ioXO2wbfPO1pszI-gLNNi1RbE,734 +PyInstaller/hooks/hook-pytzdata.py,sha256=Zlm73U3KA97DUkvAEoTxMdubm4gU66wFQDdKbifzVQw,603 +PyInstaller/hooks/hook-qtawesome.py,sha256=uTtQIYYzhx0FyVtKcVuGruu9zz884EjyGWriMv0RyCI,792 +PyInstaller/hooks/hook-scapy.layers.all.py,sha256=o0WS6yM_xIfhWrdNU6tNGZ22rjBokRsAwAoffBbAZMQ,930 +PyInstaller/hooks/hook-scipy.io.matlab.py,sha256=Vk2Ag9Yc7Ou7J1H787DKqDj8zfSwJmKQncPogixJahA,655 +PyInstaller/hooks/hook-scipy.linalg.py,sha256=laqi-XSAfgpeJsw-EsqGpr4lNmTgUP6bxT6PdEyzIWo,633 +PyInstaller/hooks/hook-scipy.py,sha256=LP1dChxVxW0HfJQWSxqqIhqleYMv8IhL-o4H1xVPxbE,1290 +PyInstaller/hooks/hook-scipy.sparse.csgraph.py,sha256=Pb2I8wQvXAjL7v_LRpdLaD3lMbIEH7pHW3gvbfTOVb0,611 +PyInstaller/hooks/hook-scipy.spatial.transform.rotation.py,sha256=OSXgwhKAhVXbPi5MNyfQkTL4-Fx23IkEocOzkCMhOic,792 +PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py,sha256=dU3_RlVckYgU4y9wmlLdyqrRRRBho1oz5nGs5ypu314,1317 +PyInstaller/hooks/hook-scipy.special._ufuncs.py,sha256=Ju4GaNC-Sx9bkwj8onNAfxNqaV3HIvPL2-g9gs7vnXE,696 +PyInstaller/hooks/hook-scipy.stats._stats.py,sha256=zQsigdYEeuTPYtXiC2Su211D_11DdDyO49vu3W7xcAw,660 +PyInstaller/hooks/hook-scrapy.py,sha256=_MdzmVWcnoF_W5Ehhtyfoluv_fKx8Oomg_8326LLGw4,819 +PyInstaller/hooks/hook-setuptools.msvc.py,sha256=QkBzfR_k0-4O6HHYHofQmaYP7rpueRsseh210fqwMAc,599 +PyInstaller/hooks/hook-setuptools.py,sha256=jShRvgkZHmwiqPWbUVYKFl2uuaVqK2SVx6OmFnjm1iU,1245 +PyInstaller/hooks/hook-shelve.py,sha256=OG8OLbXqzPnxRx-QAGk7YVFHbwVKwRKtyJZWk1ciPW4,603 +PyInstaller/hooks/hook-sphinx.py,sha256=b-2eeJwiG5bjfWM0WjMmCyD79_G1X7CcCvyzxycrRQ8,1998 +PyInstaller/hooks/hook-sqlalchemy.py,sha256=Lj4enuShYUMRLWsgEOhFxCUOqqvcvV4CYAP0BUsQuwU,3255 +PyInstaller/hooks/hook-sqlite3.py,sha256=Z6wBIfLihDDDNz512sdJ3sKbAKQJ54Pu5RM-nKZK2L8,813 +PyInstaller/hooks/hook-sysconfig.py,sha256=8nL8EJp492Pe76tMFs7cVsjleOwISf3Dus2ESbWBT7E,1313 +PyInstaller/hooks/hook-wcwidth.py,sha256=5BGkpFH98m-TB_RmPelirKS_6Zw3wKao0ewUc1NYPMU,602 +PyInstaller/hooks/hook-win32ctypes.core.py,sha256=g98107YhEc65NSg9LQdSMCdVfDIessPbI8EIlBZlUEo,993 +PyInstaller/hooks/hook-xml.dom.domreg.py,sha256=ND0XQvZ0hWzewbzDVnOmLV2REymjS4nrRz7SpBRo-VM,569 +PyInstaller/hooks/hook-xml.etree.cElementTree.py,sha256=FeLi_Y6lAmRMwA0wl_2tvrmbAfxvSjOTAVOqhlOVMHU,615 +PyInstaller/hooks/hook-xml.py,sha256=PP4BEbC1Aerr1b6sqkoH5WsR76-cZ47T8cI4ZMyFjxU,569 +PyInstaller/hooks/hook-zope.interface.py,sha256=joOkKUgWXSK3XaPOaxbhgUV6X2mQq5t45Uj5awPMkhw,539 +PyInstaller/hooks/pre_find_module_path/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/hooks/pre_find_module_path/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/hooks/pre_find_module_path/__pycache__/hook-PyQt5.uic.port_v2.cpython-37.pyc,, +PyInstaller/hooks/pre_find_module_path/__pycache__/hook-distutils.cpython-37.pyc,, +PyInstaller/hooks/pre_find_module_path/__pycache__/hook-pyi_splash.cpython-37.pyc,, +PyInstaller/hooks/pre_find_module_path/__pycache__/hook-site.cpython-37.pyc,, +PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py,sha256=WmXEe078EWNwM4cai-gxigiJllIWm-rQunSYR1xdExQ,696 +PyInstaller/hooks/pre_find_module_path/hook-distutils.py,sha256=VLH22Mb4wcqsgpUFpaMO3bNx19PQF_GgTGCw3DiCcvE,1716 +PyInstaller/hooks/pre_find_module_path/hook-pyi_splash.py,sha256=L14aa7XtfiLdFnjiyRYuGlDAHvvpsc1CKigbAymhtok,1412 +PyInstaller/hooks/pre_find_module_path/hook-site.py,sha256=KyRYWdCbQouXXIcst3FE0DRdjy-uMIuEzrtHJQRGsPM,1252 +PyInstaller/hooks/pre_safe_import_module/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/hooks/pre_safe_import_module/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Atk.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Champlain.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Clutter.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GIRepository.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GLib.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GModule.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GObject.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Gdk.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GdkPixbuf.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Gio.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Gst.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GstAudio.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GstBase.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GstPbutils.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GstTag.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GstVideo.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Gtk.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GtkChamplain.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GtkClutter.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GtkSource.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.GtkosxApplication.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.HarfBuzz.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.Pango.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.PangoCairo.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.cairo.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-gi.repository.xlib.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-setuptools.extern.six.moves.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-six.moves.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/__pycache__/hook-urllib3.packages.six.moves.cpython-37.pyc,, +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py,sha256=ub7UO1YxkvchEB7FTsa_j_g4_oxs_8sgwzgvwRT3zxs,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkosxApplication.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py,sha256=0bcErjEagbhH1t-GQykYUzIN2jKbdwZjLBhXGCtNujw,783 +PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py,sha256=m2biQEt9iO1lHuYiUPAbP5kTu1MUCg8ZaI1xvBk02Mc,1693 +PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py,sha256=09qirxAxolmu6ViMKqHlh_tw7W90_w_AuOItXNDcK_E,3821 +PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py,sha256=nVclrjVFdAcwDkNjRmgUy_iBFtR_nUvluv3sm_WxdzY,1455 +PyInstaller/hooks/rthooks.dat,sha256=iXDwVgfCx6o-wVljpLr0-dLaMg4zRYmiP1LN3Q5tDZ0,1132 +PyInstaller/hooks/rthooks/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/hooks/rthooks/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth__tkinter.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_django.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_gdkpixbuf.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_gi.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_gio.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_glib.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_gstreamer.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_gtk.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_inspect.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_kivy.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_mplconfig.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_multiprocessing.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pkgres.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pkgutil.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pyqt5.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pyqt5webengine.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pyqt6.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pyside2.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pyside2webengine.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_pyside6.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_win32api.cpython-37.pyc,, +PyInstaller/hooks/rthooks/__pycache__/pyi_rth_win32comgenpy.cpython-37.pyc,, +PyInstaller/hooks/rthooks/pyi_rth__tkinter.py,sha256=4AvH4rsn9gW8IYN9Wnb_cSEUE4txmuik6ypGBe978cE,1136 +PyInstaller/hooks/rthooks/pyi_rth_django.py,sha256=Z78ZrJEbrboWGEVtidXyFNpG9xAwf3XaTtpoAxibNr4,2793 +PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py,sha256=c9c-64hotf8V5objRo9_ZqgAwsl1J8WdhLbLKaObVks,1309 +PyInstaller/hooks/rthooks/pyi_rth_gi.py,sha256=5E6vLg0gMWzqD1UBdfr_KqTZG5mHPIFdTgr4_N7luWY,568 +PyInstaller/hooks/rthooks/pyi_rth_gio.py,sha256=Nh9mwZBm1Io0q6ZsUpZ_e-8t3lFMMmtNrKnJVuFflCM,567 +PyInstaller/hooks/rthooks/pyi_rth_glib.py,sha256=du49kSMhn5fe1CHmmEh4mNmkVQJ_5ka-H8miQtDCqLU,560 +PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py,sha256=CWq6szjErfS_4x-LD2YIAwyt3CWc4pYXRX-4vgUC_JM,1079 +PyInstaller/hooks/rthooks/pyi_rth_gtk.py,sha256=RALsL7lvmKzSsFn2etd9h7EWcGopmmzpb4XgTvNFJNI,802 +PyInstaller/hooks/rthooks/pyi_rth_inspect.py,sha256=ZBPK-emVev1xzKBHV_bIFUCZWxJN5spYBv8aGacIbiI,1899 +PyInstaller/hooks/rthooks/pyi_rth_kivy.py,sha256=MCXvflBa2ziDeOArYGyN5e1XbhsB3p5O8Xy3Uc7lfe4,665 +PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py,sha256=M3t08BCLqy9NApRe3pQLObLOU2rA9Q4zzy98grgJImU,1486 +PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py,sha256=LcqbaQDGXn1AhiH8T0RlWuRuX3Nm2q9bAkA7TO62Egw,3764 +PyInstaller/hooks/rthooks/pyi_rth_pkgres.py,sha256=74GGP0i7O2I50SLp39w0wc33m40-tw0bL1gduH80adk,8514 +PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py,sha256=hkFyyp4JHoEG2EzChFNbqLgvPffDnwuBTnWHNFhVrZk,3610 +PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py,sha256=0mYM7H9IsoeH6SAlo3cNPAECL33gplKQQAGdyIU_FpA,1238 +PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py,sha256=TBPY6Xm5TgVkZM3G9B0hwQAf6pmZJFEPqLsUh3QaICg,1079 +PyInstaller/hooks/rthooks/pyi_rth_pyqt6.py,sha256=Spj5uLUxM6LRkGeKYu1DX8a3pie1M9ltYM-xxkjoK1M,1312 +PyInstaller/hooks/rthooks/pyi_rth_pyside2.py,sha256=LGCRIqH0m0kv4PBVHnMKoEtzpjPO7wAV8V7fdvRWqu0,1293 +PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py,sha256=DcYuTMS5k_dejdQxY2HK0aJcLTdL8zHbvLSrUjlBUJA,793 +PyInstaller/hooks/rthooks/pyi_rth_pyside6.py,sha256=Rv-g147_AJH6Li8pIy4YVSbpc30YMm1yn4GRCu39nJU,1288 +PyInstaller/hooks/rthooks/pyi_rth_win32api.py,sha256=-PReMg6zVsTkS5dG_njeKEMNvfI17xudSEv6II39y1o,933 +PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py,sha256=a3eYkdq-7QOi9ZMAYRmouTD17E-5525HloRr29FfLmg,2204 +PyInstaller/lib/README.rst,sha256=VdkvnJUKg6D2bv3nfb-bJoWQ00jTf-pLbvv7KbsSaTA,1333 +PyInstaller/lib/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/lib/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__init__.py,sha256=q1XQN2YGfSINUSLuBsTs7uhMArf62AFQxdSrq3fS4-o,21 +PyInstaller/lib/modulegraph/__main__.py,sha256=hiwjxxmiY3QfLQ7f0Pd_eSDQYL8MXQyQtkRoJSHe3hU,2653 +PyInstaller/lib/modulegraph/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__pycache__/__main__.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__pycache__/_compat.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__pycache__/find_modules.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__pycache__/modulegraph.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__pycache__/util.cpython-37.pyc,, +PyInstaller/lib/modulegraph/__pycache__/zipio.cpython-37.pyc,, +PyInstaller/lib/modulegraph/_compat.py,sha256=e_cIW00svLpuuc-1xIMUnMsT11mmWSJlm3R7F4jefdk,494 +PyInstaller/lib/modulegraph/find_modules.py,sha256=Rdzmty604KYGxs1XCm8rJUcWPEGshcwh3vpXDJywG7k,10313 +PyInstaller/lib/modulegraph/modulegraph.py,sha256=r2_GGXKLGd4QcsQmJtTmNUKsQizha_N7JGgcxvGAyEI,139161 +PyInstaller/lib/modulegraph/util.py,sha256=Z0P6DCTaUYh2VHGl4y-gKg0JD81iPUQL_GNYSuouz-g,4108 +PyInstaller/lib/modulegraph/zipio.py,sha256=wi5VHVDSagrPkQQ53Ajeqw0iQa26ZFEcwC7mFXyhZOg,9917 +PyInstaller/loader/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/loader/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/loader/__pycache__/pyiboot01_bootstrap.cpython-37.pyc,, +PyInstaller/loader/__pycache__/pyimod01_os_path.cpython-37.pyc,, +PyInstaller/loader/__pycache__/pyimod02_archive.cpython-37.pyc,, +PyInstaller/loader/__pycache__/pyimod03_importers.cpython-37.pyc,, +PyInstaller/loader/__pycache__/pyimod04_ctypes.cpython-37.pyc,, +PyInstaller/loader/pyiboot01_bootstrap.py,sha256=TisOv9VqEqHGRGzyzpBthB7RT7ci-cclAc6OJjhTdMc,4328 +PyInstaller/loader/pyimod01_os_path.py,sha256=LCkSuAfLXZAkMChVSOTLS_PHFLJuTUW0536K2EgxaFg,3042 +PyInstaller/loader/pyimod02_archive.py,sha256=sPTMtIMHQbsgMuLKIeiHBe6LP_QCMrzte4MTi_EO6Fo,10568 +PyInstaller/loader/pyimod03_importers.py,sha256=oPuEj1QJ0NuWGSUa3AmmwYidME4lPLPrkDSd8HM14Cg,28662 +PyInstaller/loader/pyimod04_ctypes.py,sha256=uELkj5zY1Dhyhi3Tp-93bB86PSEKwzr3_n8eNMz5MQI,3928 +PyInstaller/log.py,sha256=eTaeXfV1SiOhOl6Qm6VX0icGDbDXlz36p1ak4p4PgvE,1549 +PyInstaller/old__main__.py,sha256=FvBAvKuxFZqN1wMG8p5IOAGu_KmZH3S2Dznz2AEECx0,4459 +PyInstaller/utils/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/utils/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/utils/__pycache__/_gitrevision.cpython-37.pyc,, +PyInstaller/utils/__pycache__/conftest.cpython-37.pyc,, +PyInstaller/utils/__pycache__/git.cpython-37.pyc,, +PyInstaller/utils/__pycache__/misc.cpython-37.pyc,, +PyInstaller/utils/__pycache__/osx.cpython-37.pyc,, +PyInstaller/utils/__pycache__/release.cpython-37.pyc,, +PyInstaller/utils/__pycache__/run_tests.cpython-37.pyc,, +PyInstaller/utils/__pycache__/tests.cpython-37.pyc,, +PyInstaller/utils/_gitrevision.py,sha256=1EhTxSK7qNLyYFJXA71MkMFBpl6SSP8kAqUNV9RMk_Y,451 +PyInstaller/utils/cliutils/__init__.py,sha256=MsSFjiLMLJZ7QhUPpVBWKiyDnCzryquRyr329NoCACI,2 +PyInstaller/utils/cliutils/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/utils/cliutils/__pycache__/archive_viewer.cpython-37.pyc,, +PyInstaller/utils/cliutils/__pycache__/bindepend.cpython-37.pyc,, +PyInstaller/utils/cliutils/__pycache__/grab_version.cpython-37.pyc,, +PyInstaller/utils/cliutils/__pycache__/makespec.cpython-37.pyc,, +PyInstaller/utils/cliutils/__pycache__/set_version.cpython-37.pyc,, +PyInstaller/utils/cliutils/archive_viewer.py,sha256=D2-f9uPKY3gs1M0EbuPrakb_nFrx3hMxG62-p8XalZU,7838 +PyInstaller/utils/cliutils/bindepend.py,sha256=4QltRWo24dVefLfeaJmzAv1HNY9nz5wxESrjmYj9vKU,1742 +PyInstaller/utils/cliutils/grab_version.py,sha256=XO5VwEtl7RAZzemzq5gt6VCHy_t02_rzEvn8FqQoXLc,1700 +PyInstaller/utils/cliutils/makespec.py,sha256=Hn-Qv0N_ae184BVQPG9mr3lRy36xmc8lMi5jQU1wf50,1502 +PyInstaller/utils/cliutils/set_version.py,sha256=ZFtuSWce5A2FgNWiq1Ibo9m4TnzvZmzVpq71-jKCyBI,1289 +PyInstaller/utils/conftest.py,sha256=Lm4mcj7ZHZepmh8UdhevktG58iauUnmiA6Ipc-nlzxg,22463 +PyInstaller/utils/git.py,sha256=QVV3S3sP72r4HWD9tBOjE2KEPM1Ey3GqBWpMb2DGia8,2014 +PyInstaller/utils/hooks/__init__.py,sha256=8uYj2Dgj-mkbdGZanu-RWB4cHTGfE92j0KkESWV-3b0,45205 +PyInstaller/utils/hooks/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/utils/hooks/__pycache__/conda.cpython-37.pyc,, +PyInstaller/utils/hooks/__pycache__/django.cpython-37.pyc,, +PyInstaller/utils/hooks/__pycache__/gi.cpython-37.pyc,, +PyInstaller/utils/hooks/__pycache__/qt.cpython-37.pyc,, +PyInstaller/utils/hooks/__pycache__/tcl_tk.cpython-37.pyc,, +PyInstaller/utils/hooks/__pycache__/win32.cpython-37.pyc,, +PyInstaller/utils/hooks/conda.py,sha256=uXCjSqvBMhzrvS41YrhV-RDhcAnpLbfpCuul-VxOghI,14278 +PyInstaller/utils/hooks/django.py,sha256=stn9gRnvjfXAVozyXO0IbhdyU7tGI-W9mvCSYQAeCPA,3091 +PyInstaller/utils/hooks/gi.py,sha256=b_-2tUxiTuBt0NFdnekRp_nU4E9ys6PDLmQcr2MGJYg,9453 +PyInstaller/utils/hooks/qt.py,sha256=2pp8IVaOrDUSgWnWz-Ys5tVdWZsGsn9Erx2hRTuZJcM,43015 +PyInstaller/utils/hooks/subproc/__init__.py,sha256=fNGhsx0m5s9iq4yMvH6J1tI0vzUKWd62lIQNSnKTGCE,22 +PyInstaller/utils/hooks/subproc/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/utils/hooks/subproc/__pycache__/django_import_finder.cpython-37.pyc,, +PyInstaller/utils/hooks/subproc/django_import_finder.py,sha256=S3vbeambC3llUwM7ym069LrawF7SnXHDiCIBenBrvvE,3426 +PyInstaller/utils/hooks/tcl_tk.py,sha256=hh4i-EalXZoIXZDXKh4mxFHSKPoe-iUsQaAr42DXKB4,9904 +PyInstaller/utils/hooks/win32.py,sha256=iodL5aKooi_-G5HX47sVRCQdQdWexegXijmHFS4JvCk,1706 +PyInstaller/utils/misc.py,sha256=g1qFZaeI4Xgmj03MCxU_KRiB8Eu9BGn8UKubXFRy5Hc,11712 +PyInstaller/utils/osx.py,sha256=r75mseYH2aEXQyZc5PlK_aXkzp0eP_1LZzQTc8Ty0FA,14265 +PyInstaller/utils/release.py,sha256=HVfiPqEG3jXs7WSHmqBoBrddrlKk4Lstg6mxNmGDrxg,1704 +PyInstaller/utils/run_tests.py,sha256=IgFdiNsIFMScCYR1zJUyxz7O05QvLzNFVQ1Cfp9TkH4,2887 +PyInstaller/utils/tests.py,sha256=niq3bKwwI4-SRG74zzzzHxF7tkkkhpssW3W3DBsNmWQ,5766 +PyInstaller/utils/win32/__init__.py,sha256=fNGhsx0m5s9iq4yMvH6J1tI0vzUKWd62lIQNSnKTGCE,22 +PyInstaller/utils/win32/__pycache__/__init__.cpython-37.pyc,, +PyInstaller/utils/win32/__pycache__/icon.cpython-37.pyc,, +PyInstaller/utils/win32/__pycache__/versioninfo.cpython-37.pyc,, +PyInstaller/utils/win32/__pycache__/winmanifest.cpython-37.pyc,, +PyInstaller/utils/win32/__pycache__/winresource.cpython-37.pyc,, +PyInstaller/utils/win32/__pycache__/winutils.cpython-37.pyc,, +PyInstaller/utils/win32/icon.py,sha256=6y6JcSYdt_kTTQxc__O5UtN42YDKtBM7ptglvMkgazM,9853 +PyInstaller/utils/win32/versioninfo.py,sha256=V6YTMK2yI_dHwVEHPWutFKJbGZvRdbPZUdYfmp-6l0Q,22849 +PyInstaller/utils/win32/winmanifest.py,sha256=q_fJ9s4c5PM5PIsu6AIjV1gw0iID3Bv-ExlO3E2l5es,44067 +PyInstaller/utils/win32/winresource.py,sha256=pPthBFqCg0ux_PAph0e5MPWO2iLrqePNIu71fYM7zMk,9629 +PyInstaller/utils/win32/winutils.py,sha256=58RymTd4ckcttw2oot1kHkWynWKYiXw6a2d7cdKKpPs,5582 +pyinstaller-4.7.dist-info/COPYING.txt,sha256=9yTxr7pAqMw3TLs-IElb_hQrmYuX2PFvQg-jB9Kk1AI,30633 +pyinstaller-4.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pyinstaller-4.7.dist-info/METADATA,sha256=ovxsHLCbLDQFWXe0UdSsAT2mBg-LwMWCdRO3yxY-Toc,7085 +pyinstaller-4.7.dist-info/RECORD,, +pyinstaller-4.7.dist-info/WHEEL,sha256=WoE84lFhzpl5kFoOWeOKUr67l1o9c9Tie8ccxFQmzBU,98 +pyinstaller-4.7.dist-info/entry_points.txt,sha256=HvUkY2YCPxcJQjENngRlDEtmYlf_qWegG1_wv_J99GM,361 +pyinstaller-4.7.dist-info/top_level.txt,sha256=GuRmvWXGTRJNYmK5iWGOglNv4L3by7YKaEiKycNZ4XQ,12 diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/WHEEL b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/WHEEL new file mode 100644 index 0000000..9d9c39a --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.0) +Root-Is-Purelib: true +Tag: py3-none-win_amd64 + diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/entry_points.txt b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/entry_points.txt new file mode 100644 index 0000000..cbc8725 --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/entry_points.txt @@ -0,0 +1,8 @@ +[console_scripts] +pyi-archive_viewer = PyInstaller.utils.cliutils.archive_viewer:run +pyi-bindepend = PyInstaller.utils.cliutils.bindepend:run +pyi-grab_version = PyInstaller.utils.cliutils.grab_version:run +pyi-makespec = PyInstaller.utils.cliutils.makespec:run +pyi-set_version = PyInstaller.utils.cliutils.set_version:run +pyinstaller = PyInstaller.__main__:run + diff --git a/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/top_level.txt b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/top_level.txt new file mode 100644 index 0000000..c313980 --- /dev/null +++ b/python_gui/可执行文件_main/pyinstaller-4.7.dist-info/top_level.txt @@ -0,0 +1 @@ +PyInstaller diff --git a/python_gui/可执行文件_main/pyqtgraph/icons/auto.png b/python_gui/可执行文件_main/pyqtgraph/icons/auto.png new file mode 100644 index 0000000..a27ff4f Binary files /dev/null and b/python_gui/可执行文件_main/pyqtgraph/icons/auto.png differ diff --git a/python_gui/可执行文件_main/pyqtgraph/icons/ctrl.png b/python_gui/可执行文件_main/pyqtgraph/icons/ctrl.png new file mode 100644 index 0000000..c8dc96e Binary files /dev/null and b/python_gui/可执行文件_main/pyqtgraph/icons/ctrl.png differ diff --git a/python_gui/可执行文件_main/pyqtgraph/icons/default.png b/python_gui/可执行文件_main/pyqtgraph/icons/default.png new file mode 100644 index 0000000..f123942 Binary files /dev/null and b/python_gui/可执行文件_main/pyqtgraph/icons/default.png differ diff --git a/python_gui/可执行文件_main/pyqtgraph/icons/icons.svg b/python_gui/可执行文件_main/pyqtgraph/icons/icons.svg new file mode 100644 index 0000000..cfdfeba --- /dev/null +++ b/python_gui/可执行文件_main/pyqtgraph/icons/icons.svg @@ -0,0 +1,135 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + A + + + + + + + + + + + diff --git a/python_gui/可执行文件_main/pyqtgraph/icons/invisibleEye.svg b/python_gui/可执行文件_main/pyqtgraph/icons/invisibleEye.svg new file mode 100644 index 0000000..5a67832 --- /dev/null +++ b/python_gui/可执行文件_main/pyqtgraph/icons/invisibleEye.svg @@ -0,0 +1,35 @@ + + + + + + + + + diff --git a/python_gui/可执行文件_main/pyqtgraph/icons/lock.png b/python_gui/可执行文件_main/pyqtgraph/icons/lock.png new file mode 100644 index 0000000..3f85dde Binary files /dev/null and b/python_gui/可执行文件_main/pyqtgraph/icons/lock.png differ diff --git a/python_gui/可执行文件_main/python3.dll b/python_gui/可执行文件_main/python3.dll new file mode 100644 index 0000000..492213c Binary files /dev/null and b/python_gui/可执行文件_main/python3.dll differ diff --git a/python_gui/可执行文件_main/python37.dll b/python_gui/可执行文件_main/python37.dll new file mode 100644 index 0000000..1938af3 Binary files /dev/null and b/python_gui/可执行文件_main/python37.dll differ diff --git a/python_gui/可执行文件_main/resources/add.png b/python_gui/可执行文件_main/resources/add.png new file mode 100644 index 0000000..7038ea7 Binary files /dev/null and b/python_gui/可执行文件_main/resources/add.png differ diff --git a/python_gui/可执行文件_main/resources/add_motor.png b/python_gui/可执行文件_main/resources/add_motor.png new file mode 100644 index 0000000..abcd9f1 Binary files /dev/null and b/python_gui/可执行文件_main/resources/add_motor.png differ diff --git a/python_gui/可执行文件_main/resources/add_motor.psd b/python_gui/可执行文件_main/resources/add_motor.psd new file mode 100644 index 0000000..710bc29 Binary files /dev/null and b/python_gui/可执行文件_main/resources/add_motor.psd differ diff --git a/python_gui/可执行文件_main/resources/alert.png b/python_gui/可执行文件_main/resources/alert.png new file mode 100644 index 0000000..3e73cac Binary files /dev/null and b/python_gui/可执行文件_main/resources/alert.png differ diff --git a/python_gui/可执行文件_main/resources/ard.png b/python_gui/可执行文件_main/resources/ard.png new file mode 100644 index 0000000..76fb459 Binary files /dev/null and b/python_gui/可执行文件_main/resources/ard.png differ diff --git a/python_gui/可执行文件_main/resources/backward.png b/python_gui/可执行文件_main/resources/backward.png new file mode 100644 index 0000000..dedbb6f Binary files /dev/null and b/python_gui/可执行文件_main/resources/backward.png differ diff --git a/python_gui/可执行文件_main/resources/bluedot.png b/python_gui/可执行文件_main/resources/bluedot.png new file mode 100644 index 0000000..8ef6a0e Binary files /dev/null and b/python_gui/可执行文件_main/resources/bluedot.png differ diff --git a/python_gui/可执行文件_main/resources/configure.png b/python_gui/可执行文件_main/resources/configure.png new file mode 100644 index 0000000..da2e43e Binary files /dev/null and b/python_gui/可执行文件_main/resources/configure.png differ diff --git a/python_gui/可执行文件_main/resources/connect.png b/python_gui/可执行文件_main/resources/connect.png new file mode 100644 index 0000000..e09f443 Binary files /dev/null and b/python_gui/可执行文件_main/resources/connect.png differ diff --git a/python_gui/可执行文件_main/resources/consoletool.png b/python_gui/可执行文件_main/resources/consoletool.png new file mode 100644 index 0000000..6e01693 Binary files /dev/null and b/python_gui/可执行文件_main/resources/consoletool.png differ diff --git a/python_gui/可执行文件_main/resources/continue.png b/python_gui/可执行文件_main/resources/continue.png new file mode 100644 index 0000000..fd93351 Binary files /dev/null and b/python_gui/可执行文件_main/resources/continue.png differ diff --git a/python_gui/可执行文件_main/resources/customcommands.png b/python_gui/可执行文件_main/resources/customcommands.png new file mode 100644 index 0000000..1bb8fb0 Binary files /dev/null and b/python_gui/可执行文件_main/resources/customcommands.png differ diff --git a/python_gui/可执行文件_main/resources/delete.png b/python_gui/可执行文件_main/resources/delete.png new file mode 100644 index 0000000..3812bf0 Binary files /dev/null and b/python_gui/可执行文件_main/resources/delete.png differ diff --git a/python_gui/可执行文件_main/resources/disconnect.png b/python_gui/可执行文件_main/resources/disconnect.png new file mode 100644 index 0000000..ba22f19 Binary files /dev/null and b/python_gui/可执行文件_main/resources/disconnect.png differ diff --git a/python_gui/可执行文件_main/resources/edit.png b/python_gui/可执行文件_main/resources/edit.png new file mode 100644 index 0000000..21e2557 Binary files /dev/null and b/python_gui/可执行文件_main/resources/edit.png differ diff --git a/python_gui/可执行文件_main/resources/fastbackward.png b/python_gui/可执行文件_main/resources/fastbackward.png new file mode 100644 index 0000000..aa5ec43 Binary files /dev/null and b/python_gui/可执行文件_main/resources/fastbackward.png differ diff --git a/python_gui/可执行文件_main/resources/fastfordward.png b/python_gui/可执行文件_main/resources/fastfordward.png new file mode 100644 index 0000000..b4df987 Binary files /dev/null and b/python_gui/可执行文件_main/resources/fastfordward.png differ diff --git a/python_gui/可执行文件_main/resources/fordward.png b/python_gui/可执行文件_main/resources/fordward.png new file mode 100644 index 0000000..9519656 Binary files /dev/null and b/python_gui/可执行文件_main/resources/fordward.png differ diff --git a/python_gui/可执行文件_main/resources/form.png b/python_gui/可执行文件_main/resources/form.png new file mode 100644 index 0000000..7347e48 Binary files /dev/null and b/python_gui/可执行文件_main/resources/form.png differ diff --git a/python_gui/可执行文件_main/resources/gear.png b/python_gui/可执行文件_main/resources/gear.png new file mode 100644 index 0000000..d7ab21f Binary files /dev/null and b/python_gui/可执行文件_main/resources/gear.png differ diff --git a/python_gui/可执行文件_main/resources/gen.png b/python_gui/可执行文件_main/resources/gen.png new file mode 100644 index 0000000..eab9676 Binary files /dev/null and b/python_gui/可执行文件_main/resources/gen.png differ diff --git a/python_gui/可执行文件_main/resources/generalsettings.png b/python_gui/可执行文件_main/resources/generalsettings.png new file mode 100644 index 0000000..3c1e92c Binary files /dev/null and b/python_gui/可执行文件_main/resources/generalsettings.png differ diff --git a/python_gui/可执行文件_main/resources/greendot.png b/python_gui/可执行文件_main/resources/greendot.png new file mode 100644 index 0000000..36a4f2e Binary files /dev/null and b/python_gui/可执行文件_main/resources/greendot.png differ diff --git a/python_gui/可执行文件_main/resources/home.png b/python_gui/可执行文件_main/resources/home.png new file mode 100644 index 0000000..df519da Binary files /dev/null and b/python_gui/可执行文件_main/resources/home.png differ diff --git a/python_gui/可执行文件_main/resources/list.png b/python_gui/可执行文件_main/resources/list.png new file mode 100644 index 0000000..c6a49b5 Binary files /dev/null and b/python_gui/可执行文件_main/resources/list.png differ diff --git a/python_gui/可执行文件_main/resources/loop.png b/python_gui/可执行文件_main/resources/loop.png new file mode 100644 index 0000000..665c8b6 Binary files /dev/null and b/python_gui/可执行文件_main/resources/loop.png differ diff --git a/python_gui/可执行文件_main/resources/maroondot.png b/python_gui/可执行文件_main/resources/maroondot.png new file mode 100644 index 0000000..4b3fd5d Binary files /dev/null and b/python_gui/可执行文件_main/resources/maroondot.png differ diff --git a/python_gui/可执行文件_main/resources/motor.png b/python_gui/可执行文件_main/resources/motor.png new file mode 100644 index 0000000..16bbf5c Binary files /dev/null and b/python_gui/可执行文件_main/resources/motor.png differ diff --git a/python_gui/可执行文件_main/resources/motor.psd b/python_gui/可执行文件_main/resources/motor.psd new file mode 100644 index 0000000..83c67a7 Binary files /dev/null and b/python_gui/可执行文件_main/resources/motor.psd differ diff --git a/python_gui/可执行文件_main/resources/motor1.png b/python_gui/可执行文件_main/resources/motor1.png new file mode 100644 index 0000000..a97587d Binary files /dev/null and b/python_gui/可执行文件_main/resources/motor1.png differ diff --git a/python_gui/可执行文件_main/resources/open.png b/python_gui/可执行文件_main/resources/open.png new file mode 100644 index 0000000..9c1a1cb Binary files /dev/null and b/python_gui/可执行文件_main/resources/open.png differ diff --git a/python_gui/可执行文件_main/resources/orangedot.png b/python_gui/可执行文件_main/resources/orangedot.png new file mode 100644 index 0000000..6c0fc5c Binary files /dev/null and b/python_gui/可执行文件_main/resources/orangedot.png differ diff --git a/python_gui/可执行文件_main/resources/pause.png b/python_gui/可执行文件_main/resources/pause.png new file mode 100644 index 0000000..c5c0f1a Binary files /dev/null and b/python_gui/可执行文件_main/resources/pause.png differ diff --git a/python_gui/可执行文件_main/resources/pid.png b/python_gui/可执行文件_main/resources/pid.png new file mode 100644 index 0000000..2f4130c Binary files /dev/null and b/python_gui/可执行文件_main/resources/pid.png differ diff --git a/python_gui/可执行文件_main/resources/pidconfig.png b/python_gui/可执行文件_main/resources/pidconfig.png new file mode 100644 index 0000000..8dbcac0 Binary files /dev/null and b/python_gui/可执行文件_main/resources/pidconfig.png differ diff --git a/python_gui/可执行文件_main/resources/pull.png b/python_gui/可执行文件_main/resources/pull.png new file mode 100644 index 0000000..9232799 Binary files /dev/null and b/python_gui/可执行文件_main/resources/pull.png differ diff --git a/python_gui/可执行文件_main/resources/purpledot.png b/python_gui/可执行文件_main/resources/purpledot.png new file mode 100644 index 0000000..8ff40fd Binary files /dev/null and b/python_gui/可执行文件_main/resources/purpledot.png differ diff --git a/python_gui/可执行文件_main/resources/push.png b/python_gui/可执行文件_main/resources/push.png new file mode 100644 index 0000000..c91bcb1 Binary files /dev/null and b/python_gui/可执行文件_main/resources/push.png differ diff --git a/python_gui/可执行文件_main/resources/reddot.png b/python_gui/可执行文件_main/resources/reddot.png new file mode 100644 index 0000000..aeaa338 Binary files /dev/null and b/python_gui/可执行文件_main/resources/reddot.png differ diff --git a/python_gui/可执行文件_main/resources/res.png b/python_gui/可执行文件_main/resources/res.png new file mode 100644 index 0000000..cc01c54 Binary files /dev/null and b/python_gui/可执行文件_main/resources/res.png differ diff --git a/python_gui/可执行文件_main/resources/save.png b/python_gui/可执行文件_main/resources/save.png new file mode 100644 index 0000000..f637c76 Binary files /dev/null and b/python_gui/可执行文件_main/resources/save.png differ diff --git a/python_gui/可执行文件_main/resources/send.png b/python_gui/可执行文件_main/resources/send.png new file mode 100644 index 0000000..b15e21d Binary files /dev/null and b/python_gui/可执行文件_main/resources/send.png differ diff --git a/python_gui/可执行文件_main/resources/sensor.png b/python_gui/可执行文件_main/resources/sensor.png new file mode 100644 index 0000000..30d33a4 Binary files /dev/null and b/python_gui/可执行文件_main/resources/sensor.png differ diff --git a/python_gui/可执行文件_main/resources/start.png b/python_gui/可执行文件_main/resources/start.png new file mode 100644 index 0000000..91f057b Binary files /dev/null and b/python_gui/可执行文件_main/resources/start.png differ diff --git a/python_gui/可执行文件_main/resources/statistics.png b/python_gui/可执行文件_main/resources/statistics.png new file mode 100644 index 0000000..a1ae710 Binary files /dev/null and b/python_gui/可执行文件_main/resources/statistics.png differ diff --git a/python_gui/可执行文件_main/resources/stop.png b/python_gui/可执行文件_main/resources/stop.png new file mode 100644 index 0000000..a5ccebf Binary files /dev/null and b/python_gui/可执行文件_main/resources/stop.png differ diff --git a/python_gui/可执行文件_main/resources/stopjogging.png b/python_gui/可执行文件_main/resources/stopjogging.png new file mode 100644 index 0000000..faa8b72 Binary files /dev/null and b/python_gui/可执行文件_main/resources/stopjogging.png differ diff --git a/python_gui/可执行文件_main/resources/studioicon.icns b/python_gui/可执行文件_main/resources/studioicon.icns new file mode 100644 index 0000000..1e3ee0e Binary files /dev/null and b/python_gui/可执行文件_main/resources/studioicon.icns differ diff --git a/python_gui/可执行文件_main/resources/tree copy.png b/python_gui/可执行文件_main/resources/tree copy.png new file mode 100644 index 0000000..e683632 Binary files /dev/null and b/python_gui/可执行文件_main/resources/tree copy.png differ diff --git a/python_gui/可执行文件_main/resources/tree.png b/python_gui/可执行文件_main/resources/tree.png new file mode 100644 index 0000000..a8437a9 Binary files /dev/null and b/python_gui/可执行文件_main/resources/tree.png differ diff --git a/python_gui/可执行文件_main/resources/yellowdot.png b/python_gui/可执行文件_main/resources/yellowdot.png new file mode 100644 index 0000000..a2ab7f5 Binary files /dev/null and b/python_gui/可执行文件_main/resources/yellowdot.png differ diff --git a/python_gui/可执行文件_main/resources/zoomall.png b/python_gui/可执行文件_main/resources/zoomall.png new file mode 100644 index 0000000..f289a18 Binary files /dev/null and b/python_gui/可执行文件_main/resources/zoomall.png differ diff --git a/python_gui/可执行文件_main/select.pyd b/python_gui/可执行文件_main/select.pyd new file mode 100644 index 0000000..276142c Binary files /dev/null and b/python_gui/可执行文件_main/select.pyd differ diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/INSTALLER b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/LICENSE b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/LICENSE new file mode 100644 index 0000000..6e0693b --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2016 Jason R Coombs + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/METADATA b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/METADATA new file mode 100644 index 0000000..253c680 --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/METADATA @@ -0,0 +1,109 @@ +Metadata-Version: 2.1 +Name: setuptools +Version: 47.1.0 +Summary: Easily download, build, install, upgrade, and uninstall Python packages +Home-page: https://github.com/pypa/setuptools +Author: Python Packaging Authority +Author-email: distutils-sig@python.org +License: UNKNOWN +Project-URL: Documentation, https://setuptools.readthedocs.io/ +Keywords: CPAN PyPI distutils eggs package management +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: System :: Archiving :: Packaging +Classifier: Topic :: System :: Systems Administration +Classifier: Topic :: Utilities +Requires-Python: >=3.5 +Description-Content-Type: text/x-rst; charset=UTF-8 +Provides-Extra: certs +Requires-Dist: certifi (==2016.9.26) ; extra == 'certs' +Provides-Extra: docs +Requires-Dist: sphinx ; extra == 'docs' +Requires-Dist: jaraco.packaging (>=6.1) ; extra == 'docs' +Requires-Dist: rst.linker (>=1.9) ; extra == 'docs' +Requires-Dist: pygments-github-lexers (==0.0.5) ; extra == 'docs' +Provides-Extra: ssl +Requires-Dist: wincertstore (==0.2) ; (sys_platform == "win32") and extra == 'ssl' +Provides-Extra: tests +Requires-Dist: mock ; extra == 'tests' +Requires-Dist: pytest-flake8 ; extra == 'tests' +Requires-Dist: virtualenv (>=13.0.0) ; extra == 'tests' +Requires-Dist: pytest-virtualenv (>=1.2.7) ; extra == 'tests' +Requires-Dist: pytest (>=3.7) ; extra == 'tests' +Requires-Dist: wheel ; extra == 'tests' +Requires-Dist: coverage (>=4.5.1) ; extra == 'tests' +Requires-Dist: pytest-cov (>=2.5.1) ; extra == 'tests' +Requires-Dist: pip (>=19.1) ; extra == 'tests' +Requires-Dist: futures ; (python_version == "2.7") and extra == 'tests' +Requires-Dist: flake8-2020 ; (python_version >= "3.6") and extra == 'tests' +Requires-Dist: paver ; (python_version >= "3.6") and extra == 'tests' + +.. image:: https://img.shields.io/pypi/v/setuptools.svg + :target: `PyPI link`_ + +.. image:: https://img.shields.io/pypi/pyversions/setuptools.svg + :target: `PyPI link`_ + +.. _PyPI link: https://pypi.org/project/setuptools + +.. image:: https://dev.azure.com/jaraco/setuptools/_apis/build/status/pypa.setuptools?branchName=master + :target: https://dev.azure.com/jaraco/setuptools/_build/latest?definitionId=1&branchName=master + +.. image:: https://img.shields.io/travis/pypa/setuptools/master.svg?label=Linux%20CI&logo=travis&logoColor=white + :target: https://travis-ci.org/pypa/setuptools + +.. image:: https://img.shields.io/appveyor/ci/pypa/setuptools/master.svg?label=Windows%20CI&logo=appveyor&logoColor=white + :target: https://ci.appveyor.com/project/pypa/setuptools/branch/master + +.. image:: https://img.shields.io/readthedocs/setuptools/latest.svg + :target: https://setuptools.readthedocs.io + +.. image:: https://img.shields.io/codecov/c/github/pypa/setuptools/master.svg?logo=codecov&logoColor=white + :target: https://codecov.io/gh/pypa/setuptools + +.. image:: https://tidelift.com/badges/github/pypa/setuptools?style=flat + :target: https://tidelift.com/subscription/pkg/pypi-setuptools?utm_source=pypi-setuptools&utm_medium=readme + +See the `Installation Instructions +`_ in the Python Packaging +User's Guide for instructions on installing, upgrading, and uninstalling +Setuptools. + +Questions and comments should be directed to the `distutils-sig +mailing list `_. +Bug reports and especially tested patches may be +submitted directly to the `bug tracker +`_. + +To report a security vulnerability, please use the +`Tidelift security contact `_. +Tidelift will coordinate the fix and disclosure. + + +For Enterprise +============== + +Available as part of the Tidelift Subscription. + +Setuptools and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use. + +`Learn more `_. + +Code of Conduct +=============== + +Everyone interacting in the setuptools project's codebases, issue trackers, +chat rooms, and mailing lists is expected to follow the +`PyPA Code of Conduct `_. + + diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/RECORD b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/RECORD new file mode 100644 index 0000000..029bb22 --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/RECORD @@ -0,0 +1,196 @@ +../../Scripts/easy_install-3.7.exe,sha256=HpCmAh5F620eMh25p5837daUGguCKZegpk5mFLzWXd0,106383 +../../Scripts/easy_install.exe,sha256=HpCmAh5F620eMh25p5837daUGguCKZegpk5mFLzWXd0,106383 +__pycache__/easy_install.cpython-37.pyc,, +easy_install.py,sha256=MDC9vt5AxDsXX5qcKlBz2TnW6Tpuv_AobnfhCJ9X3PM,126 +pkg_resources/__init__.py,sha256=AiHtsqVRO1T4Sfv_JH2WzHa_EywN1-MaIxEPIe0ky0g,108570 +pkg_resources/__pycache__/__init__.cpython-37.pyc,, +pkg_resources/__pycache__/py2_warn.cpython-37.pyc,, +pkg_resources/__pycache__/py31compat.cpython-37.pyc,, +pkg_resources/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc,, +pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc,, +pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc,, +pkg_resources/_vendor/__pycache__/six.cpython-37.pyc,, +pkg_resources/_vendor/appdirs.py,sha256=MievUEuv3l_mQISH5SF0shDk_BNhHHzYiAPrT3ITN4I,24701 +pkg_resources/_vendor/packaging/__about__.py,sha256=zkcCPTN_6TcLW0Nrlg0176-R1QQ_WVPTm8sz1R4-HjM,720 +pkg_resources/_vendor/packaging/__init__.py,sha256=_vNac5TrzwsrzbOFIbF-5cHqc_Y2aPT2D7zrIR06BOo,513 +pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc,, +pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc,, +pkg_resources/_vendor/packaging/_compat.py,sha256=Vi_A0rAQeHbU-a9X0tt1yQm9RqkgQbDSxzRw8WlU9kA,860 +pkg_resources/_vendor/packaging/_structures.py,sha256=RImECJ4c_wTlaTYYwZYLHEiebDMaAJmK1oPARhw1T5o,1416 +pkg_resources/_vendor/packaging/markers.py,sha256=uEcBBtGvzqltgnArqb9c4RrcInXezDLos14zbBHhWJo,8248 +pkg_resources/_vendor/packaging/requirements.py,sha256=SikL2UynbsT0qtY9ltqngndha_sfo0w6XGFhAhoSoaQ,4355 +pkg_resources/_vendor/packaging/specifiers.py,sha256=SAMRerzO3fK2IkFZCaZkuwZaL_EGqHNOz4pni4vhnN0,28025 +pkg_resources/_vendor/packaging/utils.py,sha256=3m6WvPm6NNxE8rkTGmn0r75B_GZSGg7ikafxHsBN1WA,421 +pkg_resources/_vendor/packaging/version.py,sha256=OwGnxYfr2ghNzYx59qWIBkrK3SnB6n-Zfd1XaLpnnM0,11556 +pkg_resources/_vendor/pyparsing.py,sha256=tmrp-lu-qO1i75ZzIN5A12nKRRD1Cm4Vpk-5LR9rims,232055 +pkg_resources/_vendor/six.py,sha256=A6hdJZVjI3t_geebZ9BzUvwRrIXo0lfwzQlM2LcKyas,30098 +pkg_resources/extern/__init__.py,sha256=w_3T8ntsvFFioQYOgYoGGqafDiv4sLzecQRDjsB5yeE,2101 +pkg_resources/extern/__pycache__/__init__.cpython-37.pyc,, +pkg_resources/py2_warn.py,sha256=p7Ch41rTuJvE4vi5vLQ47Fp0OLpvyF7Um8AKuX9Xt9o,396 +pkg_resources/py31compat.py,sha256=-WQ0e4c3RG_acdhwC3gLiXhP_lg4G5q7XYkZkQg0gxU,558 +setuptools-47.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +setuptools-47.1.0.dist-info/LICENSE,sha256=wyo6w5WvYyHv0ovnPQagDw22q4h9HCHU_sRhKNIFbVo,1078 +setuptools-47.1.0.dist-info/METADATA,sha256=httg_Q-F4BYN9eYMIbApa91ndE6pB7lo_k04-vuiBJE,4806 +setuptools-47.1.0.dist-info/RECORD,, +setuptools-47.1.0.dist-info/WHEEL,sha256=p46_5Uhzqz6AzeSosiOnxK-zmFja1i22CrQCjmYe8ec,92 +setuptools-47.1.0.dist-info/dependency_links.txt,sha256=HlkCFkoK5TbZ5EMLbLKYhLcY_E31kBWD8TqW2EgmatQ,239 +setuptools-47.1.0.dist-info/entry_points.txt,sha256=1K5Fr0-5Ph3ZRZFuwNaw8ERGiNLVqHvdKDNt3oXGS6w,3143 +setuptools-47.1.0.dist-info/top_level.txt,sha256=2HUXVVwA4Pff1xgTFr3GsTXXKaPaO6vlG6oNJ_4u4Tg,38 +setuptools-47.1.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +setuptools/__init__.py,sha256=olFlX8bEJQQXQce__CbY0RxyHxZJATVbYi_GWJuYXQg,7341 +setuptools/__pycache__/__init__.cpython-37.pyc,, +setuptools/__pycache__/_deprecation_warning.cpython-37.pyc,, +setuptools/__pycache__/_imp.cpython-37.pyc,, +setuptools/__pycache__/archive_util.cpython-37.pyc,, +setuptools/__pycache__/build_meta.cpython-37.pyc,, +setuptools/__pycache__/config.cpython-37.pyc,, +setuptools/__pycache__/dep_util.cpython-37.pyc,, +setuptools/__pycache__/depends.cpython-37.pyc,, +setuptools/__pycache__/dist.cpython-37.pyc,, +setuptools/__pycache__/errors.cpython-37.pyc,, +setuptools/__pycache__/extension.cpython-37.pyc,, +setuptools/__pycache__/glob.cpython-37.pyc,, +setuptools/__pycache__/installer.cpython-37.pyc,, +setuptools/__pycache__/launch.cpython-37.pyc,, +setuptools/__pycache__/lib2to3_ex.cpython-37.pyc,, +setuptools/__pycache__/monkey.cpython-37.pyc,, +setuptools/__pycache__/msvc.cpython-37.pyc,, +setuptools/__pycache__/namespaces.cpython-37.pyc,, +setuptools/__pycache__/package_index.cpython-37.pyc,, +setuptools/__pycache__/py27compat.cpython-37.pyc,, +setuptools/__pycache__/py31compat.cpython-37.pyc,, +setuptools/__pycache__/py33compat.cpython-37.pyc,, +setuptools/__pycache__/py34compat.cpython-37.pyc,, +setuptools/__pycache__/sandbox.cpython-37.pyc,, +setuptools/__pycache__/site-patch.cpython-37.pyc,, +setuptools/__pycache__/ssl_support.cpython-37.pyc,, +setuptools/__pycache__/unicode_utils.cpython-37.pyc,, +setuptools/__pycache__/version.cpython-37.pyc,, +setuptools/__pycache__/wheel.cpython-37.pyc,, +setuptools/__pycache__/windows_support.cpython-37.pyc,, +setuptools/_deprecation_warning.py,sha256=jU9-dtfv6cKmtQJOXN8nP1mm7gONw5kKEtiPtbwnZyI,218 +setuptools/_imp.py,sha256=Qx0LJzEBaWk_6PfICamJtfBN2rh5K9sJq1wXvtZW-mc,2388 +setuptools/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +setuptools/_vendor/__pycache__/__init__.cpython-37.pyc,, +setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc,, +setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc,, +setuptools/_vendor/__pycache__/six.cpython-37.pyc,, +setuptools/_vendor/ordered_set.py,sha256=dbaCcs27dyN9gnMWGF5nA_BrVn6Q-NrjKYJpV9_fgBs,15130 +setuptools/_vendor/packaging/__about__.py,sha256=CpuMSyh1V7adw8QMjWKkY3LtdqRUkRX4MgJ6nF4stM0,744 +setuptools/_vendor/packaging/__init__.py,sha256=6enbp5XgRfjBjsI9-bn00HjHf5TH21PDMOKkJW8xw-w,562 +setuptools/_vendor/packaging/__pycache__/__about__.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc,, +setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc,, +setuptools/_vendor/packaging/_compat.py,sha256=Ugdm-qcneSchW25JrtMIKgUxfEEBcCAz6WrEeXeqz9o,865 +setuptools/_vendor/packaging/_structures.py,sha256=pVd90XcXRGwpZRB_qdFuVEibhCHpX_bL5zYr9-N0mc8,1416 +setuptools/_vendor/packaging/markers.py,sha256=-meFl9Fr9V8rF5Rduzgett5EHK9wBYRUqssAV2pj0lw,8268 +setuptools/_vendor/packaging/requirements.py,sha256=3dwIJekt8RRGCUbgxX8reeAbgmZYjb0wcCRtmH63kxI,4742 +setuptools/_vendor/packaging/specifiers.py,sha256=0ZzQpcUnvrQ6LjR-mQRLzMr8G6hdRv-mY0VSf_amFtI,27778 +setuptools/_vendor/packaging/tags.py,sha256=EPLXhO6GTD7_oiWEO1U0l0PkfR8R_xivpMDHXnsTlts,12933 +setuptools/_vendor/packaging/utils.py,sha256=VaTC0Ei7zO2xl9ARiWmz2YFLFt89PuuhLbAlXMyAGms,1520 +setuptools/_vendor/packaging/version.py,sha256=Npdwnb8OHedj_2L86yiUqscujb7w_i5gmSK1PhOAFzg,11978 +setuptools/_vendor/pyparsing.py,sha256=tmrp-lu-qO1i75ZzIN5A12nKRRD1Cm4Vpk-5LR9rims,232055 +setuptools/_vendor/six.py,sha256=A6hdJZVjI3t_geebZ9BzUvwRrIXo0lfwzQlM2LcKyas,30098 +setuptools/archive_util.py,sha256=2VqSBaoRomeA2al-hYnyB-33ehP4exrknpZNy7qWin0,6626 +setuptools/build_meta.py,sha256=n3-3HF0uKfFAzNP02yz2V7q1ydlPaQ1b_IxHG33yWjU,9960 +setuptools/cli-32.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536 +setuptools/cli-64.exe,sha256=KLABu5pyrnokJCv6skjXZ6GsXeyYHGcqOUT3oHI3Xpo,74752 +setuptools/cli.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536 +setuptools/command/__init__.py,sha256=QCAuA9whnq8Bnoc0bBaS6Lw_KAUO0DiHYZQXEMNn5hg,568 +setuptools/command/__pycache__/__init__.cpython-37.pyc,, +setuptools/command/__pycache__/alias.cpython-37.pyc,, +setuptools/command/__pycache__/bdist_egg.cpython-37.pyc,, +setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc,, +setuptools/command/__pycache__/bdist_wininst.cpython-37.pyc,, +setuptools/command/__pycache__/build_clib.cpython-37.pyc,, +setuptools/command/__pycache__/build_ext.cpython-37.pyc,, +setuptools/command/__pycache__/build_py.cpython-37.pyc,, +setuptools/command/__pycache__/develop.cpython-37.pyc,, +setuptools/command/__pycache__/dist_info.cpython-37.pyc,, +setuptools/command/__pycache__/easy_install.cpython-37.pyc,, +setuptools/command/__pycache__/egg_info.cpython-37.pyc,, +setuptools/command/__pycache__/install.cpython-37.pyc,, +setuptools/command/__pycache__/install_egg_info.cpython-37.pyc,, +setuptools/command/__pycache__/install_lib.cpython-37.pyc,, +setuptools/command/__pycache__/install_scripts.cpython-37.pyc,, +setuptools/command/__pycache__/py36compat.cpython-37.pyc,, +setuptools/command/__pycache__/register.cpython-37.pyc,, +setuptools/command/__pycache__/rotate.cpython-37.pyc,, +setuptools/command/__pycache__/saveopts.cpython-37.pyc,, +setuptools/command/__pycache__/sdist.cpython-37.pyc,, +setuptools/command/__pycache__/setopt.cpython-37.pyc,, +setuptools/command/__pycache__/test.cpython-37.pyc,, +setuptools/command/__pycache__/upload.cpython-37.pyc,, +setuptools/command/__pycache__/upload_docs.cpython-37.pyc,, +setuptools/command/alias.py,sha256=KjpE0sz_SDIHv3fpZcIQK-sCkJz-SrC6Gmug6b9Nkc8,2426 +setuptools/command/bdist_egg.py,sha256=ozITJYsQaxztvsQYZisp9CJqken1ed_EIYci8qgmorU,18406 +setuptools/command/bdist_rpm.py,sha256=B7l0TnzCGb-0nLlm6rS00jWLkojASwVmdhW2w5Qz_Ak,1508 +setuptools/command/bdist_wininst.py,sha256=Tmqa9wW0F8i_72KHWpu9pDdnCN6Er_8uJUs2UmCAwTA,922 +setuptools/command/build_clib.py,sha256=fWHSFGkk10VCddBWCszvNhowbG9Z9CZXVjQ2uSInoOs,4415 +setuptools/command/build_ext.py,sha256=X7dGN2BEoRGvm2jkIcPQvLnKzdDiqhHvVXb5uNY9cdw,13048 +setuptools/command/build_py.py,sha256=fho10QRGOaJcc3vttQ5vk5KYMV6HdZwj9HUIob6NHDM,9737 +setuptools/command/develop.py,sha256=B3-ImHP30Bxnqx-s_9Dp-fxtHhE245ACE1W5hmKY9xE,8188 +setuptools/command/dist_info.py,sha256=5t6kOfrdgALT-P3ogss6PF9k-Leyesueycuk3dUyZnI,960 +setuptools/command/easy_install.py,sha256=EoKWBUyfUGkHv7Qzbd-YNzl9y3HgR9__1TI9Bmh5ItI,87657 +setuptools/command/egg_info.py,sha256=0mb9iAyE5yEMoIQxLcW_PSPEqTZOX2POFxaXGJHuvT8,25548 +setuptools/command/install.py,sha256=8doMxeQEDoK4Eco0mO2WlXXzzp9QnsGJQ7Z7yWkZPG8,4705 +setuptools/command/install_egg_info.py,sha256=bMgeIeRiXzQ4DAGPV1328kcjwQjHjOWU4FngAWLV78Q,2203 +setuptools/command/install_lib.py,sha256=Uz42McsyHZAjrB6cw9E7Bz0xsaTbzxnM1PI9CBhiPtE,3875 +setuptools/command/install_scripts.py,sha256=x7sdEICuyFpaf5LuWXcTp49oYt8EeNbwKkW2Pv-TVXI,2519 +setuptools/command/launcher manifest.xml,sha256=xlLbjWrB01tKC0-hlVkOKkiSPbzMml2eOPtJ_ucCnbE,628 +setuptools/command/py36compat.py,sha256=TKqF6CPv-vsEFpOJUYmjBzmck-mCv_zHJMXO500PEAI,4994 +setuptools/command/register.py,sha256=kk3DxXCb5lXTvqnhfwx2g6q7iwbUmgTyXUCaBooBOUk,468 +setuptools/command/rotate.py,sha256=co5C1EkI7P0GGT6Tqz-T2SIj2LBJTZXYELpmao6d4KQ,2164 +setuptools/command/saveopts.py,sha256=za7QCBcQimKKriWcoCcbhxPjUz30gSB74zuTL47xpP4,658 +setuptools/command/sdist.py,sha256=14kBw_QOZ9L_RQDqgf9DAlEuoj0zC30X5mfDWeiyZwU,8092 +setuptools/command/setopt.py,sha256=NTWDyx-gjDF-txf4dO577s7LOzHVoKR0Mq33rFxaRr8,5085 +setuptools/command/test.py,sha256=okVw2id6qYh8hFAVGziX6dEYekAbaYfMtEx7XhgsSbg,9623 +setuptools/command/upload.py,sha256=XT3YFVfYPAmA5qhGg0euluU98ftxRUW-PzKcODMLxUs,462 +setuptools/command/upload_docs.py,sha256=G2gHjeNPcUGe_pr3EEk_6AoVD0E6nCp52mZgU2nkCpU,7314 +setuptools/config.py,sha256=hY4kYv_ErKBLcz5HyOQHtLJvWKXvMAinboADYE9suOo,21757 +setuptools/dep_util.py,sha256=BDx1BkzNQntvAB4alypHbW5UVBzjqths000PrUL4Zqc,949 +setuptools/depends.py,sha256=qt2RWllArRvhnm8lxsyRpcthEZYp4GHQgREl1q0LkFw,5517 +setuptools/dist.py,sha256=OfBnX-zJFlDA-QRO7OGitdTi_eEVKaiirbxyYeVx1nI,39211 +setuptools/errors.py,sha256=MVOcv381HNSajDgEUWzOQ4J6B5BHCBMSjHfaWcEwA1o,524 +setuptools/extension.py,sha256=uc6nHI-MxwmNCNPbUiBnybSyqhpJqjbhvOQ-emdvt_E,1729 +setuptools/extern/__init__.py,sha256=BilMS9Hq18nBaUOzcCrzoI9HnIhju45iVJBscqTqlDI,2128 +setuptools/extern/__pycache__/__init__.cpython-37.pyc,, +setuptools/glob.py,sha256=o75cHrOxYsvn854thSxE0x9k8JrKDuhP_rRXlVB00Q4,5084 +setuptools/gui-32.exe,sha256=XBr0bHMA6Hpz2s9s9Bzjl-PwXfa9nH4ie0rFn4V2kWA,65536 +setuptools/gui-64.exe,sha256=aYKMhX1IJLn4ULHgWX0sE0yREUt6B3TEHf_jOw6yNyE,75264 +setuptools/gui.exe,sha256=XBr0bHMA6Hpz2s9s9Bzjl-PwXfa9nH4ie0rFn4V2kWA,65536 +setuptools/installer.py,sha256=8_Anc1VxnB92XKZjVmEAf8zfTfmjdv1cUPuTxHX_Q1I,5336 +setuptools/launch.py,sha256=sd7ejwhBocCDx_wG9rIs0OaZ8HtmmFU8ZC6IR_S0Lvg,787 +setuptools/lib2to3_ex.py,sha256=lrjhfs4QVtWp65PuATWjPBcXxwubg9d81e0qrv0qOpI,2384 +setuptools/monkey.py,sha256=FGc9fffh7gAxMLFmJs2DW_OYWpBjkdbNS2n14UAK4NA,5264 +setuptools/msvc.py,sha256=Np7hXrKnn3EzqV3TQBOVDejhrveWrOQOgflAWgI2PGU,50989 +setuptools/namespaces.py,sha256=QuvIR8S5-u_S8_fLjPpn_utruUIsu2twdRu_KJPrKU0,3223 +setuptools/package_index.py,sha256=C3pcRc1tM6OFExcy9DxLqKIPS25GiNjfzoKqaI5vZGQ,40737 +setuptools/py27compat.py,sha256=CWHkWWAYodu3QgiIAr8-34T-G6fiSgiVF0y7h11Ld7U,1504 +setuptools/py31compat.py,sha256=h2rtZghOfwoGYd8sQ0-auaKiF3TcL3qX0bX3VessqcE,838 +setuptools/py33compat.py,sha256=SMF9Z8wnGicTOkU1uRNwZ_kz5Z_bj29PUBbqdqeeNsc,1330 +setuptools/py34compat.py,sha256=KYOd6ybRxjBW8NJmYD8t_UyyVmysppFXqHpFLdslGXU,245 +setuptools/sandbox.py,sha256=TbqKGiEXwfLYrpQhd863Dch3_yGhOmlAkhCiBYaw-ec,14284 +setuptools/script (dev).tmpl,sha256=RUzQzCQUaXtwdLtYHWYbIQmOaES5Brqq1FvUA_tu-5I,218 +setuptools/script.tmpl,sha256=WGTt5piezO27c-Dbx6l5Q4T3Ff20A5z7872hv3aAhYY,138 +setuptools/site-patch.py,sha256=25aScCA0GXCqUtSCbv386cTSbBl_u_kp_DJTnJssh-E,2346 +setuptools/ssl_support.py,sha256=TNNOq3VyV-4wkRwm0dmyIzF-iXBeWv4yIQ99eWa_bV8,8543 +setuptools/unicode_utils.py,sha256=NOiZ_5hD72A6w-4wVj8awHFM3n51Kmw1Ic_vx15XFqw,996 +setuptools/version.py,sha256=og_cuZQb0QI6ukKZFfZWPlr1HgJBPPn2vO2m_bI9ZTE,144 +setuptools/wheel.py,sha256=YLN2fczDVxkX3wjHlt_EMh-4MfHO6Ns6ldRpnkn-aa8,8371 +setuptools/windows_support.py,sha256=5GrfqSP2-dLGJoZTq2g6dCKkyQxxa2n5IQiXlJCoYEE,714 diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/WHEEL b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/WHEEL new file mode 100644 index 0000000..3b5c403 --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.33.6) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/dependency_links.txt b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/dependency_links.txt new file mode 100644 index 0000000..e87d021 --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/dependency_links.txt @@ -0,0 +1,2 @@ +https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d +https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/entry_points.txt b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/entry_points.txt new file mode 100644 index 0000000..f57c6d2 --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/entry_points.txt @@ -0,0 +1,68 @@ +[console_scripts] +easy_install = setuptools.command.easy_install:main +easy_install-3.8 = setuptools.command.easy_install:main + +[distutils.commands] +alias = setuptools.command.alias:alias +bdist_egg = setuptools.command.bdist_egg:bdist_egg +bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm +bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst +build_clib = setuptools.command.build_clib:build_clib +build_ext = setuptools.command.build_ext:build_ext +build_py = setuptools.command.build_py:build_py +develop = setuptools.command.develop:develop +dist_info = setuptools.command.dist_info:dist_info +easy_install = setuptools.command.easy_install:easy_install +egg_info = setuptools.command.egg_info:egg_info +install = setuptools.command.install:install +install_egg_info = setuptools.command.install_egg_info:install_egg_info +install_lib = setuptools.command.install_lib:install_lib +install_scripts = setuptools.command.install_scripts:install_scripts +rotate = setuptools.command.rotate:rotate +saveopts = setuptools.command.saveopts:saveopts +sdist = setuptools.command.sdist:sdist +setopt = setuptools.command.setopt:setopt +test = setuptools.command.test:test +upload_docs = setuptools.command.upload_docs:upload_docs + +[distutils.setup_keywords] +convert_2to3_doctests = setuptools.dist:assert_string_list +dependency_links = setuptools.dist:assert_string_list +eager_resources = setuptools.dist:assert_string_list +entry_points = setuptools.dist:check_entry_points +exclude_package_data = setuptools.dist:check_package_data +extras_require = setuptools.dist:check_extras +include_package_data = setuptools.dist:assert_bool +install_requires = setuptools.dist:check_requirements +namespace_packages = setuptools.dist:check_nsp +package_data = setuptools.dist:check_package_data +packages = setuptools.dist:check_packages +python_requires = setuptools.dist:check_specifier +setup_requires = setuptools.dist:check_requirements +test_loader = setuptools.dist:check_importable +test_runner = setuptools.dist:check_importable +test_suite = setuptools.dist:check_test_suite +tests_require = setuptools.dist:check_requirements +use_2to3 = setuptools.dist:assert_bool +use_2to3_exclude_fixers = setuptools.dist:assert_string_list +use_2to3_fixers = setuptools.dist:assert_string_list +zip_safe = setuptools.dist:assert_bool + +[egg_info.writers] +PKG-INFO = setuptools.command.egg_info:write_pkg_info +dependency_links.txt = setuptools.command.egg_info:overwrite_arg +depends.txt = setuptools.command.egg_info:warn_depends_obsolete +eager_resources.txt = setuptools.command.egg_info:overwrite_arg +entry_points.txt = setuptools.command.egg_info:write_entries +namespace_packages.txt = setuptools.command.egg_info:overwrite_arg +requires.txt = setuptools.command.egg_info:write_requirements +top_level.txt = setuptools.command.egg_info:write_toplevel_names + +[setuptools.finalize_distribution_options] +2to3_doctests = setuptools.dist:Distribution._finalize_2to3_doctests +keywords = setuptools.dist:Distribution._finalize_setup_keywords +parent_finalize = setuptools.dist:_Distribution.finalize_options + +[setuptools.installation] +eggsecutable = setuptools.command.easy_install:bootstrap + diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/top_level.txt b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/top_level.txt new file mode 100644 index 0000000..4577c6a --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/top_level.txt @@ -0,0 +1,3 @@ +easy_install +pkg_resources +setuptools diff --git a/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/zip-safe b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/python_gui/可执行文件_main/setuptools-47.1.0.dist-info/zip-safe @@ -0,0 +1 @@ + diff --git a/python_gui/可执行文件_main/ucrtbase.dll b/python_gui/可执行文件_main/ucrtbase.dll new file mode 100644 index 0000000..f6848cd Binary files /dev/null and b/python_gui/可执行文件_main/ucrtbase.dll differ diff --git a/python_gui/可执行文件_main/unicodedata.pyd b/python_gui/可执行文件_main/unicodedata.pyd new file mode 100644 index 0000000..754bb58 Binary files /dev/null and b/python_gui/可执行文件_main/unicodedata.pyd differ