commit bf671dcf592685f649da21212d915b6612ff43ef Author: lichong <18518571399@163.com> Date: Mon Nov 25 20:10:33 2024 +0800 11.25 diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3dce414 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d920a1f --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +node_modules +dist +out +*.log* +package-lock.json diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..fdc1a98 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/ diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..9c6b791 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,6 @@ +out +dist +pnpm-lock.yaml +LICENSE.md +tsconfig.json +tsconfig.*.json diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..f3050e8 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "singleQuote": true, + "semi": false, + "printWidth": 100, + "trailingComma": "none" +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..169e509 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# my-app + +An Electron application with Vue + +## Recommended IDE Setup + +- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) + +## Project Setup + +### Install(node 16.20.1) + +```bash +$ npm install +``` + +### Development + +```bash +$ npm run dev +``` + +### Build + +```bash +# For windows +$ npm run build:win + +# For macOS +$ npm run build:mac + +# For Linux +$ npm run build:linux +``` diff --git a/build/entitlements.mac.plist b/build/entitlements.mac.plist new file mode 100644 index 0000000..38c887b --- /dev/null +++ b/build/entitlements.mac.plist @@ -0,0 +1,12 @@ + + + + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-unsigned-executable-memory + + com.apple.security.cs.allow-dyld-environment-variables + + + diff --git a/build/icon.icns b/build/icon.icns new file mode 100644 index 0000000..63d4bb7 Binary files /dev/null and b/build/icon.icns differ diff --git a/build/icon.ico b/build/icon.ico new file mode 100644 index 0000000..6441ff6 Binary files /dev/null and b/build/icon.ico differ diff --git a/build/notarize.js b/build/notarize.js new file mode 100644 index 0000000..116e5e0 --- /dev/null +++ b/build/notarize.js @@ -0,0 +1,36 @@ +const { notarize } = require('electron-notarize') + +module.exports = async (context) => { + if (process.platform !== 'darwin') return + + console.log('aftersign hook triggered, start to notarize app.') + + if (!process.env.CI) { + console.log(`skipping notarizing, not in CI.`) + return + } + + if (!('APPLE_ID' in process.env && 'APPLE_ID_PASS' in process.env)) { + console.warn('skipping notarizing, APPLE_ID and APPLE_ID_PASS env variables must be set.') + return + } + + const appId = 'com.electron.app' + + const { appOutDir } = context + + const appName = context.packager.appInfo.productFilename + + try { + await notarize({ + appBundleId: appId, + appPath: `${appOutDir}/${appName}.app`, + appleId: process.env.APPLE_ID, + appleIdPassword: process.env.APPLEIDPASS + }) + } catch (error) { + console.error(error) + } + + console.log(`done notarizing ${appId}.`) +} diff --git a/electron-builder.yml b/electron-builder.yml new file mode 100644 index 0000000..9a6473a --- /dev/null +++ b/electron-builder.yml @@ -0,0 +1,43 @@ +appId: com.electron.lichong +productName: 档案管理 +directories: + buildResources: build +files: + - '!**/.vscode/*' + - '!src/*' + - '!electron.vite.config.{js,ts,mjs,cjs}' + - '!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}' +asarUnpack: + - '**/*.{node,dll}' +afterSign: build/notarize.js +win: + executableName: lichong-app +nsis: + oneClick: false + artifactName: 档案管理-${version}-setup.${ext} + allowToChangeInstallationDirectory: true + shortcutName: ${productName} + uninstallDisplayName: ${productName} + createDesktopShortcut: always +mac: + entitlementsInherit: build/entitlements.mac.plist + extendInfo: + - NSCameraUsageDescription: Application requests access to the device's camera. + - NSMicrophoneUsageDescription: Application requests access to the device's microphone. + - NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder. + - NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder. +dmg: + artifactName: ${name}-${version}.${ext} +linux: + target: + - AppImage + - snap + - deb + maintainer: electronjs.org + category: Utility +appImage: + artifactName: ${name}-${version}.${ext} +npmRebuild: false +publish: + provider: generic + url: https://example.com/auto-updates diff --git a/electron.vite.config.js b/electron.vite.config.js new file mode 100644 index 0000000..152a70d --- /dev/null +++ b/electron.vite.config.js @@ -0,0 +1,28 @@ +import { resolve } from 'path' +import { defineConfig, externalizeDepsPlugin } from 'electron-vite' +import vue from '@vitejs/plugin-vue' + +export default defineConfig({ + main: { + plugins: [externalizeDepsPlugin()] + }, + preload: { + plugins: [externalizeDepsPlugin()], + build: { + rollupOptions: { + input: { + dl: resolve(__dirname, 'src/preload/dl.js'), + index: resolve(__dirname, 'src/preload/index.js') + } + } + } + }, + renderer: { + resolve: { + alias: { + '@renderer': resolve('src/renderer/src') + } + }, + plugins: [vue()] + } +}) diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..b50f09d --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,6 @@ +{ + "exclude": [ + "node_modules", + "public" + ] +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..6e3525a --- /dev/null +++ b/package.json @@ -0,0 +1,42 @@ +{ + "name": "electron", + "version": "1.0.5", + "description": "An Electron application with Vue", + "main": "./out/main/index.js", + "author": "lichong", + "homepage": "https://www.electronjs.org", + "scripts": { + "npmi": "npm i", + "dev": "electron-vite dev", + "build": "electron-vite build", + "build:win": "npm run build && electron-builder --win --config", + "build:mac": "npm run build && electron-builder --mac --config", + "build:linux": "npm run build && electron-builder --linux --config" + }, + "dependencies": { + "@electron-toolkit/preload": "^1.0.2", + "@electron-toolkit/utils": "^1.0.2", + "dayjs": "^1.11.11", + "dexie": "^4.0.8", + "element-plus": "^2.7.1", + "js-sha256": "^0.11.0", + "lodash": "^4.17.21", + "node-machine-id": "^1.1.12", + "vue-web-screen-shot": "^1.5.3", + "vxe-table": "^4.7.87", + "xlsx": "^0.18.5" + }, + "devDependencies": { + "@rushstack/eslint-patch": "^1.2.0", + "@vitejs/plugin-vue": "^3.1.2", + "@vue/eslint-config-prettier": "^7.0.0", + "electron": "^20.3.2", + "electron-builder": "^23.6.0", + "electron-notarize": "^1.2.1", + "electron-vite": "^1.0.11", + "less": "^4.1.3", + "prettier": "^2.7.1", + "vite": "^3.1.8", + "vue": "^3.2.41" + } +} diff --git a/public/icon/icon.jpg b/public/icon/icon.jpg new file mode 100644 index 0000000..4ed6253 Binary files /dev/null and b/public/icon/icon.jpg differ diff --git a/src/main/index.js b/src/main/index.js new file mode 100644 index 0000000..029b6a9 --- /dev/null +++ b/src/main/index.js @@ -0,0 +1,73 @@ +import { app, shell, BrowserWindow, nativeImage, ipcMain } from 'electron' +import * as path from 'path' +import { electronApp, optimizer, is } from '@electron-toolkit/utils' +import { machineIdSync } from 'node-machine-id'; + +// logo +const logoIcon = nativeImage.createFromPath(path.join(__dirname, '../../public/icon/icon.jpg')) +// 主窗口 +let mainWindow +function createWindow() { + mainWindow = new BrowserWindow({ + minWidth: 1366, + minHeight: 900, + height: 1260, + show: false, + autoHideMenuBar: true, + icon: logoIcon, + webPreferences: { + preload: path.resolve(__dirname, '../preload/index.js'), + sandbox: false + } + }) + mainWindow.on('ready-to-show', () => { + mainWindow.show() + // mainWindow.webContents.openDevTools() + }) + mainWindow.webContents.setWindowOpenHandler((details) => { + shell.openExternal(details.url) + return { action: 'deny' } + }) + // mainWindow.loadURL('http://localhost:5173/') + + mainWindow.on('close', () => { + app.exit() + }) + if (is.dev && process.env['ELECTRON_RENDERER_URL']) { + mainWindow.loadURL(process.env['ELECTRON_RENDERER_URL']) + } else { + mainWindow.loadFile(path.join(__dirname, '../renderer/index.html')) + } +} +app.whenReady().then(() => { + electronApp.setAppUserModelId('com.electron') + // Default open or close DevTools by F12 in development + // and ignore CommandOrControl + R in production. + // see https://github.com/alex8088/electron-toolkit/tree/master/packages/utils + app.on('browser-window-created', (_, window) => { + optimizer.watchWindowShortcuts(window) + }) + + createWindow() + + app.on('activate', function () { + // On macOS it's common to re-create a window in the app when the + // dock icon is clicked and there are no other windows open. + if (BrowserWindow.getAllWindows().length === 0) createWindow() + }) + ipcMain.on('deviceIdentify', () => { + let res = machineIdSync() + mainWindow.webContents.send(`deviceResult`, res) + }) +}) +app.commandLine.appendSwitch('autoplay-policy', 'no-user-gesture-required'); +// Quit when all windows are closed, except on macOS. There, it's common +// for applications and their menu bar to stay active until the user quits +// explicitly with Cmd + Q. +app.on('window-all-closed', () => { + if (process.platform !== 'darwin') { + app.quit() + } +}) +// In this file you can include the rest of your app"s specific main process +// code. You can also put them in separate files and require them here. diff --git a/src/preload/dl.js b/src/preload/dl.js new file mode 100644 index 0000000..2604961 --- /dev/null +++ b/src/preload/dl.js @@ -0,0 +1,21 @@ +import { contextBridge, clipboard } from 'electron' +import { electronAPI } from '@electron-toolkit/preload' + +// Custom APIs for renderer +const api = {} + +// Use `contextBridge` APIs to expose Electron APIs to +// renderer only if context isolation is enabled, otherwise +// just add to the DOM global. +if (process.contextIsolated) { + try { + contextBridge.exposeInMainWorld('electron', electronAPI) + contextBridge.exposeInMainWorld('api', api) + contextBridge.exposeInMainWorld('elecClipboard', clipboard) + } catch (error) { + console.error(error) + } +} else { + window.electron = electronAPI + window.api = api +} diff --git a/src/preload/index.js b/src/preload/index.js new file mode 100644 index 0000000..2604961 --- /dev/null +++ b/src/preload/index.js @@ -0,0 +1,21 @@ +import { contextBridge, clipboard } from 'electron' +import { electronAPI } from '@electron-toolkit/preload' + +// Custom APIs for renderer +const api = {} + +// Use `contextBridge` APIs to expose Electron APIs to +// renderer only if context isolation is enabled, otherwise +// just add to the DOM global. +if (process.contextIsolated) { + try { + contextBridge.exposeInMainWorld('electron', electronAPI) + contextBridge.exposeInMainWorld('api', api) + contextBridge.exposeInMainWorld('elecClipboard', clipboard) + } catch (error) { + console.error(error) + } +} else { + window.electron = electronAPI + window.api = api +} diff --git a/src/renderer/index.html b/src/renderer/index.html new file mode 100644 index 0000000..b2c3adb --- /dev/null +++ b/src/renderer/index.html @@ -0,0 +1,18 @@ + + + + + + 档案管理 + + + + + + +
+ + + + \ No newline at end of file diff --git a/src/renderer/src/App.vue b/src/renderer/src/App.vue new file mode 100644 index 0000000..aa16b7f --- /dev/null +++ b/src/renderer/src/App.vue @@ -0,0 +1,137 @@ + + + + \ No newline at end of file diff --git a/src/renderer/src/assets/css/base.css b/src/renderer/src/assets/css/base.css new file mode 100644 index 0000000..eb036c9 --- /dev/null +++ b/src/renderer/src/assets/css/base.css @@ -0,0 +1,13 @@ +html, +body { + margin: 0; + padding: 0; +} + +.red { + color: #f56c6c; +} + +.blue { + color: #409eff; +} \ No newline at end of file diff --git a/src/renderer/src/assets/js/db.js b/src/renderer/src/assets/js/db.js new file mode 100644 index 0000000..2fbc0ca --- /dev/null +++ b/src/renderer/src/assets/js/db.js @@ -0,0 +1,9 @@ +import Dexie from 'dexie'; + +export const myDatabase = new Dexie('myDatabase'); + +// 定义数据库版本 +myDatabase.version(1).stores({ + student: '++id, nianjicode, banjicode, nianji, banji, &xuejihao, minzudaima, minzu, name, gender, birth, address, height, weight, BMI, BMIscore, lungs, lungsscore, fifty, fiftyscore, sitforward, sitforwardscore, jump, jumpscore, situp, situpscore, fiftyeight, fiftyeightscore, stand, standscore, eighty, eightyscore, thousand ,thousandscore, pullup, pullupscore, totalScore, level, note1, nodt2, create_at, update_at', + jihuoshijian: '++id, jihuoma, isVip, zhucema, create_at, update_at' +}); \ No newline at end of file diff --git a/src/renderer/src/assets/json/jifen.json b/src/renderer/src/assets/json/jifen.json new file mode 100644 index 0000000..62c2090 --- /dev/null +++ b/src/renderer/src/assets/json/jifen.json @@ -0,0 +1,6144 @@ +{ + "BMIscore": { + "prop": "BMI", + "fuhao": "<=", + "list": [ + { + "11": 13.4, + "12": 13.6, + "13": 13.8, + "14": 14.1, + "15": 14.3, + "16": 14.6, + "21": 15.4, + "22": 15.6, + "23": 15.7, + "31": 16.4, + "32": 16.7, + "33": 17.2, + "41": 17.8, + "score": 80, + "gender": 1 + }, + { + "11": 18.1, + "12": 18.4, + "13": 19.4, + "14": 20.1, + "15": 21.4, + "16": 21.8, + "21": 22.1, + "22": 22.5, + "23": 22.8, + "31": 23.2, + "32": 23.7, + "33": 23.8, + "41": 23.9, + "score": 100, + "gender": 1 + }, + { + "11": 20.3, + "12": 20.4, + "13": 22.1, + "14": 22.6, + "15": 24.1, + "16": 24.5, + "21": 24.9, + "22": 25.2, + "23": 26, + "31": 26.3, + "32": 26.5, + "33": 27.3, + "41": 27.9, + "score": 80, + "gender": 1 + }, + { + "11": 999999, + "12": 999999, + "13": 999999, + "14": 999999, + "15": 999999, + "16": 999999, + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "score": 60, + "gender": 1 + }, + { + "11": 13.2, + "12": 13.4, + "13": 13.5, + "14": 13.6, + "15": 13.7, + "16": 14.1, + "21": 14.7, + "22": 15.2, + "23": 15.9, + "31": 16.4, + "32": 16.8, + "33": 17, + "41": 17.1, + "score": 80, + "gender": 2 + }, + { + "11": 17.3, + "12": 17.8, + "13": 18.6, + "14": 19.4, + "15": 20.5, + "16": 20.8, + "21": 21.7, + "22": 22.2, + "23": 22.6, + "31": 22.7, + "32": 23.2, + "33": 23.3, + "41": 23.9, + "score": 100, + "gender": 2 + }, + { + "11": 19.2, + "12": 20.2, + "13": 21.1, + "14": 22, + "15": 22.9, + "16": 23.6, + "21": 24.4, + "22": 24.8, + "23": 25.1, + "31": 25.2, + "32": 25.4, + "33": 25.7, + "41": 27.9, + "score": 80, + "gender": 2 + }, + { + "11": 999999, + "12": 999999, + "13": 999999, + "14": 999999, + "15": 999999, + "16": 999999, + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "score": 60, + "gender": 2 + } + ] + }, + "lungsscore": { + "prop": "lungs", + "fuhao": ">=", + "list": [ + { + "11": 1700, + "12": 2000, + "13": 2300, + "14": 2600, + "15": 2900, + "16": 3200, + "21": 3640, + "22": 3940, + "23": 4240, + "31": 4540, + "32": 4740, + "33": 4940, + "41": 5040, + "42": 5140, + "score": 100, + "gender": 1 + }, + { + "11": 1600, + "12": 1900, + "13": 2200, + "14": 2500, + "15": 2800, + "16": 3100, + "21": 3520, + "22": 3820, + "23": 4120, + "31": 4420, + "32": 4620, + "33": 4820, + "41": 4920, + "42": 5020, + "score": 95, + "gender": 1 + }, + { + "11": 1500, + "12": 1800, + "13": 2100, + "14": 2400, + "15": 2700, + "16": 3000, + "21": 3400, + "22": 3700, + "23": 4000, + "31": 4300, + "32": 4500, + "33": 4700, + "41": 4800, + "42": 4900, + "score": 90, + "gender": 1 + }, + { + "11": 1400, + "12": 1650, + "13": 1900, + "14": 2150, + "15": 2450, + "16": 2750, + "21": 3150, + "22": 3450, + "23": 3750, + "31": 4050, + "32": 4250, + "33": 4450, + "41": 4550, + "42": 4650, + "score": 85, + "gender": 1 + }, + { + "11": 1300, + "12": 1500, + "13": 1700, + "14": 1900, + "15": 2200, + "16": 2500, + "21": 2900, + "22": 3200, + "23": 3500, + "31": 3800, + "32": 4000, + "33": 4200, + "41": 4300, + "42": 4400, + "score": 80, + "gender": 1 + }, + { + "11": 1240, + "12": 1430, + "13": 1620, + "14": 1820, + "15": 2110, + "16": 2400, + "21": 2780, + "22": 3080, + "23": 3380, + "31": 3680, + "32": 3880, + "33": 4080, + "41": 4180, + "42": 4280, + "score": 78, + "gender": 1 + }, + { + "11": 1180, + "12": 1360, + "13": 1540, + "14": 1740, + "15": 2020, + "16": 2300, + "21": 2660, + "22": 2960, + "23": 3260, + "31": 3560, + "32": 3760, + "33": 3960, + "41": 4060, + "42": 4160, + "score": 76, + "gender": 1 + }, + { + "11": 1120, + "12": 1290, + "13": 1460, + "14": 1660, + "15": 1930, + "16": 2200, + "21": 2540, + "22": 2840, + "23": 3140, + "31": 3440, + "32": 3640, + "33": 3840, + "41": 3940, + "42": 4040, + "score": 74, + "gender": 1 + }, + { + "11": 1060, + "12": 1220, + "13": 1380, + "14": 1580, + "15": 1840, + "16": 2100, + "21": 2420, + "22": 2720, + "23": 3020, + "31": 3320, + "32": 3520, + "33": 3720, + "41": 3820, + "42": 3920, + "score": 72, + "gender": 1 + }, + { + "11": 1000, + "12": 1150, + "13": 1300, + "14": 1500, + "15": 1750, + "16": 2000, + "21": 2300, + "22": 2600, + "23": 2900, + "31": 3200, + "32": 3400, + "33": 3600, + "41": 3700, + "42": 3800, + "score": 70, + "gender": 1 + }, + { + "11": 940, + "12": 1080, + "13": 1220, + "14": 1420, + "15": 1660, + "16": 1900, + "21": 2180, + "22": 2480, + "23": 2780, + "31": 3080, + "32": 3280, + "33": 3480, + "41": 3580, + "42": 3680, + "score": 68, + "gender": 1 + }, + { + "11": 880, + "12": 1010, + "13": 1140, + "14": 1340, + "15": 1570, + "16": 1800, + "21": 2060, + "22": 2360, + "23": 2660, + "31": 2960, + "32": 3160, + "33": 3360, + "41": 3460, + "42": 3560, + "score": 66, + "gender": 1 + }, + { + "11": 820, + "12": 940, + "13": 1060, + "14": 1260, + "15": 1480, + "16": 1700, + "21": 1940, + "22": 2240, + "23": 2540, + "31": 2840, + "32": 3040, + "33": 3240, + "41": 3340, + "42": 3440, + "score": 64, + "gender": 1 + }, + { + "11": 760, + "12": 870, + "13": 980, + "14": 1180, + "15": 1390, + "16": 1600, + "21": 1820, + "22": 2120, + "23": 2420, + "31": 2720, + "32": 2920, + "33": 3120, + "41": 3220, + "42": 3320, + "score": 62, + "gender": 1 + }, + { + "11": 700, + "12": 800, + "13": 900, + "14": 1100, + "15": 1300, + "16": 1500, + "21": 1700, + "22": 2000, + "23": 2300, + "31": 2600, + "32": 2800, + "33": 3000, + "41": 3100, + "42": 3200, + "score": 60, + "gender": 1 + }, + { + "11": 660, + "12": 750, + "13": 840, + "14": 1030, + "15": 1220, + "16": 1410, + "21": 1600, + "22": 1890, + "23": 2180, + "31": 2470, + "32": 2660, + "33": 2850, + "41": 2940, + "42": 3030, + "score": 50, + "gender": 1 + }, + { + "11": 620, + "12": 700, + "13": 780, + "14": 960, + "15": 1140, + "16": 1320, + "21": 1500, + "22": 1780, + "23": 2060, + "31": 2340, + "32": 2520, + "33": 2700, + "41": 2780, + "42": 2860, + "score": 40, + "gender": 1 + }, + { + "11": 580, + "12": 650, + "13": 720, + "14": 890, + "15": 1060, + "16": 1230, + "21": 1400, + "22": 1670, + "23": 1940, + "31": 2210, + "32": 2380, + "33": 2550, + "41": 2620, + "42": 2690, + "score": 30, + "gender": 1 + }, + { + "11": 540, + "12": 600, + "13": 660, + "14": 820, + "15": 980, + "16": 1140, + "21": 1300, + "22": 1560, + "23": 1820, + "31": 2080, + "32": 2240, + "33": 2400, + "41": 2460, + "42": 2520, + "score": 20, + "gender": 1 + }, + { + "11": 500, + "12": 550, + "13": 600, + "14": 750, + "15": 900, + "16": 1050, + "21": 1200, + "22": 1450, + "23": 1700, + "31": 1950, + "32": 2100, + "33": 2250, + "41": 2300, + "42": 2350, + "score": 10, + "gender": 1 + }, + { + "11": 0, + "12": 0, + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "21": 0, + "22": 0, + "23": 0, + "31": 0, + "32": 0, + "33": 0, + "41": 0, + "42": 0, + "score": 0, + "gender": 1 + }, + { + "11": 1400, + "12": 1600, + "13": 1800, + "14": 2000, + "15": 2250, + "16": 2500, + "21": 2750, + "22": 2900, + "23": 3050, + "31": 3150, + "32": 3250, + "33": 3350, + "41": 3400, + "42": 3450, + "score": 100, + "gender": 2 + }, + { + "11": 1300, + "12": 1500, + "13": 1700, + "14": 1900, + "15": 2150, + "16": 2400, + "21": 2650, + "22": 2850, + "23": 3000, + "31": 3100, + "32": 3200, + "33": 3300, + "41": 3350, + "42": 3400, + "score": 95, + "gender": 2 + }, + { + "11": 1200, + "12": 1400, + "13": 1600, + "14": 1800, + "15": 2050, + "16": 2300, + "21": 2550, + "22": 2800, + "23": 2950, + "31": 3050, + "32": 3150, + "33": 3250, + "41": 3300, + "42": 3350, + "score": 90, + "gender": 2 + }, + { + "11": 1100, + "12": 1300, + "13": 1500, + "14": 1700, + "15": 1950, + "16": 2200, + "21": 2450, + "22": 2650, + "23": 2800, + "31": 2900, + "32": 3000, + "33": 3100, + "41": 3150, + "42": 3200, + "score": 85, + "gender": 2 + }, + { + "11": 1000, + "12": 1200, + "13": 1400, + "14": 1600, + "15": 1850, + "16": 2100, + "21": 2350, + "22": 2500, + "23": 2650, + "31": 2750, + "32": 2850, + "33": 2950, + "41": 3000, + "42": 3050, + "score": 80, + "gender": 2 + }, + { + "11": 960, + "12": 1150, + "13": 1340, + "14": 1530, + "15": 1770, + "16": 2010, + "21": 2250, + "22": 2400, + "23": 2550, + "31": 2650, + "32": 2750, + "33": 2850, + "41": 2900, + "42": 2950, + "score": 78, + "gender": 2 + }, + { + "11": 920, + "12": 1100, + "13": 1280, + "14": 1460, + "15": 1690, + "16": 1920, + "21": 2150, + "22": 2300, + "23": 2450, + "31": 2550, + "32": 2650, + "33": 2750, + "41": 2800, + "42": 2850, + "score": 76, + "gender": 2 + }, + { + "11": 880, + "12": 1050, + "13": 1220, + "14": 1390, + "15": 1610, + "16": 1830, + "21": 2050, + "22": 2200, + "23": 2350, + "31": 2450, + "32": 2550, + "33": 2650, + "41": 2700, + "42": 2750, + "score": 74, + "gender": 2 + }, + { + "11": 840, + "12": 1000, + "13": 1160, + "14": 1320, + "15": 1530, + "16": 1740, + "21": 1950, + "22": 2100, + "23": 2250, + "31": 2350, + "32": 2450, + "33": 2550, + "41": 2600, + "42": 2650, + "score": 72, + "gender": 2 + }, + { + "11": 800, + "12": 950, + "13": 1100, + "14": 1250, + "15": 1450, + "16": 1650, + "21": 1850, + "22": 2000, + "23": 2150, + "31": 2250, + "32": 2350, + "33": 2450, + "41": 2500, + "42": 2550, + "score": 70, + "gender": 2 + }, + { + "11": 760, + "12": 900, + "13": 1040, + "14": 1180, + "15": 1370, + "16": 1560, + "21": 1750, + "22": 1900, + "23": 2050, + "31": 2150, + "32": 2250, + "33": 2350, + "41": 2400, + "42": 2450, + "score": 68, + "gender": 2 + }, + { + "11": 720, + "12": 850, + "13": 980, + "14": 1110, + "15": 1290, + "16": 1470, + "21": 1650, + "22": 1800, + "23": 1950, + "31": 2050, + "32": 2150, + "33": 2250, + "41": 2300, + "42": 2350, + "score": 66, + "gender": 2 + }, + { + "11": 680, + "12": 800, + "13": 920, + "14": 1040, + "15": 1210, + "16": 1380, + "21": 1550, + "22": 1700, + "23": 1850, + "31": 1950, + "32": 2050, + "33": 2150, + "41": 2200, + "42": 2250, + "score": 64, + "gender": 2 + }, + { + "11": 640, + "12": 750, + "13": 860, + "14": 970, + "15": 1130, + "16": 1290, + "21": 1450, + "22": 1600, + "23": 1750, + "31": 1850, + "32": 1950, + "33": 2050, + "41": 2100, + "42": 2150, + "score": 62, + "gender": 2 + }, + { + "11": 600, + "12": 700, + "13": 800, + "14": 900, + "15": 1050, + "16": 1200, + "21": 1350, + "22": 1500, + "23": 1650, + "31": 1750, + "32": 1850, + "33": 1950, + "41": 2000, + "42": 2050, + "score": 60, + "gender": 2 + }, + { + "11": 580, + "12": 680, + "13": 780, + "14": 880, + "15": 1020, + "16": 1170, + "21": 1310, + "22": 1460, + "23": 1610, + "31": 1710, + "32": 1810, + "33": 1910, + "41": 1960, + "42": 2010, + "score": 50, + "gender": 2 + }, + { + "11": 560, + "12": 660, + "13": 760, + "14": 860, + "15": 990, + "16": 1140, + "21": 1270, + "22": 1420, + "23": 1570, + "31": 1670, + "32": 1770, + "33": 1870, + "41": 1920, + "42": 1970, + "score": 40, + "gender": 2 + }, + { + "11": 540, + "12": 640, + "13": 740, + "14": 840, + "15": 960, + "16": 1110, + "21": 1230, + "22": 1380, + "23": 1530, + "31": 1630, + "32": 1730, + "33": 1830, + "41": 1880, + "42": 1930, + "score": 30, + "gender": 2 + }, + { + "11": 520, + "12": 620, + "13": 720, + "14": 820, + "15": 930, + "16": 1080, + "21": 1190, + "22": 1340, + "23": 1490, + "31": 1590, + "32": 1690, + "33": 1790, + "41": 1840, + "42": 1890, + "score": 20, + "gender": 2 + }, + { + "11": 500, + "12": 600, + "13": 700, + "14": 800, + "15": 900, + "16": 1050, + "21": 1150, + "22": 1300, + "23": 1450, + "31": 1550, + "32": 1650, + "33": 1750, + "41": 1800, + "42": 1850, + "score": 10, + "gender": 2 + }, + { + "11": 0, + "12": 0, + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "21": 0, + "22": 0, + "23": 0, + "31": 0, + "32": 0, + "33": 0, + "41": 0, + "42": 0, + "score": 0, + "gender": 2 + } + ] + }, + "fiftyscore": { + "prop": "fifty", + "fuhao": "<=", + "list": [ + { + "11": 10.2, + "12": 9.6, + "13": 9.1, + "14": 8.7, + "15": 8.4, + "16": 8.2, + "21": 7.8, + "22": 7.5, + "23": 7.3, + "31": 7.1, + "32": 7, + "33": 6.8, + "41": 6.7, + "42": 6.6, + "score": 100, + "gender": 1 + }, + { + "11": 10.3, + "12": 9.7, + "13": 9.2, + "14": 8.8, + "15": 8.5, + "16": 8.3, + "21": 7.9, + "22": 7.6, + "23": 7.4, + "31": 7.2, + "32": 7.1, + "33": 6.9, + "41": 6.8, + "42": 6.7, + "score": 95, + "gender": 1 + }, + { + "11": 10.4, + "12": 9.8, + "13": 9.3, + "14": 8.9, + "15": 8.6, + "16": 8.4, + "21": 8, + "22": 7.7, + "23": 7.5, + "31": 7.3, + "32": 7.2, + "33": 7, + "41": 6.9, + "42": 6.8, + "score": 90, + "gender": 1 + }, + { + "11": 10.5, + "12": 9.9, + "13": 9.4, + "14": 9, + "15": 8.7, + "16": 8.5, + "21": 8.1, + "22": 7.8, + "23": 7.6, + "31": 7.4, + "32": 7.3, + "33": 7.1, + "41": 7, + "42": 6.9, + "score": 85, + "gender": 1 + }, + { + "11": 10.6, + "12": 10, + "13": 9.5, + "14": 9.1, + "15": 8.8, + "16": 8.6, + "21": 8.2, + "22": 7.9, + "23": 7.7, + "31": 7.5, + "32": 7.4, + "33": 7.2, + "41": 7.1, + "42": 7, + "score": 80, + "gender": 1 + }, + { + "11": 10.8, + "12": 10.2, + "13": 9.7, + "14": 9.3, + "15": 9, + "16": 8.8, + "21": 8.4, + "22": 8.1, + "23": 7.9, + "31": 7.7, + "32": 7.6, + "33": 7.4, + "41": 7.3, + "42": 7.2, + "score": 78, + "gender": 1 + }, + { + "11": 11, + "12": 10.4, + "13": 9.9, + "14": 9.5, + "15": 9.2, + "16": 9, + "21": 8.6, + "22": 8.3, + "23": 8.1, + "31": 7.9, + "32": 7.8, + "33": 7.6, + "41": 7.5, + "42": 7.4, + "score": 76, + "gender": 1 + }, + { + "11": 11.2, + "12": 10.6, + "13": 10.1, + "14": 9.7, + "15": 9.4, + "16": 9.2, + "21": 8.8, + "22": 8.5, + "23": 8.3, + "31": 8.1, + "32": 8, + "33": 7.8, + "41": 7.7, + "42": 7.6, + "score": 74, + "gender": 1 + }, + { + "11": 11.4, + "12": 10.8, + "13": 10.3, + "14": 9.9, + "15": 9.6, + "16": 9.4, + "21": 9, + "22": 8.7, + "23": 8.5, + "31": 8.3, + "32": 8.2, + "33": 8, + "41": 7.9, + "42": 7.8, + "score": 72, + "gender": 1 + }, + { + "11": 11.6, + "12": 11, + "13": 10.5, + "14": 10.1, + "15": 9.8, + "16": 9.6, + "21": 9.2, + "22": 8.9, + "23": 8.7, + "31": 8.5, + "32": 8.4, + "33": 8.2, + "41": 8.1, + "42": 8, + "score": 70, + "gender": 1 + }, + { + "11": 11.8, + "12": 11.2, + "13": 10.7, + "14": 10.3, + "15": 10, + "16": 9.8, + "21": 9.4, + "22": 9.1, + "23": 8.9, + "31": 8.7, + "32": 8.6, + "33": 8.4, + "41": 8.3, + "42": 8.2, + "score": 68, + "gender": 1 + }, + { + "11": 12, + "12": 11.4, + "13": 10.9, + "14": 10.5, + "15": 10.2, + "16": 10, + "21": 9.6, + "22": 9.3, + "23": 9.1, + "31": 8.9, + "32": 8.8, + "33": 8.6, + "41": 8.5, + "42": 8.4, + "score": 66, + "gender": 1 + }, + { + "11": 12.2, + "12": 11.6, + "13": 11.1, + "14": 10.7, + "15": 10.4, + "16": 10.2, + "21": 9.8, + "22": 9.5, + "23": 9.3, + "31": 9.1, + "32": 9, + "33": 8.8, + "41": 8.7, + "42": 8.6, + "score": 64, + "gender": 1 + }, + { + "11": 12.4, + "12": 11.8, + "13": 11.3, + "14": 10.9, + "15": 10.6, + "16": 10.4, + "21": 10, + "22": 9.7, + "23": 9.5, + "31": 9.3, + "32": 9.2, + "33": 9, + "41": 8.9, + "42": 8.8, + "score": 62, + "gender": 1 + }, + { + "11": 12.6, + "12": 12, + "13": 11.5, + "14": 11.1, + "15": 10.8, + "16": 10.6, + "21": 10.2, + "22": 9.9, + "23": 9.7, + "31": 9.5, + "32": 9.4, + "33": 9.2, + "41": 9.1, + "42": 9, + "score": 60, + "gender": 1 + }, + { + "11": 12.8, + "12": 12.2, + "13": 11.7, + "14": 11.3, + "15": 11, + "16": 10.8, + "21": 10.4, + "22": 10.1, + "23": 9.9, + "31": 9.7, + "32": 9.6, + "33": 9.4, + "41": 9.3, + "42": 9.2, + "score": 50, + "gender": 1 + }, + { + "11": 13, + "12": 12.4, + "13": 11.9, + "14": 11.5, + "15": 11.2, + "16": 11, + "21": 10.6, + "22": 10.3, + "23": 10.1, + "31": 9.9, + "32": 9.8, + "33": 9.6, + "41": 9.5, + "42": 9.4, + "score": 40, + "gender": 1 + }, + { + "11": 13.2, + "12": 12.6, + "13": 12.1, + "14": 11.7, + "15": 11.4, + "16": 11.2, + "21": 10.8, + "22": 10.5, + "23": 10.3, + "31": 10.1, + "32": 10, + "33": 9.8, + "41": 9.7, + "42": 9.6, + "score": 30, + "gender": 1 + }, + { + "11": 13.4, + "12": 12.8, + "13": 12.3, + "14": 11.9, + "15": 11.6, + "16": 11.4, + "21": 11, + "22": 10.7, + "23": 10.5, + "31": 10.3, + "32": 10.2, + "33": 10, + "41": 9.9, + "42": 9.8, + "score": 20, + "gender": 1 + }, + { + "11": 13.6, + "12": 13, + "13": 12.5, + "14": 12.1, + "15": 11.8, + "16": 11.6, + "21": 11.2, + "22": 10.9, + "23": 10.7, + "31": 10.5, + "32": 10.4, + "33": 10.2, + "41": 10.1, + "42": 10, + "score": 10, + "gender": 1 + }, + { + "11": 999999, + "12": 999999, + "13": 999999, + "14": 999999, + "15": 999999, + "16": 999999, + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "42": 999999, + "score": 0, + "gender": 1 + }, + { + "11": 11, + "12": 10, + "13": 9.2, + "14": 8.7, + "15": 8.3, + "16": 8.2, + "21": 8.1, + "22": 8, + "23": 7.9, + "31": 7.8, + "32": 7.7, + "33": 7.6, + "41": 7.5, + "42": 7.4, + "score": 100, + "gender": 2 + }, + { + "11": 11.1, + "12": 10.1, + "13": 9.3, + "14": 8.8, + "15": 8.4, + "16": 8.3, + "21": 8.2, + "22": 8.1, + "23": 8, + "31": 7.9, + "32": 7.8, + "33": 7.7, + "41": 7.6, + "42": 7.5, + "score": 95, + "gender": 2 + }, + { + "11": 11.2, + "12": 10.2, + "13": 9.4, + "14": 8.9, + "15": 8.5, + "16": 8.4, + "21": 8.3, + "22": 8.2, + "23": 8.1, + "31": 8, + "32": 7.9, + "33": 7.8, + "41": 7.7, + "42": 7.6, + "score": 90, + "gender": 2 + }, + { + "11": 11.5, + "12": 10.5, + "13": 9.7, + "14": 9.2, + "15": 8.8, + "16": 8.7, + "21": 8.6, + "22": 8.5, + "23": 8.4, + "31": 8.3, + "32": 8.2, + "33": 8.1, + "41": 8, + "42": 7.9, + "score": 85, + "gender": 2 + }, + { + "11": 11.8, + "12": 10.8, + "13": 10, + "14": 9.5, + "15": 9.1, + "16": 9, + "21": 8.9, + "22": 8.8, + "23": 8.7, + "31": 8.6, + "32": 8.5, + "33": 8.4, + "41": 8.3, + "42": 8.2, + "score": 80, + "gender": 2 + }, + { + "11": 12, + "12": 11, + "13": 10.2, + "14": 9.7, + "15": 9.3, + "16": 9.2, + "21": 9.1, + "22": 9, + "23": 8.9, + "31": 8.8, + "32": 8.7, + "33": 8.6, + "41": 8.5, + "42": 8.4, + "score": 78, + "gender": 2 + }, + { + "11": 12.2, + "12": 11.2, + "13": 10.4, + "14": 9.9, + "15": 9.5, + "16": 9.4, + "21": 9.3, + "22": 9.2, + "23": 9.1, + "31": 9, + "32": 8.9, + "33": 8.8, + "41": 8.7, + "42": 8.6, + "score": 76, + "gender": 2 + }, + { + "11": 12.4, + "12": 11.4, + "13": 10.6, + "14": 10.1, + "15": 9.7, + "16": 9.6, + "21": 9.5, + "22": 9.4, + "23": 9.3, + "31": 9.2, + "32": 9.1, + "33": 9, + "41": 8.9, + "42": 8.8, + "score": 74, + "gender": 2 + }, + { + "11": 12.6, + "12": 11.6, + "13": 10.8, + "14": 10.3, + "15": 9.9, + "16": 9.8, + "21": 9.7, + "22": 9.6, + "23": 9.5, + "31": 9.4, + "32": 9.3, + "33": 9.2, + "41": 9.1, + "42": 9, + "score": 72, + "gender": 2 + }, + { + "11": 12.8, + "12": 11.8, + "13": 11, + "14": 10.5, + "15": 10.1, + "16": 10, + "21": 9.9, + "22": 9.8, + "23": 9.7, + "31": 9.6, + "32": 9.5, + "33": 9.4, + "41": 9.3, + "42": 9.2, + "score": 70, + "gender": 2 + }, + { + "11": 13, + "12": 12, + "13": 11.2, + "14": 10.7, + "15": 10.3, + "16": 10.2, + "21": 10.1, + "22": 10, + "23": 9.9, + "31": 9.8, + "32": 9.7, + "33": 9.6, + "41": 9.5, + "42": 9.4, + "score": 68, + "gender": 2 + }, + { + "11": 13.2, + "12": 12.2, + "13": 11.4, + "14": 10.9, + "15": 10.5, + "16": 10.4, + "21": 10.3, + "22": 10.2, + "23": 10.1, + "31": 10, + "32": 9.9, + "33": 9.8, + "41": 9.7, + "42": 9.6, + "score": 66, + "gender": 2 + }, + { + "11": 13.4, + "12": 12.4, + "13": 11.6, + "14": 11.1, + "15": 10.7, + "16": 10.6, + "21": 10.5, + "22": 10.4, + "23": 10.3, + "31": 10.2, + "32": 10.1, + "33": 10, + "41": 9.9, + "42": 9.8, + "score": 64, + "gender": 2 + }, + { + "11": 13.6, + "12": 12.6, + "13": 11.8, + "14": 11.3, + "15": 10.9, + "16": 10.8, + "21": 10.7, + "22": 10.6, + "23": 10.5, + "31": 10.4, + "32": 10.3, + "33": 10.2, + "41": 10.1, + "42": 10, + "score": 62, + "gender": 2 + }, + { + "11": 13.8, + "12": 12.8, + "13": 12, + "14": 11.5, + "15": 11.1, + "16": 11, + "21": 10.9, + "22": 10.8, + "23": 10.7, + "31": 10.6, + "32": 10.5, + "33": 10.4, + "41": 10.3, + "42": 10.2, + "score": 60, + "gender": 2 + }, + { + "11": 14, + "12": 13, + "13": 12.2, + "14": 11.7, + "15": 11.3, + "16": 11.2, + "21": 11.1, + "22": 11, + "23": 10.9, + "31": 10.8, + "32": 10.7, + "33": 10.6, + "41": 10.5, + "42": 10.4, + "score": 50, + "gender": 2 + }, + { + "11": 14.2, + "12": 13.2, + "13": 12.4, + "14": 11.9, + "15": 11.5, + "16": 11.4, + "21": 11.3, + "22": 11.2, + "23": 11.1, + "31": 11, + "32": 10.9, + "33": 10.8, + "41": 10.7, + "42": 10.6, + "score": 40, + "gender": 2 + }, + { + "11": 14.4, + "12": 13.4, + "13": 12.6, + "14": 12.1, + "15": 11.7, + "16": 11.6, + "21": 11.5, + "22": 11.4, + "23": 11.3, + "31": 11.2, + "32": 11.1, + "33": 11, + "41": 10.9, + "42": 10.8, + "score": 30, + "gender": 2 + }, + { + "11": 14.6, + "12": 13.6, + "13": 12.8, + "14": 12.3, + "15": 11.9, + "16": 11.8, + "21": 11.7, + "22": 11.6, + "23": 11.5, + "31": 11.4, + "32": 11.3, + "33": 11.2, + "41": 11.1, + "42": 11, + "score": 20, + "gender": 2 + }, + { + "11": 14.8, + "12": 13.8, + "13": 13, + "14": 12.5, + "15": 12.1, + "16": 12, + "21": 11.9, + "22": 11.8, + "23": 11.7, + "31": 11.6, + "32": 11.5, + "33": 11.4, + "41": 11.3, + "42": 11.2, + "score": 10, + "gender": 2 + }, + { + "11": 999999, + "12": 999999, + "13": 999999, + "14": 999999, + "15": 999999, + "16": 999999, + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "42": 999999, + "score": 0, + "gender": 2 + } + ] + }, + "sitforwardscore": { + "prop": "sitforward", + "fuhao": ">=", + "list": [ + { + "11": 16.1, + "12": 16.2, + "13": 16.3, + "14": 16.4, + "15": 16.5, + "16": 16.6, + "21": 17.6, + "22": 19.6, + "23": 21.6, + "31": 23.6, + "32": 24.3, + "33": 24.6, + "41": 24.9, + "42": 25.1, + "score": 100, + "gender": 1 + }, + { + "11": 14.6, + "12": 14.7, + "13": 14.9, + "14": 15, + "15": 15.2, + "16": 15.3, + "21": 15.9, + "22": 17.7, + "23": 19.7, + "31": 21.5, + "32": 22.4, + "33": 22.8, + "41": 23.1, + "42": 23.3, + "score": 95, + "gender": 1 + }, + { + "11": 13, + "12": 13.2, + "13": 13.4, + "14": 13.6, + "15": 13.8, + "16": 14, + "21": 14.2, + "22": 15.8, + "23": 17.8, + "31": 19.4, + "32": 20.5, + "33": 21, + "41": 21.3, + "42": 21.5, + "score": 90, + "gender": 1 + }, + { + "11": 12, + "12": 11.9, + "13": 11.8, + "14": 11.7, + "15": 11.6, + "16": 11.5, + "21": 12.3, + "22": 13.7, + "23": 15.8, + "31": 17.2, + "32": 18.3, + "33": 19.1, + "41": 19.5, + "42": 19.9, + "score": 85, + "gender": 1 + }, + { + "11": 11, + "12": 10.6, + "13": 10.2, + "14": 9.8, + "15": 9.4, + "16": 9, + "21": 10.4, + "22": 11.6, + "23": 13.8, + "31": 15, + "32": 16.1, + "33": 17.2, + "41": 17.7, + "42": 18.2, + "score": 80, + "gender": 1 + }, + { + "11": 9.9, + "12": 9.5, + "13": 9.1, + "14": 8.6, + "15": 8.2, + "16": 7.7, + "21": 9.1, + "22": 10.3, + "23": 12.4, + "31": 13.6, + "32": 14.7, + "33": 15.8, + "41": 16.3, + "42": 16.8, + "score": 78, + "gender": 1 + }, + { + "11": 8.8, + "12": 8.4, + "13": 8, + "14": 7.4, + "15": 7, + "16": 6.4, + "21": 7.8, + "22": 9, + "23": 11, + "31": 12.2, + "32": 13.3, + "33": 14.4, + "41": 14.9, + "42": 15.4, + "score": 76, + "gender": 1 + }, + { + "11": 7.7, + "12": 7.3, + "13": 6.9, + "14": 6.2, + "15": 5.8, + "16": 5.1, + "21": 6.5, + "22": 7.7, + "23": 9.6, + "31": 10.8, + "32": 11.9, + "33": 13, + "41": 13.5, + "42": 14, + "score": 74, + "gender": 1 + }, + { + "11": 6.6, + "12": 6.2, + "13": 5.8, + "14": 5, + "15": 4.6, + "16": 3.8, + "21": 5.2, + "22": 6.4, + "23": 8.2, + "31": 9.4, + "32": 10.5, + "33": 11.6, + "41": 12.1, + "42": 12.6, + "score": 72, + "gender": 1 + }, + { + "11": 5.5, + "12": 5.1, + "13": 4.7, + "14": 3.8, + "15": 3.4, + "16": 2.5, + "21": 3.9, + "22": 5.1, + "23": 6.8, + "31": 8, + "32": 9.1, + "33": 10.2, + "41": 10.7, + "42": 11.2, + "score": 70, + "gender": 1 + }, + { + "11": 4.4, + "12": 4, + "13": 3.6, + "14": 2.6, + "15": 2.2, + "16": 1.2, + "21": 2.6, + "22": 3.8, + "23": 5.4, + "31": 6.6, + "32": 7.7, + "33": 8.8, + "41": 9.3, + "42": 9.8, + "score": 68, + "gender": 1 + }, + { + "11": 3.3, + "12": 2.9, + "13": 2.5, + "14": 1.4, + "15": 1, + "16": -0.1, + "21": 1.3, + "22": 2.5, + "23": 4, + "31": 5.2, + "32": 6.3, + "33": 7.4, + "41": 7.9, + "42": 8.4, + "score": 66, + "gender": 1 + }, + { + "11": 2.2, + "12": 1.8, + "13": 1.4, + "14": 0.2, + "15": -0.2, + "16": -1.4, + "21": 0, + "22": 1.2, + "23": 2.6, + "31": 3.8, + "32": 4.9, + "33": 6, + "41": 6.5, + "42": 7, + "score": 64, + "gender": 1 + }, + { + "11": 1.1, + "12": 0.7, + "13": 0.3, + "14": -1, + "15": -1.4, + "16": -2.7, + "21": -1.3, + "22": -0.1, + "23": 1.2, + "31": 2.4, + "32": 3.5, + "33": 4.6, + "41": 5.1, + "42": 5.6, + "score": 62, + "gender": 1 + }, + { + "11": 0, + "12": -0.4, + "13": -0.8, + "14": -2.2, + "15": -2.6, + "16": -4, + "21": -2.6, + "22": -1.4, + "23": -0.2, + "31": 1, + "32": 2.1, + "33": 3.2, + "41": 3.7, + "42": 4.2, + "score": 60, + "gender": 1 + }, + { + "11": -0.8, + "12": -1.2, + "13": -1.6, + "14": -3.2, + "15": -3.6, + "16": -5, + "21": -3.8, + "22": -2.6, + "23": -1.4, + "31": 0, + "32": 1.1, + "33": 2.2, + "41": 2.7, + "42": 3.2, + "score": 50, + "gender": 1 + }, + { + "11": -1.6, + "12": -2, + "13": -2.4, + "14": -4.2, + "15": -4.6, + "16": -6, + "21": -5, + "22": -3.8, + "23": -2.6, + "31": -1, + "32": 0.1, + "33": 1.2, + "41": 1.7, + "42": 2.2, + "score": 40, + "gender": 1 + }, + { + "11": -2.4, + "12": -2.8, + "13": -3.2, + "14": -5.2, + "15": -5.6, + "16": -7, + "21": -6.2, + "22": -5, + "23": -3.8, + "31": -2, + "32": -0.9, + "33": 0.2, + "41": 0.7, + "42": 1.2, + "score": 30, + "gender": 1 + }, + { + "11": -3.2, + "12": -3.6, + "13": -4, + "14": -6.2, + "15": -6.6, + "16": -8, + "21": -7.4, + "22": -6.2, + "23": -5, + "31": -3, + "32": -1.9, + "33": -0.8, + "41": -0.3, + "42": 0.2, + "score": 20, + "gender": 1 + }, + { + "11": -4, + "12": -4.4, + "13": -4.8, + "14": -7.2, + "15": -7.6, + "16": -9, + "21": -8.6, + "22": -7.4, + "23": -6.2, + "31": -4, + "32": -2.9, + "33": -1.8, + "41": -1.3, + "42": -0.8, + "score": 10, + "gender": 1 + }, + { + "11": -100000, + "12": -100000, + "13": -100000, + "14": -100000, + "15": -100000, + "16": -100000, + "21": -100000, + "22": -100000, + "23": -100000, + "31": -100000, + "32": -100000, + "33": -100000, + "41": -100000, + "42": -100000, + "score": 0, + "gender": 1 + }, + { + "11": 18.6, + "12": 18.9, + "13": 19.2, + "14": 19.5, + "15": 19.8, + "16": 19.9, + "21": 21.8, + "22": 22.7, + "23": 23.5, + "31": 24.2, + "32": 24.8, + "33": 25.3, + "41": 25.8, + "42": 26.3, + "score": 100, + "gender": 2 + }, + { + "11": 17.3, + "12": 17.6, + "13": 17.9, + "14": 18.1, + "15": 18.5, + "16": 18.7, + "21": 20.1, + "22": 21, + "23": 21.8, + "31": 22.5, + "32": 23.1, + "33": 23.6, + "41": 24, + "42": 24.4, + "score": 95, + "gender": 2 + }, + { + "11": 16, + "12": 16.3, + "13": 16.6, + "14": 16.9, + "15": 17.2, + "16": 17.5, + "21": 18.4, + "22": 19.3, + "23": 20.1, + "31": 20.8, + "32": 21.4, + "33": 21.9, + "41": 22.2, + "42": 22.4, + "score": 90, + "gender": 2 + }, + { + "11": 14.7, + "12": 14.8, + "13": 14.9, + "14": 15, + "15": 15.1, + "16": 15.2, + "21": 16.7, + "22": 17.6, + "23": 18.4, + "31": 19.1, + "32": 19.7, + "33": 20.2, + "41": 20.6, + "42": 21, + "score": 85, + "gender": 2 + }, + { + "11": 13.4, + "12": 13.3, + "13": 13.2, + "14": 13.1, + "15": 13, + "16": 12.9, + "21": 15, + "22": 15.9, + "23": 16.7, + "31": 17.4, + "32": 18, + "33": 18.5, + "41": 19, + "42": 19.5, + "score": 80, + "gender": 2 + }, + { + "11": 12.3, + "12": 12.2, + "13": 12.1, + "14": 12, + "15": 11.9, + "16": 11.8, + "21": 13.7, + "22": 14.6, + "23": 15.4, + "31": 16.1, + "32": 16.7, + "33": 17.2, + "41": 17.7, + "42": 18.2, + "score": 78, + "gender": 2 + }, + { + "11": 11.2, + "12": 11.1, + "13": 11, + "14": 10.9, + "15": 10.8, + "16": 10.7, + "21": 12.4, + "22": 13.3, + "23": 14.1, + "31": 14.8, + "32": 15.4, + "33": 15.9, + "41": 16.4, + "42": 16.9, + "score": 76, + "gender": 2 + }, + { + "11": 10.1, + "12": 10, + "13": 9.9, + "14": 9.8, + "15": 9.7, + "16": 9.6, + "21": 11.1, + "22": 12, + "23": 12.8, + "31": 13.5, + "32": 14.1, + "33": 14.6, + "41": 15.1, + "42": 15.6, + "score": 74, + "gender": 2 + }, + { + "11": 9, + "12": 8.9, + "13": 8.8, + "14": 8.7, + "15": 8.6, + "16": 8.5, + "21": 9.8, + "22": 10.7, + "23": 11.5, + "31": 12.2, + "32": 12.8, + "33": 13.3, + "41": 13.8, + "42": 14.3, + "score": 72, + "gender": 2 + }, + { + "11": 7.9, + "12": 7.8, + "13": 7.7, + "14": 7.6, + "15": 7.5, + "16": 7.4, + "21": 8.5, + "22": 9.4, + "23": 10.2, + "31": 10.9, + "32": 11.5, + "33": 12, + "41": 12.5, + "42": 13, + "score": 70, + "gender": 2 + }, + { + "11": 6.8, + "12": 6.7, + "13": 6.6, + "14": 6.5, + "15": 6.4, + "16": 6.3, + "21": 7.2, + "22": 8.1, + "23": 8.9, + "31": 9.6, + "32": 10.2, + "33": 10.7, + "41": 11.2, + "42": 11.7, + "score": 68, + "gender": 2 + }, + { + "11": 5.7, + "12": 5.6, + "13": 5.5, + "14": 5.4, + "15": 5.3, + "16": 5.2, + "21": 5.9, + "22": 6.8, + "23": 7.6, + "31": 8.3, + "32": 8.9, + "33": 9.4, + "41": 9.9, + "42": 10.4, + "score": 66, + "gender": 2 + }, + { + "11": 4.6, + "12": 4.5, + "13": 4.4, + "14": 4.3, + "15": 4.2, + "16": 4.1, + "21": 4.6, + "22": 5.5, + "23": 6.3, + "31": 7, + "32": 7.6, + "33": 8.1, + "41": 8.6, + "42": 9.1, + "score": 64, + "gender": 2 + }, + { + "11": 3.5, + "12": 3.4, + "13": 3.3, + "14": 3.2, + "15": 3.1, + "16": 3, + "21": 3.3, + "22": 4.2, + "23": 5, + "31": 5.7, + "32": 6.3, + "33": 6.8, + "41": 7.3, + "42": 7.8, + "score": 62, + "gender": 2 + }, + { + "11": 2.4, + "12": 2.3, + "13": 2.2, + "14": 2.1, + "15": 2, + "16": 1.9, + "21": 2, + "22": 2.9, + "23": 3.7, + "31": 4.4, + "32": 5, + "33": 5.5, + "41": 6, + "42": 6.5, + "score": 60, + "gender": 2 + }, + { + "11": 1.6, + "12": 1.5, + "13": 1.4, + "14": 1.3, + "15": 1.2, + "16": 1.1, + "21": 1.2, + "22": 2.1, + "23": 2.9, + "31": 3.6, + "32": 4.2, + "33": 4.7, + "41": 5.2, + "42": 5.7, + "score": 50, + "gender": 2 + }, + { + "11": 0.8, + "12": 0.7, + "13": 0.6, + "14": 0.5, + "15": 0.4, + "16": 0.3, + "21": 0.4, + "22": 1.3, + "23": 2.1, + "31": 2.8, + "32": 3.4, + "33": 3.9, + "41": 4.4, + "42": 4.9, + "score": 40, + "gender": 2 + }, + { + "11": 0, + "12": -0.1, + "13": -0.2, + "14": -0.3, + "15": -0.4, + "16": -0.5, + "21": -0.4, + "22": 0.5, + "23": 1.3, + "31": 2, + "32": 2.6, + "33": 3.1, + "41": 3.6, + "42": 4.1, + "score": 30, + "gender": 2 + }, + { + "11": -0.8, + "12": -0.9, + "13": -1, + "14": -1.1, + "15": -1.2, + "16": -1.3, + "21": -1.2, + "22": -0.3, + "23": 0.5, + "31": 1.2, + "32": 1.8, + "33": 2.3, + "41": 2.8, + "42": 3.3, + "score": 20, + "gender": 2 + }, + { + "11": -1.6, + "12": -1.7, + "13": -1.8, + "14": -1.9, + "15": -2, + "16": -2.1, + "21": -2, + "22": -1.1, + "23": -0.3, + "31": 0.4, + "32": 1, + "33": 1.5, + "41": 2, + "42": 2.5, + "score": 10, + "gender": 2 + }, + { + "11": -100000, + "12": -100000, + "13": -100000, + "14": -100000, + "15": -100000, + "16": -100000, + "21": -100000, + "22": -100000, + "23": -100000, + "31": -100000, + "32": -100000, + "33": -100000, + "41": -100000, + "42": -100000, + "score": 0, + "gender": "2" + } + ] + }, + "jumpscore": { + "prop": "jump", + "fuhao": ">=", + "list": [ + { + "11": 149, + "12": 157, + "13": 166, + "14": 177, + "15": 188, + "16": 197, + "score": 100, + "add_score": 20, + "gender": 1 + }, + { + "11": 147, + "12": 155, + "13": 164, + "14": 175, + "15": 186, + "16": 195, + "score": 100, + "add_score": 19, + "gender": 1 + }, + { + "11": 145, + "12": 153, + "13": 162, + "14": 173, + "15": 184, + "16": 193, + "score": 100, + "add_score": 18, + "gender": 1 + }, + { + "11": 143, + "12": 151, + "13": 160, + "14": 171, + "15": 182, + "16": 191, + "score": 100, + "add_score": 17, + "gender": 1 + }, + { + "11": 141, + "12": 149, + "13": 158, + "14": 169, + "15": 180, + "16": 189, + "score": 100, + "add_score": 16, + "gender": 1 + }, + { + "11": 139, + "12": 147, + "13": 156, + "14": 167, + "15": 178, + "16": 187, + "score": 100, + "add_score": 15, + "gender": 1 + }, + { + "11": 137, + "12": 145, + "13": 154, + "14": 165, + "15": 176, + "16": 185, + "score": 100, + "add_score": 14, + "gender": 1 + }, + { + "11": 135, + "12": 143, + "13": 152, + "14": 163, + "15": 174, + "16": 183, + "score": 100, + "add_score": 13, + "gender": 1 + }, + { + "11": 133, + "12": 141, + "13": 150, + "14": 161, + "15": 172, + "16": 181, + "score": 100, + "add_score": 12, + "gender": 1 + }, + { + "11": 131, + "12": 139, + "13": 148, + "14": 159, + "15": 170, + "16": 179, + "score": 100, + "add_score": 11, + "gender": 1 + }, + { + "11": 129, + "12": 137, + "13": 146, + "14": 157, + "15": 168, + "16": 177, + "score": 100, + "add_score": 10, + "gender": 1 + }, + { + "11": 127, + "12": 135, + "13": 144, + "14": 155, + "15": 166, + "16": 175, + "score": 100, + "add_score": 9, + "gender": 1 + }, + { + "11": 125, + "12": 133, + "13": 142, + "14": 153, + "15": 164, + "16": 173, + "score": 100, + "add_score": 8, + "gender": 1 + }, + { + "11": 123, + "12": 131, + "13": 140, + "14": 151, + "15": 162, + "16": 171, + "score": 100, + "add_score": 7, + "gender": 1 + }, + { + "11": 121, + "12": 129, + "13": 138, + "14": 149, + "15": 160, + "16": 169, + "score": 100, + "add_score": 6, + "gender": 1 + }, + { + "11": 119, + "12": 127, + "13": 136, + "14": 147, + "15": 158, + "16": 167, + "score": 100, + "add_score": 5, + "gender": 1 + }, + { + "11": 117, + "12": 125, + "13": 134, + "14": 145, + "15": 156, + "16": 165, + "score": 100, + "add_score": 4, + "gender": 1 + }, + { + "11": 115, + "12": 123, + "13": 132, + "14": 143, + "15": 154, + "16": 163, + "score": 100, + "add_score": 3, + "gender": 1 + }, + { + "11": 113, + "12": 121, + "13": 130, + "14": 141, + "15": 152, + "16": 161, + "score": 100, + "add_score": 2, + "gender": 1 + }, + { + "11": 111, + "12": 119, + "13": 128, + "14": 139, + "15": 150, + "16": 159, + "score": 100, + "add_score": 1, + "gender": 1 + }, + { + "11": 109, + "12": 117, + "13": 126, + "14": 137, + "15": 148, + "16": 157, + "score": 100, + "gender": 1 + }, + { + "11": 104, + "12": 112, + "13": 121, + "14": 132, + "15": 143, + "16": 152, + "score": 95, + "gender": 1 + }, + { + "11": 99, + "12": 107, + "13": 116, + "14": 127, + "15": 138, + "16": 147, + "score": 90, + "gender": 1 + }, + { + "11": 93, + "12": 101, + "13": 110, + "14": 121, + "15": 132, + "16": 141, + "score": 85, + "gender": 1 + }, + { + "11": 87, + "12": 95, + "13": 104, + "14": 115, + "15": 126, + "16": 135, + "score": 80, + "gender": 1 + }, + { + "11": 80, + "12": 88, + "13": 97, + "14": 108, + "15": 119, + "16": 128, + "score": 78, + "gender": 1 + }, + { + "11": 73, + "12": 81, + "13": 90, + "14": 101, + "15": 112, + "16": 121, + "score": 76, + "gender": 1 + }, + { + "11": 66, + "12": 74, + "13": 83, + "14": 94, + "15": 105, + "16": 114, + "score": 74, + "gender": 1 + }, + { + "11": 59, + "12": 67, + "13": 76, + "14": 87, + "15": 98, + "16": 107, + "score": 72, + "gender": 1 + }, + { + "11": 52, + "12": 60, + "13": 69, + "14": 80, + "15": 91, + "16": 100, + "score": 70, + "gender": 1 + }, + { + "11": 45, + "12": 53, + "13": 62, + "14": 73, + "15": 84, + "16": 93, + "score": 68, + "gender": 1 + }, + { + "11": 38, + "12": 46, + "13": 55, + "14": 66, + "15": 77, + "16": 86, + "score": 66, + "gender": 1 + }, + { + "11": 31, + "12": 39, + "13": 48, + "14": 59, + "15": 70, + "16": 79, + "score": 64, + "gender": 1 + }, + { + "11": 24, + "12": 32, + "13": 41, + "14": 52, + "15": 63, + "16": 72, + "score": 62, + "gender": 1 + }, + { + "11": 17, + "12": 25, + "13": 34, + "14": 45, + "15": 56, + "16": 65, + "score": 60, + "gender": 1 + }, + { + "11": 14, + "12": 22, + "13": 31, + "14": 42, + "15": 53, + "16": 62, + "score": 50, + "gender": 1 + }, + { + "11": 11, + "12": 19, + "13": 28, + "14": 39, + "15": 50, + "16": 59, + "score": 40, + "gender": 1 + }, + { + "11": 8, + "12": 16, + "13": 25, + "14": 36, + "15": 47, + "16": 56, + "score": 30, + "gender": 1 + }, + { + "11": 5, + "12": 13, + "13": 22, + "14": 33, + "15": 44, + "16": 53, + "score": 20, + "gender": 1 + }, + { + "11": 2, + "12": 10, + "13": 19, + "14": 30, + "15": 41, + "16": 50, + "score": 10, + "gender": 1 + }, + { + "11": 0, + "12": 0, + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "score": 0, + "gender": 1 + }, + { + "11": 157, + "12": 167, + "13": 179, + "14": 189, + "15": 198, + "16": 206, + "score": 100, + "add_score": 20, + "gender": 2 + }, + { + "11": 155, + "12": 165, + "13": 177, + "14": 187, + "15": 196, + "16": 204, + "score": 100, + "add_score": 19, + "gender": 2 + }, + { + "11": 153, + "12": 163, + "13": 175, + "14": 185, + "15": 194, + "16": 202, + "score": 100, + "add_score": 18, + "gender": 2 + }, + { + "11": 151, + "12": 161, + "13": 173, + "14": 183, + "15": 192, + "16": 200, + "score": 100, + "add_score": 17, + "gender": 2 + }, + { + "11": 149, + "12": 159, + "13": 171, + "14": 181, + "15": 190, + "16": 198, + "score": 100, + "add_score": 16, + "gender": 2 + }, + { + "11": 147, + "12": 157, + "13": 169, + "14": 179, + "15": 188, + "16": 196, + "score": 100, + "add_score": 15, + "gender": 2 + }, + { + "11": 145, + "12": 155, + "13": 167, + "14": 177, + "15": 186, + "16": 194, + "score": 100, + "add_score": 14, + "gender": 2 + }, + { + "11": 143, + "12": 153, + "13": 165, + "14": 175, + "15": 184, + "16": 192, + "score": 100, + "add_score": 13, + "gender": 2 + }, + { + "11": 141, + "12": 151, + "13": 163, + "14": 173, + "15": 182, + "16": 190, + "score": 100, + "add_score": 12, + "gender": 2 + }, + { + "11": 139, + "12": 149, + "13": 161, + "14": 171, + "15": 180, + "16": 188, + "score": 100, + "add_score": 11, + "gender": 2 + }, + { + "11": 137, + "12": 147, + "13": 159, + "14": 169, + "15": 178, + "16": 186, + "score": 100, + "add_score": 10, + "gender": 2 + }, + { + "11": 135, + "12": 145, + "13": 157, + "14": 167, + "15": 176, + "16": 184, + "score": 100, + "add_score": 9, + "gender": 2 + }, + { + "11": 133, + "12": 143, + "13": 155, + "14": 165, + "15": 174, + "16": 182, + "score": 100, + "add_score": 8, + "gender": 2 + }, + { + "11": 131, + "12": 141, + "13": 153, + "14": 163, + "15": 172, + "16": 180, + "score": 100, + "add_score": 7, + "gender": 2 + }, + { + "11": 129, + "12": 139, + "13": 151, + "14": 161, + "15": 170, + "16": 178, + "score": 100, + "add_score": 6, + "gender": 2 + }, + { + "11": 127, + "12": 137, + "13": 149, + "14": 159, + "15": 168, + "16": 176, + "score": 100, + "add_score": 5, + "gender": 2 + }, + { + "11": 125, + "12": 135, + "13": 147, + "14": 157, + "15": 166, + "16": 174, + "score": 100, + "add_score": 4, + "gender": 2 + }, + { + "11": 123, + "12": 133, + "13": 145, + "14": 155, + "15": 164, + "16": 172, + "score": 100, + "add_score": 3, + "gender": 2 + }, + { + "11": 121, + "12": 131, + "13": 143, + "14": 153, + "15": 162, + "16": 170, + "score": 100, + "add_score": 2, + "gender": 2 + }, + { + "11": 119, + "12": 129, + "13": 141, + "14": 151, + "15": 160, + "16": 168, + "score": 100, + "add_score": 1, + "gender": 2 + }, + { + "11": 117, + "12": 127, + "13": 139, + "14": 149, + "15": 158, + "16": 166, + "score": 100, + "gender": 2 + }, + { + "11": 110, + "12": 120, + "13": 132, + "14": 142, + "15": 151, + "16": 159, + "score": 95, + "gender": 2 + }, + { + "11": 103, + "12": 113, + "13": 125, + "14": 135, + "15": 144, + "16": 152, + "score": 90, + "gender": 2 + }, + { + "11": 95, + "12": 105, + "13": 117, + "14": 127, + "15": 136, + "16": 144, + "score": 85, + "gender": 2 + }, + { + "11": 87, + "12": 97, + "13": 109, + "14": 119, + "15": 128, + "16": 136, + "score": 80, + "gender": 2 + }, + { + "11": 80, + "12": 90, + "13": 102, + "14": 112, + "15": 121, + "16": 129, + "score": 78, + "gender": 2 + }, + { + "11": 73, + "12": 83, + "13": 95, + "14": 105, + "15": 114, + "16": 122, + "score": 76, + "gender": 2 + }, + { + "11": 66, + "12": 76, + "13": 88, + "14": 98, + "15": 107, + "16": 115, + "score": 74, + "gender": 2 + }, + { + "11": 59, + "12": 69, + "13": 81, + "14": 91, + "15": 100, + "16": 108, + "score": 72, + "gender": 2 + }, + { + "11": 52, + "12": 62, + "13": 74, + "14": 84, + "15": 93, + "16": 101, + "score": 70, + "gender": 2 + }, + { + "11": 45, + "12": 55, + "13": 67, + "14": 77, + "15": 86, + "16": 94, + "score": 68, + "gender": 2 + }, + { + "11": 38, + "12": 48, + "13": 60, + "14": 70, + "15": 79, + "16": 87, + "score": 66, + "gender": 2 + }, + { + "11": 31, + "12": 41, + "13": 53, + "14": 63, + "15": 72, + "16": 80, + "score": 64, + "gender": 2 + }, + { + "11": 24, + "12": 34, + "13": 46, + "14": 56, + "15": 65, + "16": 73, + "score": 62, + "gender": 2 + }, + { + "11": 17, + "12": 27, + "13": 39, + "14": 49, + "15": 58, + "16": 66, + "score": 60, + "gender": 2 + }, + { + "11": 14, + "12": 24, + "13": 36, + "14": 46, + "15": 55, + "16": 63, + "score": 50, + "gender": 2 + }, + { + "11": 11, + "12": 21, + "13": 33, + "14": 43, + "15": 52, + "16": 60, + "score": 40, + "gender": 2 + }, + { + "11": 8, + "12": 18, + "13": 30, + "14": 40, + "15": 49, + "16": 57, + "score": 30, + "gender": 2 + }, + { + "11": 5, + "12": 15, + "13": 27, + "14": 37, + "15": 46, + "16": 54, + "score": 20, + "gender": 2 + }, + { + "11": 2, + "12": 12, + "13": 24, + "14": 34, + "15": 43, + "16": 51, + "score": 10, + "gender": 2 + }, + { + "11": 0, + "12": 0, + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "score": 0, + "gender": 2 + } + ] + }, + "standscore": { + "prop": "stand", + "fuhao": ">=", + "list": [ + { + "21": 225, + "22": 240, + "23": 250, + "31": 260, + "32": 265, + "33": 270, + "41": 273, + "42": 275, + "score": 100, + "gender": 1 + }, + { + "21": 218, + "22": 233, + "23": 245, + "31": 255, + "32": 260, + "33": 265, + "41": 268, + "42": 270, + "score": 95, + "gender": 1 + }, + { + "21": 211, + "22": 226, + "23": 240, + "31": 250, + "32": 255, + "33": 260, + "41": 263, + "42": 265, + "score": 90, + "gender": 1 + }, + { + "21": 203, + "22": 218, + "23": 233, + "31": 243, + "32": 248, + "33": 253, + "41": 256, + "42": 258, + "score": 85, + "gender": 1 + }, + { + "21": 195, + "22": 210, + "23": 225, + "31": 235, + "32": 240, + "33": 245, + "41": 248, + "42": 250, + "score": 80, + "gender": 1 + }, + { + "21": 191, + "22": 206, + "23": 221, + "31": 231, + "32": 236, + "33": 241, + "41": 244, + "42": 246, + "score": 78, + "gender": 1 + }, + { + "21": 187, + "22": 202, + "23": 217, + "31": 227, + "32": 232, + "33": 237, + "41": 240, + "42": 242, + "score": 76, + "gender": 1 + }, + { + "21": 183, + "22": 198, + "23": 213, + "31": 223, + "32": 228, + "33": 233, + "41": 236, + "42": 238, + "score": 74, + "gender": 1 + }, + { + "21": 179, + "22": 194, + "23": 209, + "31": 219, + "32": 224, + "33": 229, + "41": 232, + "42": 234, + "score": 72, + "gender": 1 + }, + { + "21": 175, + "22": 190, + "23": 205, + "31": 215, + "32": 220, + "33": 225, + "41": 228, + "42": 230, + "score": 70, + "gender": 1 + }, + { + "21": 171, + "22": 186, + "23": 201, + "31": 211, + "32": 216, + "33": 221, + "41": 224, + "42": 226, + "score": 68, + "gender": 1 + }, + { + "21": 167, + "22": 182, + "23": 197, + "31": 207, + "32": 212, + "33": 217, + "41": 220, + "42": 222, + "score": 66, + "gender": 1 + }, + { + "21": 163, + "22": 178, + "23": 193, + "31": 203, + "32": 208, + "33": 213, + "41": 216, + "42": 218, + "score": 64, + "gender": 1 + }, + { + "21": 159, + "22": 174, + "23": 189, + "31": 199, + "32": 204, + "33": 209, + "41": 212, + "42": 214, + "score": 62, + "gender": 1 + }, + { + "21": 155, + "22": 170, + "23": 185, + "31": 195, + "32": 200, + "33": 205, + "41": 208, + "42": 210, + "score": 60, + "gender": 1 + }, + { + "21": 150, + "22": 165, + "23": 180, + "31": 190, + "32": 195, + "33": 200, + "41": 203, + "42": 205, + "score": 50, + "gender": 1 + }, + { + "21": 145, + "22": 160, + "23": 175, + "31": 185, + "32": 190, + "33": 195, + "41": 198, + "42": 200, + "score": 40, + "gender": 1 + }, + { + "21": 140, + "22": 155, + "23": 170, + "31": 180, + "32": 185, + "33": 190, + "41": 193, + "42": 195, + "score": 30, + "gender": 1 + }, + { + "21": 135, + "22": 150, + "23": 165, + "31": 175, + "32": 180, + "33": 185, + "41": 188, + "42": 190, + "score": 20, + "gender": 1 + }, + { + "21": 130, + "22": 145, + "23": 160, + "31": 170, + "32": 175, + "33": 180, + "41": 183, + "42": 185, + "score": 10, + "gender": 1 + }, + { + "21": 0, + "22": 0, + "23": 0, + "31": 0, + "32": 0, + "33": 0, + "41": 0, + "42": 0, + "score": 0, + "gender": 1 + }, + { + "21": 196, + "22": 200, + "23": 202, + "31": 204, + "32": 205, + "33": 206, + "41": 207, + "42": 208, + "score": 100, + "gender": 2 + }, + { + "21": 190, + "22": 194, + "23": 196, + "31": 198, + "32": 199, + "33": 200, + "41": 201, + "42": 202, + "score": 95, + "gender": 2 + }, + { + "21": 184, + "22": 188, + "23": 190, + "31": 192, + "32": 193, + "33": 194, + "41": 195, + "42": 196, + "score": 90, + "gender": 2 + }, + { + "21": 177, + "22": 181, + "23": 183, + "31": 185, + "32": 186, + "33": 187, + "41": 188, + "42": 189, + "score": 85, + "gender": 2 + }, + { + "21": 170, + "22": 174, + "23": 176, + "31": 178, + "32": 179, + "33": 180, + "41": 181, + "42": 182, + "score": 80, + "gender": 2 + }, + { + "21": 167, + "22": 171, + "23": 173, + "31": 175, + "32": 176, + "33": 177, + "41": 178, + "42": 179, + "score": 78, + "gender": 2 + }, + { + "21": 164, + "22": 168, + "23": 170, + "31": 172, + "32": 173, + "33": 174, + "41": 175, + "42": 176, + "score": 76, + "gender": 2 + }, + { + "21": 161, + "22": 165, + "23": 167, + "31": 169, + "32": 170, + "33": 171, + "41": 172, + "42": 173, + "score": 74, + "gender": 2 + }, + { + "21": 158, + "22": 162, + "23": 164, + "31": 166, + "32": 167, + "33": 168, + "41": 169, + "42": 170, + "score": 72, + "gender": 2 + }, + { + "21": 155, + "22": 159, + "23": 161, + "31": 163, + "32": 164, + "33": 165, + "41": 166, + "42": 167, + "score": 70, + "gender": 2 + }, + { + "21": 152, + "22": 156, + "23": 158, + "31": 160, + "32": 161, + "33": 162, + "41": 163, + "42": 164, + "score": 68, + "gender": 2 + }, + { + "21": 149, + "22": 153, + "23": 155, + "31": 157, + "32": 158, + "33": 159, + "41": 160, + "42": 161, + "score": 66, + "gender": 2 + }, + { + "21": 146, + "22": 150, + "23": 152, + "31": 154, + "32": 155, + "33": 156, + "41": 157, + "42": 158, + "score": 64, + "gender": 2 + }, + { + "21": 143, + "22": 147, + "23": 149, + "31": 151, + "32": 152, + "33": 153, + "41": 154, + "42": 155, + "score": 62, + "gender": 2 + }, + { + "21": 140, + "22": 144, + "23": 146, + "31": 148, + "32": 149, + "33": 150, + "41": 151, + "42": 152, + "score": 60, + "gender": 2 + }, + { + "21": 135, + "22": 139, + "23": 141, + "31": 143, + "32": 144, + "33": 145, + "41": 146, + "42": 147, + "score": 50, + "gender": 2 + }, + { + "21": 130, + "22": 134, + "23": 136, + "31": 138, + "32": 139, + "33": 140, + "41": 141, + "42": 142, + "score": 40, + "gender": 2 + }, + { + "21": 125, + "22": 129, + "23": 131, + "31": 133, + "32": 134, + "33": 135, + "41": 136, + "42": 137, + "score": 30, + "gender": 2 + }, + { + "21": 120, + "22": 124, + "23": 126, + "31": 128, + "32": 129, + "33": 130, + "41": 131, + "42": 132, + "score": 20, + "gender": 2 + }, + { + "21": 115, + "22": 119, + "23": 121, + "31": 123, + "32": 124, + "33": 125, + "41": 126, + "42": 127, + "score": 10, + "gender": 2 + }, + { + "21": 0, + "22": 0, + "23": 0, + "31": 0, + "32": 0, + "33": 0, + "41": 0, + "42": 0, + "score": 0, + "gender": 2 + } + ] + }, + "situpscore": { + "prop": "situp", + "fuhao": ">=", + "list": [ + { + "13": 48, + "14": 49, + "15": 50, + "16": 51, + "score": 100, + "gender": 1 + }, + { + "13": 45, + "14": 46, + "15": 47, + "16": 48, + "score": 95, + "gender": 1 + }, + { + "13": 42, + "14": 43, + "15": 44, + "16": 45, + "score": 90, + "gender": 1 + }, + { + "13": 39, + "14": 40, + "15": 41, + "16": 42, + "score": 85, + "gender": 1 + }, + { + "13": 36, + "14": 37, + "15": 38, + "16": 39, + "score": 80, + "gender": 1 + }, + { + "13": 34, + "14": 35, + "15": 36, + "16": 37, + "score": 78, + "gender": 1 + }, + { + "13": 32, + "14": 33, + "15": 34, + "16": 35, + "score": 76, + "gender": 1 + }, + { + "13": 30, + "14": 31, + "15": 32, + "16": 33, + "score": 74, + "gender": 1 + }, + { + "13": 28, + "14": 29, + "15": 30, + "16": 31, + "score": 72, + "gender": 1 + }, + { + "13": 26, + "14": 27, + "15": 28, + "16": 29, + "score": 70, + "gender": 1 + }, + { + "13": 24, + "14": 25, + "15": 26, + "16": 27, + "score": 68, + "gender": 1 + }, + { + "13": 22, + "14": 23, + "15": 24, + "16": 25, + "score": 66, + "gender": 1 + }, + { + "13": 20, + "14": 21, + "15": 22, + "16": 23, + "score": 64, + "gender": 1 + }, + { + "13": 18, + "14": 19, + "15": 20, + "16": 21, + "score": 62, + "gender": 1 + }, + { + "13": 16, + "14": 17, + "15": 18, + "16": 19, + "score": 60, + "gender": 1 + }, + { + "13": 14, + "14": 15, + "15": 16, + "16": 17, + "score": 50, + "gender": 1 + }, + { + "13": 12, + "14": 13, + "15": 14, + "16": 15, + "score": 40, + "gender": 1 + }, + { + "13": 10, + "14": 11, + "15": 12, + "16": 13, + "score": 30, + "gender": 1 + }, + { + "13": 8, + "14": 9, + "15": 10, + "16": 11, + "score": 20, + "gender": 1 + }, + { + "13": 6, + "14": 7, + "15": 8, + "16": 9, + "score": 10, + "gender": 1 + }, + { + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "score": 0, + "gender": 1 + }, + { + "21": 63, + "22": 64, + "23": 65, + "31": 66, + "32": 67, + "33": 68, + "41": 69, + "42": 70, + "score": 100, + "add_score": 10, + "gender": 2 + }, + { + "21": 62, + "22": 63, + "23": 64, + "31": 65, + "32": 66, + "33": 67, + "41": 68, + "42": 69, + "score": 100, + "add_score": 9, + "gender": 2 + }, + { + "21": 61, + "22": 62, + "23": 63, + "31": 64, + "32": 65, + "33": 66, + "41": 67, + "42": 68, + "score": 100, + "add_score": 8, + "gender": 2 + }, + { + "21": 60, + "22": 61, + "23": 62, + "31": 63, + "32": 64, + "33": 65, + "41": 66, + "42": 67, + "score": 100, + "add_score": 7, + "gender": 2 + }, + { + "21": 59, + "22": 60, + "23": 61, + "31": 62, + "32": 63, + "33": 64, + "41": 65, + "42": 66, + "score": 100, + "add_score": 6, + "gender": 2 + }, + { + "21": 58, + "22": 59, + "23": 60, + "31": 61, + "32": 62, + "33": 63, + "41": 64, + "42": 65, + "score": 100, + "add_score": 5, + "gender": 2 + }, + { + "21": 57, + "22": 58, + "23": 59, + "31": 60, + "32": 61, + "33": 62, + "41": 63, + "42": 64, + "score": 100, + "add_score": 4, + "gender": 2 + }, + { + "21": 56, + "22": 57, + "23": 58, + "31": 59, + "32": 60, + "33": 61, + "41": 62, + "42": 63, + "score": 100, + "add_score": 3, + "gender": 2 + }, + { + "21": 55, + "22": 56, + "23": 57, + "31": 58, + "32": 59, + "33": 60, + "41": 61, + "42": 62, + "score": 100, + "add_score": 2, + "gender": 2 + }, + { + "21": 54, + "22": 55, + "23": 56, + "31": 57, + "32": 58, + "33": 59, + "41": 60, + "42": 61, + "score": 100, + "add_score": 1, + "gender": 2 + }, + { + "13": 46, + "14": 47, + "15": 48, + "16": 49, + "21": 50, + "22": 51, + "23": 52, + "31": 53, + "32": 54, + "33": 55, + "41": 56, + "42": 57, + "score": 100, + "gender": 2 + }, + { + "13": 44, + "14": 45, + "15": 46, + "16": 47, + "21": 48, + "22": 49, + "23": 50, + "31": 51, + "32": 52, + "33": 53, + "41": 54, + "42": 55, + "score": 95, + "gender": 2 + }, + { + "13": 42, + "14": 43, + "15": 44, + "16": 45, + "21": 46, + "22": 47, + "23": 48, + "31": 49, + "32": 50, + "33": 51, + "41": 52, + "42": 53, + "score": 90, + "gender": 2 + }, + { + "13": 39, + "14": 40, + "15": 41, + "16": 42, + "21": 43, + "22": 44, + "23": 45, + "31": 46, + "32": 47, + "33": 48, + "41": 49, + "42": 50, + "score": 85, + "gender": 2 + }, + { + "13": 36, + "14": 37, + "15": 38, + "16": 39, + "21": 40, + "22": 41, + "23": 42, + "31": 43, + "32": 44, + "33": 45, + "41": 46, + "42": 47, + "score": 80, + "gender": 2 + }, + { + "13": 34, + "14": 35, + "15": 36, + "16": 37, + "21": 38, + "22": 39, + "23": 40, + "31": 41, + "32": 42, + "33": 43, + "41": 44, + "42": 45, + "score": 78, + "gender": 2 + }, + { + "13": 32, + "14": 33, + "15": 34, + "16": 35, + "21": 36, + "22": 37, + "23": 38, + "31": 39, + "32": 40, + "33": 41, + "41": 42, + "42": 43, + "score": 76, + "gender": 2 + }, + { + "13": 30, + "14": 31, + "15": 32, + "16": 33, + "21": 34, + "22": 35, + "23": 36, + "31": 37, + "32": 38, + "33": 39, + "41": 40, + "42": 41, + "score": 74, + "gender": 2 + }, + { + "13": 28, + "14": 29, + "15": 30, + "16": 31, + "21": 32, + "22": 33, + "23": 34, + "31": 35, + "32": 36, + "33": 37, + "41": 38, + "42": 39, + "score": 72, + "gender": 2 + }, + { + "13": 26, + "14": 27, + "15": 28, + "16": 29, + "21": 30, + "22": 31, + "23": 32, + "31": 33, + "32": 34, + "33": 35, + "41": 36, + "42": 37, + "score": 70, + "gender": 2 + }, + { + "13": 24, + "14": 25, + "15": 26, + "16": 27, + "21": 28, + "22": 29, + "23": 30, + "31": 31, + "32": 32, + "33": 33, + "41": 34, + "42": 35, + "score": 68, + "gender": 2 + }, + { + "13": 22, + "14": 23, + "15": 24, + "16": 25, + "21": 26, + "22": 27, + "23": 28, + "31": 29, + "32": 30, + "33": 31, + "41": 32, + "42": 33, + "score": 66, + "gender": 2 + }, + { + "13": 20, + "14": 21, + "15": 22, + "16": 23, + "21": 24, + "22": 25, + "23": 26, + "31": 27, + "32": 28, + "33": 29, + "41": 30, + "42": 31, + "score": 64, + "gender": 2 + }, + { + "13": 18, + "14": 19, + "15": 20, + "16": 21, + "21": 22, + "22": 23, + "23": 24, + "31": 25, + "32": 26, + "33": 27, + "41": 28, + "42": 29, + "score": 62, + "gender": 2 + }, + { + "13": 16, + "14": 17, + "15": 18, + "16": 19, + "21": 20, + "22": 21, + "23": 22, + "31": 23, + "32": 24, + "33": 25, + "41": 26, + "42": 27, + "score": 60, + "gender": 2 + }, + { + "13": 14, + "14": 15, + "15": 16, + "16": 17, + "21": 18, + "22": 19, + "23": 20, + "31": 21, + "32": 22, + "33": 23, + "41": 24, + "42": 25, + "score": 50, + "gender": 2 + }, + { + "13": 12, + "14": 13, + "15": 14, + "16": 15, + "21": 16, + "22": 17, + "23": 18, + "31": 19, + "32": 20, + "33": 21, + "41": 22, + "42": 23, + "score": 40, + "gender": 2 + }, + { + "13": 10, + "14": 11, + "15": 12, + "16": 13, + "21": 14, + "22": 15, + "23": 16, + "31": 17, + "32": 18, + "33": 19, + "41": 20, + "42": 21, + "score": 30, + "gender": 2 + }, + { + "13": 8, + "14": 9, + "15": 10, + "16": 11, + "21": 12, + "22": 13, + "23": 14, + "31": 15, + "32": 16, + "33": 17, + "41": 18, + "42": 19, + "score": 20, + "gender": 2 + }, + { + "13": 6, + "14": 7, + "15": 8, + "16": 9, + "21": 10, + "22": 11, + "23": 12, + "31": 13, + "32": 14, + "33": 15, + "41": 16, + "42": 17, + "score": 10, + "gender": 2 + }, + { + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "21": 0, + "22": 0, + "23": 0, + "31": 0, + "32": 0, + "33": 0, + "41": 0, + "42": 0, + "score": 0, + "gender": 2 + } + ] + }, + "fiftyeightscore": { + "prop": "fiftyeight", + "fuhao": "<=", + "list": [ + { + "15": "1'36\"", + "16": "1'30\"", + "21": "3'55\"", + "22": "3'50\"", + "23": "3'40\"", + "31": "3'30\"", + "32": "3'25\"", + "33": "3'20\"", + "41": "3'17\"", + "42": "3'15\"", + "score": 100, + "gender": 1 + }, + { + "15": "1'39\"", + "16": "1'33\"", + "21": "4'05\"", + "22": "3'55\"", + "23": "3'45\"", + "31": "3'35\"", + "32": "3'30\"", + "33": "3'25\"", + "41": "3'22\"", + "42": "3'20\"", + "score": 95, + "gender": 1 + }, + { + "15": "1'42\"", + "16": "1'36\"", + "21": "4'15\"", + "22": "4'00\"", + "23": "3'50\"", + "31": "3'40\"", + "32": "3'35\"", + "33": "3'30\"", + "41": "3'27\"", + "42": "3'25\"", + "score": 90, + "gender": 1 + }, + { + "15": "1'45\"", + "16": "1'39\"", + "21": "4'22\"", + "22": "4'07\"", + "23": "3'57\"", + "31": "3'47\"", + "32": "3'42\"", + "33": "3'37\"", + "41": "3'34\"", + "42": "3'32\"", + "score": 85, + "gender": 1 + }, + { + "15": "1'48\"", + "16": "1'42\"", + "21": "4'30\"", + "22": "4'15\"", + "23": "4'05\"", + "31": "3'55\"", + "32": "3'50\"", + "33": "3'45\"", + "41": "3'42\"", + "42": "3'40\"", + "score": 80, + "gender": 1 + }, + { + "15": "1'51\"", + "16": "1'45\"", + "21": "4'35\"", + "22": "4'20\"", + "23": "4'10\"", + "31": "4'00\"", + "32": "3'55\"", + "33": "3'50\"", + "41": "3'47\"", + "42": "3'45\"", + "score": 78, + "gender": 1 + }, + { + "15": "1'54\"", + "16": "1'48\"", + "21": "4'40\"", + "22": "4'25\"", + "23": "4'15\"", + "31": "4'05\"", + "32": "4'00\"", + "33": "3'55\"", + "41": "3'52\"", + "42": "3'50\"", + "score": 76, + "gender": 1 + }, + { + "15": "1'57\"", + "16": "1'51\"", + "21": "4'45\"", + "22": "4'30\"", + "23": "4'20\"", + "31": "4'10\"", + "32": "4'05\"", + "33": "4'00\"", + "41": "3'57\"", + "42": "3'55\"", + "score": 74, + "gender": 1 + }, + { + "15": "2'00\"", + "16": "1'54\"", + "21": "4'50\"", + "22": "4'35\"", + "23": "4'25\"", + "31": "4'15\"", + "32": "4'10\"", + "33": "4'05\"", + "41": "4'02\"", + "42": "4'00\"", + "score": 72, + "gender": 1 + }, + { + "15": "2'03\"", + "16": "1'57\"", + "21": "4'55\"", + "22": "4'40\"", + "23": "4'30\"", + "31": "4'20\"", + "32": "4'15\"", + "33": "4'10\"", + "41": "4'07\"", + "42": "4'05\"", + "score": 70, + "gender": 1 + }, + { + "15": "2'06\"", + "16": "2'00\"", + "21": "5'00\"", + "22": "4'45\"", + "23": "4'35\"", + "31": "4'25\"", + "32": "4'20\"", + "33": "4'15\"", + "41": "4'12\"", + "42": "4'10\"", + "score": 68, + "gender": 1 + }, + { + "15": "2'09\"", + "16": "2'03\"", + "21": "5'05\"", + "22": "4'50\"", + "23": "4'40\"", + "31": "4'30\"", + "32": "4'25\"", + "33": "4'20\"", + "41": "4'17\"", + "42": "4'15\"", + "score": 66, + "gender": 1 + }, + { + "15": "2'12\"", + "16": "2'06\"", + "21": "5'10\"", + "22": "4'55\"", + "23": "4'45\"", + "31": "4'35\"", + "32": "4'30\"", + "33": "4'25\"", + "41": "4'22\"", + "42": "4'20\"", + "score": 64, + "gender": 1 + }, + { + "15": "2'15\"", + "16": "2'09\"", + "21": "5'15\"", + "22": "5'00\"", + "23": "4'50\"", + "31": "4'40\"", + "32": "4'35\"", + "33": "4'30\"", + "41": "4'27\"", + "42": "4'25\"", + "score": 62, + "gender": 1 + }, + { + "15": "2'18\"", + "16": "2'12\"", + "21": "5'20\"", + "22": "5'05\"", + "23": "4'55\"", + "31": "4'45\"", + "32": "4'40\"", + "33": "4'35\"", + "41": "4'32\"", + "42": "4'30\"", + "score": 60, + "gender": 1 + }, + { + "15": "2'22\"", + "16": "2'16\"", + "21": "5'40\"", + "22": "5'25\"", + "23": "5'15\"", + "31": "5'05\"", + "32": "5'00\"", + "33": "4'55\"", + "41": "4'52\"", + "42": "4'50\"", + "score": 50, + "gender": 1 + }, + { + "15": "2'26\"", + "16": "2'20\"", + "21": "6'00\"", + "22": "5'45\"", + "23": "5'35\"", + "31": "5'25\"", + "32": "5'20\"", + "33": "5'15\"", + "41": "5'12\"", + "42": "5'10\"", + "score": 40, + "gender": 1 + }, + { + "15": "2'30\"", + "16": "2'24\"", + "21": "6'20\"", + "22": "6'05\"", + "23": "5'55\"", + "31": "5'45\"", + "32": "5'40\"", + "33": "5'35\"", + "41": "5'32\"", + "42": "5'30\"", + "score": 30, + "gender": 1 + }, + { + "15": "2'34\"", + "16": "2'28\"", + "21": "6'40\"", + "22": "6'25\"", + "23": "6'15\"", + "31": "6'05\"", + "32": "6'00\"", + "33": "5'55\"", + "41": "5'52\"", + "42": "5'50\"", + "score": 20, + "gender": 1 + }, + { + "15": "2'38\"", + "16": "2'32\"", + "21": "7'00\"", + "22": "6'45\"", + "23": "6'35\"", + "31": "6'25\"", + "32": "6'20\"", + "33": "6'15\"", + "41": "6'12\"", + "42": "6'10\"", + "score": 10, + "gender": 1 + }, + { + "15": 999999, + "16": 999999, + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "42": 999999, + "score": 0, + "gender": 1 + }, + { + "15": "1'41\"", + "16": "1'37\"", + "21": "3'35\"", + "22": "3'30\"", + "23": "3'25\"", + "31": "3'24\"", + "32": "3'22\"", + "33": "3'20\"", + "41": "3'18\"", + "42": "3'16\"", + "score": 100, + "gender": 2 + }, + { + "15": "1'44\"", + "16": "1'40\"", + "21": "3'42\"", + "22": "3'37\"", + "23": "3'32\"", + "31": "3'30\"", + "32": "3'28\"", + "33": "3'26\"", + "41": "3'24\"", + "42": "3'22\"", + "score": 95, + "gender": 2 + }, + { + "15": "1'47\"", + "16": "1'43\"", + "21": "3'49\"", + "22": "3'44\"", + "23": "3'39\"", + "31": "3'36\"", + "32": "3'34\"", + "33": "3'32\"", + "41": "3'30\"", + "42": "3'28\"", + "score": 90, + "gender": 2 + }, + { + "15": "1'50\"", + "16": "1'46\"", + "21": "3'57\"", + "22": "3'52\"", + "23": "3'47\"", + "31": "3'43\"", + "32": "3'41\"", + "33": "3'39\"", + "41": "3'37\"", + "42": "3'35\"", + "score": 85, + "gender": 2 + }, + { + "15": "1'53\"", + "16": "1'49\"", + "21": "4'05\"", + "22": "4'00\"", + "23": "3'55\"", + "31": "3'50\"", + "32": "3'48\"", + "33": "3'46\"", + "41": "3'44\"", + "42": "3'42\"", + "score": 80, + "gender": 2 + }, + { + "15": "1'56\"", + "16": "1'52\"", + "21": "4'10\"", + "22": "4'05\"", + "23": "4'00\"", + "31": "3'55\"", + "32": "3'53\"", + "33": "3'51\"", + "41": "3'49\"", + "42": "3'47\"", + "score": 78, + "gender": 2 + }, + { + "15": "1'59\"", + "16": "1'55\"", + "21": "4'15\"", + "22": "4'10\"", + "23": "4'05\"", + "31": "4'00\"", + "32": "3'58\"", + "33": "3'56\"", + "41": "3'54\"", + "42": "3'52\"", + "score": 76, + "gender": 2 + }, + { + "15": "2'02\"", + "16": "1'58\"", + "21": "4'20\"", + "22": "4'15\"", + "23": "4'10\"", + "31": "4'05\"", + "32": "4'03\"", + "33": "4'01\"", + "41": "3'59\"", + "42": "3'57\"", + "score": 74, + "gender": 2 + }, + { + "15": "2'05\"", + "16": "2'01\"", + "21": "4'25\"", + "22": "4'20\"", + "23": "4'15\"", + "31": "4'10\"", + "32": "4'08\"", + "33": "4'06\"", + "41": "4'04\"", + "42": "4'02\"", + "score": 72, + "gender": 2 + }, + { + "15": "2'08\"", + "16": "2'04\"", + "21": "4'30\"", + "22": "4'25\"", + "23": "4'20\"", + "31": "4'15\"", + "32": "4'13\"", + "33": "4'11\"", + "41": "4'09\"", + "42": "4'07\"", + "score": 70, + "gender": 2 + }, + { + "15": "2'11\"", + "16": "2'07\"", + "21": "4'35\"", + "22": "4'30\"", + "23": "4'25\"", + "31": "4'20\"", + "32": "4'18\"", + "33": "4'16\"", + "41": "4'14\"", + "42": "4'12\"", + "score": 68, + "gender": 2 + }, + { + "15": "2'14\"", + "16": "2'10\"", + "21": "4'40\"", + "22": "4'35\"", + "23": "4'30\"", + "31": "4'25\"", + "32": "4'23\"", + "33": "4'21\"", + "41": "4'19\"", + "42": "4'17\"", + "score": 66, + "gender": 2 + }, + { + "15": "2'17\"", + "16": "2'13\"", + "21": "4'45\"", + "22": "4'40\"", + "23": "4'35\"", + "31": "4'30\"", + "32": "4'28\"", + "33": "4'26\"", + "41": "4'24\"", + "42": "4'22\"", + "score": 64, + "gender": 2 + }, + { + "15": "2'20\"", + "16": "2'16\"", + "21": "4'50\"", + "22": "4'45\"", + "23": "4'40\"", + "31": "4'35\"", + "32": "4'33\"", + "33": "4'31\"", + "41": "4'29\"", + "42": "4'27\"", + "score": 62, + "gender": 2 + }, + { + "15": "2'23\"", + "16": "2'19\"", + "21": "4'55\"", + "22": "4'50\"", + "23": "4'45\"", + "31": "4'40\"", + "32": "4'38\"", + "33": "4'36\"", + "41": "4'34\"", + "42": "4'32\"", + "score": 60, + "gender": 2 + }, + { + "15": "2'27\"", + "16": "2'23\"", + "21": "5'05\"", + "22": "5'00\"", + "23": "4'55\"", + "31": "4'50\"", + "32": "4'48\"", + "33": "4'46\"", + "41": "4'44\"", + "42": "4'42\"", + "score": 50, + "gender": 2 + }, + { + "15": "2'31\"", + "16": "2'27\"", + "21": "5'15\"", + "22": "5'10\"", + "23": "5'05\"", + "31": "5'00\"", + "32": "4'58\"", + "33": "4'56\"", + "41": "4'54\"", + "42": "4'52\"", + "score": 40, + "gender": 2 + }, + { + "15": "2'35\"", + "16": "2'31\"", + "21": "5'25\"", + "22": "5'20\"", + "23": "5'15\"", + "31": "5'10\"", + "32": "5'08\"", + "33": "5'06\"", + "41": "5'04\"", + "42": "5'02\"", + "score": 30, + "gender": 2 + }, + { + "15": "2'39\"", + "16": "2'35\"", + "21": "5'35\"", + "22": "5'30\"", + "23": "5'25\"", + "31": "5'20\"", + "32": "5'18\"", + "33": "5'16\"", + "41": "5'14\"", + "42": "5'12\"", + "score": 20, + "gender": 2 + }, + { + "15": "2'43\"", + "16": "2'39\"", + "21": "5'45\"", + "22": "5'40\"", + "23": "5'35\"", + "31": "5'30\"", + "32": "5'28\"", + "33": "5'26\"", + "41": "5'24\"", + "42": "5'22\"", + "score": 10, + "gender": 2 + }, + { + "15": 999999, + "16": 999999, + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "42": 999999, + "score": 0, + "gender": 2 + } + ] + }, + "eightyscore": { + "prop": "eighty", + "fuhao": "<=", + "list": [ + { + "21": "2'45\"", + "22": "2'40\"", + "23": "2'35\"", + "31": "2'34\"", + "32": "2'32\"", + "33": "2'30\"", + "41": "2'28\"", + "42": "2'26\"", + "score": 100, + "add_score": 10, + "gender": 2 + }, + { + "21": "2'50\"", + "22": "2'45\"", + "23": "2'40\"", + "31": "2'39\"", + "32": "2'37\"", + "33": "2'35\"", + "41": "2'33\"", + "42": "2'31\"", + "score": 100, + "add_score": 9, + "gender": 2 + }, + { + "21": "2'55\"", + "22": "2'50\"", + "23": "2'45\"", + "31": "2'44\"", + "32": "2'42\"", + "33": "2'40\"", + "41": "2'38\"", + "42": "2'36\"", + "score": 100, + "add_score": 8, + "gender": 2 + }, + { + "21": "3'00\"", + "22": "2'55\"", + "23": "2'50\"", + "31": "2'49\"", + "32": "2'47\"", + "33": "2'45\"", + "41": "2'43\"", + "42": "2'41\"", + "score": 100, + "add_score": 7, + "gender": 2 + }, + { + "21": "3'05\"", + "22": "3'00\"", + "23": "2'55\"", + "31": "2'54\"", + "32": "2'52\"", + "33": "2'50\"", + "41": "2'48\"", + "42": "2'46\"", + "score": 100, + "add_score": 6, + "gender": 2 + }, + { + "21": "3'10\"", + "22": "3'05\"", + "23": "3'00\"", + "31": "2'59\"", + "32": "2'57\"", + "33": "2'55\"", + "41": "2'53\"", + "42": "2'51\"", + "score": 100, + "add_score": 5, + "gender": 2 + }, + { + "21": "3'15\"", + "22": "3'10\"", + "23": "3'05\"", + "31": "3'04\"", + "32": "3'02\"", + "33": "3'00\"", + "41": "2'58\"", + "42": "2'56\"", + "score": 100, + "add_score": 4, + "gender": 2 + }, + { + "21": "3'20\"", + "22": "3'15\"", + "23": "3'10\"", + "31": "3'09\"", + "32": "3'07\"", + "33": "3'05\"", + "41": "3'03\"", + "42": "2'61\"", + "score": 100, + "add_score": 3, + "gender": 2 + }, + { + "21": "3'25\"", + "22": "3'20\"", + "23": "3'15\"", + "31": "3'14\"", + "32": "3'12\"", + "33": "3'10\"", + "41": "3'08\"", + "42": "3'06\"", + "score": 100, + "add_score": 2, + "gender": 2 + }, + { + "21": "3'30\"", + "22": "3'25\"", + "23": "3'20\"", + "31": "3'19\"", + "32": "3'17\"", + "33": "3'15\"", + "41": "3'13\"", + "42": "3'11\"", + "score": 100, + "add_score": 1, + "gender": 2 + }, + { + "21": "3'35\"", + "22": "3'30\"", + "23": "3'25\"", + "31": "3'24\"", + "32": "3'22\"", + "33": "3'20\"", + "41": "3'18\"", + "42": "3'16\"", + "score": 100, + "gender": 2 + }, + { + "21": "3'42\"", + "22": "3'37\"", + "23": "3'32\"", + "31": "3'30\"", + "32": "3'28\"", + "33": "3'26\"", + "41": "3'24\"", + "42": "3'22\"", + "score": 95, + "gender": 2 + }, + { + "21": "3'49\"", + "22": "3'44\"", + "23": "3'39\"", + "31": "3'36\"", + "32": "3'34\"", + "33": "3'32\"", + "41": "3'30\"", + "42": "3'28\"", + "score": 90, + "gender": 2 + }, + { + "21": "3'57\"", + "22": "3'52\"", + "23": "3'47\"", + "31": "3'43\"", + "32": "3'41\"", + "33": "3'39\"", + "41": "3'37\"", + "42": "3'35\"", + "score": 85, + "gender": 2 + }, + { + "21": "4'05\"", + "22": "4'00\"", + "23": "3'55\"", + "31": "3'50\"", + "32": "3'48\"", + "33": "3'46\"", + "41": "3'44\"", + "42": "3'42\"", + "score": 80, + "gender": 2 + }, + { + "21": "4'10\"", + "22": "4'05\"", + "23": "4'00\"", + "31": "3'55\"", + "32": "3'53\"", + "33": "3'51\"", + "41": "3'49\"", + "42": "3'47\"", + "score": 78, + "gender": 2 + }, + { + "21": "4'15\"", + "22": "4'10\"", + "23": "4'05\"", + "31": "4'00\"", + "32": "3'58\"", + "33": "3'56\"", + "41": "3'54\"", + "42": "3'52\"", + "score": 76, + "gender": 2 + }, + { + "21": "4'20\"", + "22": "4'15\"", + "23": "4'10\"", + "31": "4'05\"", + "32": "4'03\"", + "33": "4'01\"", + "41": "3'59\"", + "42": "3'57\"", + "score": 74, + "gender": 2 + }, + { + "21": "4'25\"", + "22": "4'20\"", + "23": "4'15\"", + "31": "4'10\"", + "32": "4'08\"", + "33": "4'06\"", + "41": "4'04\"", + "42": "4'02\"", + "score": 72, + "gender": 2 + }, + { + "21": "4'30\"", + "22": "4'25\"", + "23": "4'20\"", + "31": "4'15\"", + "32": "4'13\"", + "33": "4'11\"", + "41": "4'09\"", + "42": "4'07\"", + "score": 70, + "gender": 2 + }, + { + "21": "4'35\"", + "22": "4'30\"", + "23": "4'25\"", + "31": "4'20\"", + "32": "4'18\"", + "33": "4'16\"", + "41": "4'14\"", + "42": "4'12\"", + "score": 68, + "gender": 2 + }, + { + "21": "4'40\"", + "22": "4'35\"", + "23": "4'30\"", + "31": "4'25\"", + "32": "4'23\"", + "33": "4'21\"", + "41": "4'19\"", + "42": "4'17\"", + "score": 66, + "gender": 2 + }, + { + "21": "4'45\"", + "22": "4'40\"", + "23": "4'35\"", + "31": "4'30\"", + "32": "4'28\"", + "33": "4'26\"", + "41": "4'24\"", + "42": "4'22\"", + "score": 64, + "gender": 2 + }, + { + "21": "4'50\"", + "22": "4'45\"", + "23": "4'40\"", + "31": "4'35\"", + "32": "4'33\"", + "33": "4'31\"", + "41": "4'29\"", + "42": "4'27\"", + "score": 62, + "gender": 2 + }, + { + "21": "4'55\"", + "22": "4'50\"", + "23": "4'45\"", + "31": "4'40\"", + "32": "4'38\"", + "33": "4'36\"", + "41": "4'34\"", + "42": "4'32\"", + "score": 60, + "gender": 2 + }, + { + "21": "5'05\"", + "22": "5'00\"", + "23": "4'55\"", + "31": "4'50\"", + "32": "4'48\"", + "33": "4'46\"", + "41": "4'44\"", + "42": "4'42\"", + "score": 50, + "gender": 2 + }, + { + "21": "5'15\"", + "22": "5'10\"", + "23": "5'05\"", + "31": "5'00\"", + "32": "4'58\"", + "33": "4'56\"", + "41": "4'54\"", + "42": "4'52\"", + "score": 40, + "gender": 2 + }, + { + "21": "5'25\"", + "22": "5'20\"", + "23": "5'15\"", + "31": "5'10\"", + "32": "5'08\"", + "33": "5'06\"", + "41": "5'04\"", + "42": "5'02\"", + "score": 30, + "gender": 2 + }, + { + "21": "5'35\"", + "22": "5'30\"", + "23": "5'25\"", + "31": "5'20\"", + "32": "5'18\"", + "33": "5'16\"", + "41": "5'14\"", + "42": "5'12\"", + "score": 20, + "gender": 2 + }, + { + "21": "5'45\"", + "22": "5'40\"", + "23": "5'35\"", + "31": "5'30\"", + "32": "5'28\"", + "33": "5'26\"", + "41": "5'24\"", + "42": "5'22\"", + "score": 10, + "gender": 2 + }, + { + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "42": 999999, + "score": 0, + "gender": 2 + } + ] + }, + "thousandscore": { + "prop": "thousand", + "fuhao": "<=", + "list": [ + { + "21": "3'20\"", + "22": "3'15\"", + "23": "3'05\"", + "31": "2'55\"", + "32": "2'50\"", + "33": "2'45\"", + "41": "2'42\"", + "42": "2'40\"", + "score": 100, + "add_score": 10, + "gender": 1 + }, + { + "21": "3'23\"", + "22": "3'18\"", + "23": "3'08\"", + "31": "2'58\"", + "32": "2'53\"", + "33": "2'48\"", + "41": "2'45\"", + "42": "2'43\"", + "score": 100, + "add_score": 9, + "gender": 1 + }, + { + "21": "3'26\"", + "22": "3'21\"", + "23": "3'11\"", + "31": "3'01\"", + "32": "2'56\"", + "33": "2'51\"", + "41": "2'48\"", + "42": "2'46\"", + "score": 100, + "add_score": 8, + "gender": 1 + }, + { + "21": "3'29\"", + "22": "3'24\"", + "23": "3'14\"", + "31": "3'04\"", + "32": "2'59\"", + "33": "2'54\"", + "41": "2'51\"", + "42": "2'49\"", + "score": 100, + "add_score": 7, + "gender": 1 + }, + { + "21": "3'32\"", + "22": "3'27\"", + "23": "3'17\"", + "31": "3'07\"", + "32": "3'02\"", + "33": "2'57\"", + "41": "2'54\"", + "42": "2'52\"", + "score": 100, + "add_score": 6, + "gender": 1 + }, + { + "21": "3'35\"", + "22": "3'30\"", + "23": "3'20\"", + "31": "3'10\"", + "32": "3'05\"", + "33": "3'00\"", + "41": "2'57\"", + "42": "2'55\"", + "score": 100, + "add_score": 5, + "gender": 1 + }, + { + "21": "3'39\"", + "22": "3'34\"", + "23": "3'24\"", + "31": "3'14\"", + "32": "3'09\"", + "33": "3'04\"", + "41": "3'01\"", + "42": "2'59\"", + "score": 100, + "add_score": 4, + "gender": 1 + }, + { + "21": "3'43\"", + "22": "3'38\"", + "23": "3'28\"", + "31": "3'18\"", + "32": "3'13\"", + "33": "3'08\"", + "41": "3'05\"", + "42": "3'03\"", + "score": 100, + "add_score": 3, + "gender": 1 + }, + { + "21": "3'47\"", + "22": "3'42\"", + "23": "3'32\"", + "31": "3'22\"", + "32": "3'17\"", + "33": "3'12\"", + "41": "3'09\"", + "42": "3'07\"", + "score": 100, + "add_score": 2, + "gender": 1 + }, + { + "21": "3'51\"", + "22": "3'46\"", + "23": "3'36\"", + "31": "3'26\"", + "32": "3'21\"", + "33": "3'16\"", + "41": "3'13\"", + "42": "3'11\"", + "score": 100, + "add_score": 1, + "gender": 1 + }, + { + "21": "3'55\"", + "22": "3'50\"", + "23": "3'40\"", + "31": "3'30\"", + "32": "3'25\"", + "33": "3'20\"", + "41": "3'17\"", + "42": "3'15\"", + "score": 100, + "gender": 1 + }, + { + "21": "4'05\"", + "22": "3'55\"", + "23": "3'45\"", + "31": "3'35\"", + "32": "3'30\"", + "33": "3'25\"", + "41": "3'22\"", + "42": "3'20\"", + "score": 95, + "gender": 1 + }, + { + "21": "4'15\"", + "22": "4'00\"", + "23": "3'50\"", + "31": "3'40\"", + "32": "3'35\"", + "33": "3'30\"", + "41": "3'27\"", + "42": "3'25\"", + "score": 90, + "gender": 1 + }, + { + "21": "4'22\"", + "22": "4'07\"", + "23": "3'57\"", + "31": "3'47\"", + "32": "3'42\"", + "33": "3'37\"", + "41": "3'34\"", + "42": "3'32\"", + "score": 85, + "gender": 1 + }, + { + "21": "4'30\"", + "22": "4'15\"", + "23": "4'05\"", + "31": "3'55\"", + "32": "3'50\"", + "33": "3'45\"", + "41": "3'42\"", + "42": "3'40\"", + "score": 80, + "gender": 1 + }, + { + "21": "4'35\"", + "22": "4'20\"", + "23": "4'10\"", + "31": "4'00\"", + "32": "3'55\"", + "33": "3'50\"", + "41": "3'47\"", + "42": "3'45\"", + "score": 78, + "gender": 1 + }, + { + "21": "4'40\"", + "22": "4'25\"", + "23": "4'15\"", + "31": "4'05\"", + "32": "4'00\"", + "33": "3'55\"", + "41": "3'52\"", + "42": "3'50\"", + "score": 76, + "gender": 1 + }, + { + "21": "4'45\"", + "22": "4'30\"", + "23": "4'20\"", + "31": "4'10\"", + "32": "4'05\"", + "33": "4'00\"", + "41": "3'57\"", + "42": "3'55\"", + "score": 74, + "gender": 1 + }, + { + "21": "4'50\"", + "22": "4'35\"", + "23": "4'25\"", + "31": "4'15\"", + "32": "4'10\"", + "33": "4'05\"", + "41": "4'02\"", + "42": "4'00\"", + "score": 72, + "gender": 1 + }, + { + "21": "4'55\"", + "22": "4'40\"", + "23": "4'30\"", + "31": "4'20\"", + "32": "4'15\"", + "33": "4'10\"", + "41": "4'07\"", + "42": "4'05\"", + "score": 70, + "gender": 1 + }, + { + "21": "5'00\"", + "22": "4'45\"", + "23": "4'35\"", + "31": "4'25\"", + "32": "4'20\"", + "33": "4'15\"", + "41": "4'12\"", + "42": "4'10\"", + "score": 68, + "gender": 1 + }, + { + "21": "5'05\"", + "22": "4'50\"", + "23": "4'40\"", + "31": "4'30\"", + "32": "4'25\"", + "33": "4'20\"", + "41": "4'17\"", + "42": "4'15\"", + "score": 66, + "gender": 1 + }, + { + "21": "5'10\"", + "22": "4'55\"", + "23": "4'45\"", + "31": "4'35\"", + "32": "4'30\"", + "33": "4'25\"", + "41": "4'22\"", + "42": "4'20\"", + "score": 64, + "gender": 1 + }, + { + "21": "5'15\"", + "22": "5'00\"", + "23": "4'50\"", + "31": "4'40\"", + "32": "4'35\"", + "33": "4'30\"", + "41": "4'27\"", + "42": "4'25\"", + "score": 62, + "gender": 1 + }, + { + "21": "5'20\"", + "22": "5'05\"", + "23": "4'55\"", + "31": "4'45\"", + "32": "4'40\"", + "33": "4'35\"", + "41": "4'32\"", + "42": "4'30\"", + "score": 60, + "gender": 1 + }, + { + "21": "5'40\"", + "22": "5'25\"", + "23": "5'15\"", + "31": "5'05\"", + "32": "5'00\"", + "33": "4'55\"", + "41": "4'52\"", + "42": "4'50\"", + "score": 50, + "gender": 1 + }, + { + "21": "6'00\"", + "22": "5'45\"", + "23": "5'35\"", + "31": "5'25\"", + "32": "5'20\"", + "33": "5'15\"", + "41": "5'12\"", + "42": "5'10\"", + "score": 40, + "gender": 1 + }, + { + "21": "6'20\"", + "22": "6'05\"", + "23": "5'55\"", + "31": "5'45\"", + "32": "5'40\"", + "33": "5'35\"", + "41": "5'32\"", + "42": "5'30\"", + "score": 30, + "gender": 1 + }, + { + "21": "6'40\"", + "22": "6'25\"", + "23": "6'15\"", + "31": "6'05\"", + "32": "6'00\"", + "33": "5'55\"", + "41": "5'52\"", + "42": "5'50\"", + "score": 20, + "gender": 1 + }, + { + "21": "7'00\"", + "22": "6'45\"", + "23": "6'35\"", + "31": "6'25\"", + "32": "6'20\"", + "33": "6'15\"", + "41": "6'12\"", + "42": "6'10\"", + "score": 10, + "gender": 1 + }, + { + "21": 999999, + "22": 999999, + "23": 999999, + "31": 999999, + "32": 999999, + "33": 999999, + "41": 999999, + "42": 999999, + "score": 0, + "gender": 1 + } + ] + }, + "pullupscore": { + "prop": "pullup", + "fuhao": ">=", + "list": [ + { + "21": 23, + "22": 24, + "23": 25, + "31": 26, + "32": 27, + "33": 28, + "41": 29, + "42": 30, + "score": 100, + "add_score": 10, + "gender": 1 + }, + { + "21": 22, + "22": 23, + "23": 24, + "31": 25, + "32": 26, + "33": 27, + "41": 28, + "42": 29, + "score": 100, + "add_score": 9, + "gender": 1 + }, + { + "21": 21, + "22": 22, + "23": 23, + "31": 24, + "32": 25, + "33": 26, + "41": 27, + "42": 28, + "score": 100, + "add_score": 8, + "gender": 1 + }, + { + "21": 20, + "22": 21, + "23": 22, + "31": 23, + "32": 24, + "33": 25, + "41": 26, + "42": 27, + "score": 100, + "add_score": 7, + "gender": 1 + }, + { + "21": 19, + "22": 20, + "23": 21, + "31": 22, + "32": 23, + "33": 24, + "41": 25, + "42": 26, + "score": 100, + "add_score": 6, + "gender": 1 + }, + { + "21": 18, + "22": 19, + "23": 20, + "31": 21, + "32": 22, + "33": 23, + "41": 24, + "42": 25, + "score": 100, + "add_score": 5, + "gender": 1 + }, + { + "21": 17, + "22": 18, + "23": 19, + "31": 20, + "32": 21, + "33": 22, + "41": 23, + "42": 24, + "score": 100, + "add_score": 4, + "gender": 1 + }, + { + "21": 16, + "22": 17, + "23": 18, + "31": 19, + "32": 20, + "33": 21, + "41": 22, + "42": 23, + "score": 100, + "add_score": 3, + "gender": 1 + }, + { + "21": 15, + "22": 16, + "23": 17, + "31": 18, + "32": 19, + "33": 20, + "41": 21, + "42": 22, + "score": 100, + "add_score": 2, + "gender": 1 + }, + { + "21": 14, + "22": 15, + "23": 16, + "31": 17, + "32": 18, + "33": 19, + "41": 20, + "42": 21, + "score": 100, + "add_score": 1, + "gender": 1 + }, + { + "21": 13, + "22": 14, + "23": 15, + "31": 16, + "32": 17, + "33": 18, + "41": 19, + "42": 20, + "score": 100, + "gender": 1 + }, + { + "21": 12, + "22": 13, + "23": 14, + "31": 15, + "32": 16, + "33": 17, + "41": 18, + "42": 19, + "score": 95, + "gender": 1 + }, + { + "21": 11, + "22": 12, + "23": 13, + "31": 14, + "32": 15, + "33": 16, + "41": 17, + "42": 18, + "score": 90, + "gender": 1 + }, + { + "21": 10, + "22": 11, + "23": 12, + "31": 13, + "32": 14, + "33": 15, + "41": 16, + "42": 17, + "score": 85, + "gender": 1 + }, + { + "21": 9, + "22": 10, + "23": 11, + "31": 12, + "32": 13, + "33": 14, + "41": 15, + "42": 16, + "score": 80, + "gender": 1 + }, + { + "21": 8, + "22": 9, + "23": 10, + "31": 11, + "32": 12, + "33": 13, + "41": 14, + "42": 15, + "score": 76, + "gender": 1 + }, + { + "21": 7, + "22": 8, + "23": 9, + "31": 10, + "32": 11, + "33": 12, + "41": 13, + "42": 14, + "score": 72, + "gender": 1 + }, + { + "21": 6, + "22": 7, + "23": 8, + "31": 9, + "32": 10, + "33": 11, + "41": 12, + "42": 13, + "score": 68, + "gender": 1 + }, + { + "21": 5, + "22": 6, + "23": 7, + "31": 8, + "32": 9, + "33": 10, + "41": 11, + "42": 12, + "score": 64, + "gender": 1 + }, + { + "21": 4, + "22": 5, + "23": 6, + "31": 7, + "32": 8, + "33": 9, + "41": 10, + "42": 11, + "score": 60, + "gender": 1 + }, + { + "21": 3, + "22": 4, + "23": 5, + "31": 6, + "32": 7, + "33": 8, + "41": 9, + "42": 10, + "score": 50, + "gender": 1 + }, + { + "21": 2, + "22": 3, + "23": 4, + "31": 5, + "32": 6, + "33": 7, + "41": 8, + "42": 9, + "score": 40, + "gender": 1 + }, + { + "21": 1, + "22": 2, + "23": 3, + "31": 4, + "32": 5, + "33": 6, + "41": 7, + "42": 8, + "score": 30, + "gender": 1 + }, + { + "21": 1, + "22": 1, + "23": 2, + "31": 3, + "32": 4, + "33": 5, + "41": 6, + "42": 7, + "score": 20, + "gender": 1 + }, + { + "21": 1, + "22": 1, + "23": 1, + "31": 2, + "32": 3, + "33": 4, + "41": 5, + "42": 6, + "score": 10, + "gender": 1 + }, + { + "21": 0, + "22": 0, + "23": 0, + "31": 0, + "32": 0, + "33": 0, + "41": 0, + "42": 0, + "score": 0, + "gender": 1 + } + ] + } +} \ No newline at end of file diff --git a/src/renderer/src/assets/json/student.json b/src/renderer/src/assets/json/student.json new file mode 100644 index 0000000..a40b531 --- /dev/null +++ b/src/renderer/src/assets/json/student.json @@ -0,0 +1,545 @@ +[ + { + "label": "年级编号", + "prop": "nianjicode", + "type": "text", + "index": "0", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "searchType": "select", + "openPopoverVisible": false, + "searchValue": "", + "formShow": true, + "export": true + }, + { + "label": "班级编号", + "prop": "banjicode", + "type": "text", + "index": "1", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "searchType": "select", + "openPopoverVisible": false, + "searchValue": "", + "formShow": false, + "export": true + }, + { + "label": "年级", + "prop": "nianji", + "type": "text", + "index": "-1", + "fixed": false, + "tableShow": false, + "setTableShow": false, + "formShow": false, + "export": false + }, + { + "label": "班级名称", + "prop": "banji", + "type": "text", + "index": "2", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": true, + "export": true + }, + { + "label": "学籍号", + "prop": "xuejihao", + "type": "text", + "index": "3", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": false, + "export": true + }, + { + "label": "民族代码", + "prop": "minzudaima", + "type": "text", + "index": "4", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": false, + "export": true + }, + { + "label": "民族", + "prop": "minzu", + "type": "text", + "index": "-1", + "fixed": false, + "tableShow": false, + "formShow": false, + "export": false + }, + { + "label": "姓名", + "prop": "name", + "type": "text", + "index": "5", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": true, + "export": true + }, + { + "label": "性别", + "prop": "gender", + "tableDisplay": [ + { + "label": "男", + "value": "1" + }, + { + "label": "女", + "value": "2" + } + ], + "type": "select", + "index": "6", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": true, + "export": true + }, + { + "label": "出生日期", + "prop": "birth", + "type": "date", + "default": 10, + "index": "7", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": false, + "export": true + }, + { + "label": "家庭住址", + "prop": "address", + "type": "text", + "index": "8", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "isSort": true, + "isSearch": true, + "openPopoverVisible": false, + "searchValue": "", + "formShow": false, + "export": true + }, + { + "label": "身高", + "prop": "height", + "type": "number", + "index": "9", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "体重", + "prop": "weight", + "type": "number", + "index": "10", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "BMI", + "prop": "BMI", + "type": "number", + "index": "11", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "BMI得分", + "prop": "BMIscore", + "type": "number", + "index": "12", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "肺活量", + "prop": "lungs", + "type": "number", + "index": "13", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "肺活量得分", + "prop": "lungsscore", + "type": "number", + "index": "14", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "50米跑", + "prop": "fifty", + "type": "text", + "index": "15", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "50米跑得分", + "prop": "fiftyscore", + "type": "number", + "index": "16", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "坐位体前屈", + "prop": "sitforward", + "type": "number", + "index": "17", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "坐位体前屈得分", + "prop": "sitforwardscore", + "type": "number", + "index": "18", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "一分钟跳绳", + "prop": "jump", + "type": "number", + "index": "19", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "一分钟跳绳得分", + "prop": "jumpscore", + "type": "number", + "index": "20", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "一分钟仰卧起坐", + "prop": "situp", + "type": "number", + "index": "21", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "一分钟仰卧起坐得分", + "prop": "situpscore", + "type": "number", + "index": "22", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "50米×8往返跑", + "prop": "fiftyeight", + "type": "text", + "index": "23", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "50米×8往返跑得分", + "prop": "fiftyeightscore", + "type": "number", + "index": "24", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "立定跳远", + "prop": "stand", + "type": "number", + "index": "25", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "立定跳远得分", + "prop": "standscore", + "type": "number", + "index": "26", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "800米跑", + "prop": "eighty", + "type": "text", + "index": "27", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "800米跑得分", + "prop": "eightyscore", + "type": "number", + "index": "28", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "1000米跑", + "prop": "thousand", + "type": "text", + "index": "29", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "1000米跑得分", + "prop": "thousandscore", + "type": "number", + "index": "30", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "引体向上", + "prop": "pullup", + "type": "number", + "index": "31", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": true, + "export": true + }, + { + "label": "得分", + "label1": "引体向上得分", + "prop": "pullupscore", + "type": "number", + "index": "32", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "加分项", + "prop": "addScore", + "type": "text", + "index": "-1", + "fixed": false, + "tableShow": true, + "setTableShow": true, + "formShow": false, + "export": false + }, + { + "label": "总分", + "prop": "totalScore", + "type": "number", + "index": "33", + "tableShow": true, + "fixed": "right", + "setTableShow": false, + "sort": "", + "formShow": false, + "export": false + }, + { + "label": "等级", + "prop": "level", + "type": "text", + "index": "34", + "tableShow": true, + "fixed": "right", + "setTableShow": false, + "sort": "", + "isSearch": true, + "searchType": "select", + "openPopoverVisible": false, + "searchValue": "", + "formShow": false, + "export": false + }, + { + "label": "备注2", + "prop": "nodt2", + "type": "text", + "index": "-1", + "fixed": false, + "tableShow": false, + "formShow": false, + "export": false + }, + { + "label": "创建时间", + "prop": "create_at", + "type": "date", + "default": 0, + "tableShow": false, + "formShow": false, + "export": false + }, + { + "label": "更新时间", + "prop": "update_at", + "type": "date", + "default": 0, + "tableShow": false, + "formShow": false, + "export": false + } +] \ No newline at end of file diff --git a/src/renderer/src/components/formcomponent.vue b/src/renderer/src/components/formcomponent.vue new file mode 100644 index 0000000..a845edb --- /dev/null +++ b/src/renderer/src/components/formcomponent.vue @@ -0,0 +1,84 @@ + + + + diff --git a/src/renderer/src/components/tablecomponent.vue b/src/renderer/src/components/tablecomponent.vue new file mode 100644 index 0000000..d03515b --- /dev/null +++ b/src/renderer/src/components/tablecomponent.vue @@ -0,0 +1,210 @@ + + + + diff --git a/src/renderer/src/main.js b/src/renderer/src/main.js new file mode 100644 index 0000000..1424ed6 --- /dev/null +++ b/src/renderer/src/main.js @@ -0,0 +1,34 @@ +// main.ts +import { createApp } from 'vue' +import ElementPlus from 'element-plus' +import zhCn from 'element-plus/es/locale/lang/zh-cn' +import 'element-plus/dist/index.css' +import App from './App.vue' +import './assets/css/base.css' +import * as ElementPlusIconsVue from '@element-plus/icons-vue' +import VxeUI from 'vxe-pc-ui' +import 'vxe-pc-ui/lib/style.css' +// ... + +// 完整导入 表格库 +import VxeUITable from 'vxe-table' +import 'vxe-table/lib/style.css' + +import screenShort from "vue-web-screen-shot"; +const app = createApp(App) +// window.__VUE_PROD_HYDRATION_MISMATCH_DETAILS__ = true +for (const [key, component] of Object.entries(ElementPlusIconsVue)) { + app.component(key, component) +} +app.use(ElementPlus, { + locale: zhCn, +}) +app.use(screenShort, { enableWebRtc: false, level: 300001, hiddenScrollBar: true }).use(VxeUI).use(VxeUITable) +app.mount('#app') + +document.addEventListener('keydown', (event) => { + const { ctrlKey, shiftKey, key } = event + if ((ctrlKey && shiftKey && key === 'I') || key === 'F12') { + return event.preventDefault() + } +}) diff --git a/src/renderer/src/views/student.vue b/src/renderer/src/views/student.vue new file mode 100644 index 0000000..4ee4b23 --- /dev/null +++ b/src/renderer/src/views/student.vue @@ -0,0 +1,774 @@ + + + +