From 01812820321380507e0e65bee70494f97ab34b55 Mon Sep 17 00:00:00 2001 From: "PC-202302260912\\Administrator" <1769111741@qq.com> Date: Mon, 23 Oct 2023 14:17:24 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B3=A8=E9=87=8A=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/mongo/MongoPropertyConverter.java | 3 +- .../jieling/logic/player/PlayerLogic.java | 2 +- .../com/ljsd/jieling/util/CBean2Proto.java | 8 +-- .../com/ljsd/jieling/util/FightDataUtil.java | 53 +++++++++++++++---- .../src/main/java/config/SCombatControl.java | 31 +++++++---- 5 files changed, 70 insertions(+), 27 deletions(-) diff --git a/serverlogic/src/main/java/com/ljsd/jieling/db/mongo/MongoPropertyConverter.java b/serverlogic/src/main/java/com/ljsd/jieling/db/mongo/MongoPropertyConverter.java index 8dcc2918f..e050cd4e0 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/db/mongo/MongoPropertyConverter.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/db/mongo/MongoPropertyConverter.java @@ -28,7 +28,6 @@ public class MongoPropertyConverter implements Converter0){ -// cd+=Integer.parseInt(args[0]); -// } skill.rawset(1, LuaValue.valueOf(skillId)); - int[][] display =sSkillLogicVo.getSkillDisplay(); + int[][] display = sSkillLogicVo.getSkillDisplay(); int skillDisplay = display[0][0]; for(int[] skillArray:display){ if(skillArray[0]==skinId){ @@ -520,17 +516,31 @@ public class FightDataUtil { skill.rawset(2, LuaValue.valueOf(KeyFrame/1000f)); skill.rawset(3, LuaValue.valueOf(SkillDuration/1000f)); skill.rawset(4, LuaValue.valueOf(SkillNumber)); + skill.rawset(5, getSkillNumberTime(sCombatControl.getSkillNumberTime())); + skill.rawset(6, getEffectArgs(sCombatControl.getAttackDisplaceoffset())); List effectList = getEffect(sSkillLogicVo); int size = effectList.size(); if (size > 0) { for (int i = 0; i < size; i++) { - skill.rawset(i + 5, effectList.get(i)); + skill.rawset(i + 7, effectList.get(i)); } } } return skill; } + private static LuaValue getSkillNumberTime(int[][] skillNumberTime) { + LuaValue effect = new LuaTable(); + List effectValueList = getEffectArgs(skillNumberTime); + int size = effectValueList.size(); + if (size > 0) { + for (int i = 0; i < size; i++) { + effect.rawset(i + 1, effectValueList.get(i)); + } + } + return effect; + } + private static List getEffect(SSkillLogicVo sSkillLogicVo) { List effectList = new ArrayList<>(); for (SkillTargetVo skillTargetVos : sSkillLogicVo.getSkillTargetVoList()) { @@ -552,11 +562,36 @@ public class FightDataUtil { List effectValueList = new ArrayList<>(); int sizeY = effects.length; if (sizeY > 0) { - for (int i = 0; i < sizeY; i++) { - int sizeX = effects[i].length; + for (float[] effect : effects) { + int sizeX = effect.length; LuaValue effectValue = new LuaTable(); for (int j = 0; j < sizeX; j++) { - effectValue.rawset(j + 1, LuaValue.valueOf(effects[i][j])); + effectValue.rawset(j + 1, LuaValue.valueOf(effect[j])); + } + effectValueList.add(effectValue); + } + } + return effectValueList; + } + + private static LuaValue getEffectArgs(float[] effects) { + int sizeX = effects.length; + LuaValue effectValue = new LuaTable(); + for (int j = 0; j < sizeX; j++) { + effectValue.rawset(j + 1, LuaValue.valueOf(effects[j])); + } + return effectValue; + } + + private static List getEffectArgs(int[][] effects) { + List effectValueList = new ArrayList<>(); + int sizeY = effects.length; + if (sizeY > 0) { + for (int[] effect : effects) { + int sizeX = effect.length; + LuaValue effectValue = new LuaTable(); + for (int j = 0; j < sizeX; j++) { + effectValue.rawset(j + 1, LuaValue.valueOf(effect[j])); } effectValueList.add(effectValue); } diff --git a/tablemanager/src/main/java/config/SCombatControl.java b/tablemanager/src/main/java/config/SCombatControl.java index 7de2b12e7..5be87be4c 100644 --- a/tablemanager/src/main/java/config/SCombatControl.java +++ b/tablemanager/src/main/java/config/SCombatControl.java @@ -1,32 +1,33 @@ package config; -import manager.STableManager; import manager.Table; -import java.util.Map; - @Table(name ="CombatControl") public class SCombatControl implements BaseConfig { - private int id; + private int id; - private int keyFrame; + private int keyFrame; - private int skillDuration; + private int skillDuration; - private int skillNumber; + private int skillNumber; - @Override + private int[][] skillNumberTime; + + private float[] attackDisplaceoffset; + + @Override public void init() throws Exception { - + } - public int getId() { + public int getId() { return id; } - public int getKeyFrame() { + public int getKeyFrame() { return keyFrame; } @@ -37,4 +38,12 @@ public class SCombatControl implements BaseConfig { public int getSkillNumber() { return skillNumber; } + + public int[][] getSkillNumberTime() { + return skillNumberTime; + } + + public float[] getAttackDisplaceoffset() { + return attackDisplaceoffset; + } } \ No newline at end of file From c4b2fdf92bae907aba85c92d24b2081a59a2f272 Mon Sep 17 00:00:00 2001 From: "PC-202302260912\\Administrator" <1769111741@qq.com> Date: Mon, 23 Oct 2023 17:39:11 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=88=98=E6=96=97=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Battle/Config/Data/CombatControl.lua | 136 +++++++++++------- .../Config/Data/PassiveSkillLogicConfig.lua | 26 ++-- .../Battle/Config/Data/SkillLogicConfig.lua | 22 +-- luafight/Modules/Battle/Data/ConfigData.lua | 1 - luafight/Modules/Battle/Logic/Base/Effect.lua | 112 ++++++++++++++- .../Battle/Logic/Base/EffectCaster.lua | 5 + .../Modules/Battle/Logic/Base/Passivity.lua | 73 ++++++++++ luafight/Modules/Battle/Logic/BattleLogic.lua | 6 + .../Battle/Logic/Misc/BattleDefine.lua | 3 +- .../Logic/Monster/MonsterSkill/MSkill.lua | 2 +- .../Modules/Battle/Logic/Role/RoleLogic.lua | 7 +- luafight/Modules/Battle/Logic/Role/Skill.lua | 24 +++- .../Modules/Battle/Logic/SkillManager.lua | 18 ++- luafight/Modules/Battle/Readme.txt | 8 +- .../com/ljsd/jieling/util/FightDataUtil.java | 25 ++-- 15 files changed, 365 insertions(+), 103 deletions(-) diff --git a/luafight/Modules/Battle/Config/Data/CombatControl.lua b/luafight/Modules/Battle/Config/Data/CombatControl.lua index eb5a3a9b0..3a396e6a2 100644 --- a/luafight/Modules/Battle/Config/Data/CombatControl.lua +++ b/luafight/Modules/Battle/Config/Data/CombatControl.lua @@ -1,8 +1,8 @@ local CombatControl = { -__count = 205, -__indexs = {-100.4,611,1,9,1,9,4.1,8.7,6,3,17.51,14.1,28.1,30.1,8899,200,1,699,90,10,500,1200,990,2,8,3,597,5280,1.8,80462,31.51,29,67.43,-10.2,37.4,5.2,89,1,9,1.2,8,16.3,911109,120000,19060,8849240,2010650}, -__values = {-1000,200,150,30,120,50,78,72,17,33,50,9,6,15,20,15,5,10,20,10,40,50,1.7,3,20,-10.3,15,5,20,4,36,-5.2,30,20,50,3.2,2.1,-50.2,5.3,34,16,20,86,14,100,-200.2,100,-50.2,-100.4,-200.2,-300.2,1200,6019}, -__exVals = {432,nil,'c_dao_guocheng','c_dao_jizhong','c_yao_guocheng','c_yao_jizhong','c_ren_shifang','c_fo_shifang','c_ren_guocheng','c_ren_jizhong','c_fo_jizhong','c_yao_shifang','c_mrzq_0010_skeff_slidesk_ballistic','normal_effect','Effect_c_fhlh_00021_t3_attack_01','Effect_c_ab_00014_t3_attack03','c_ab_00014_t9_zh','c_dhdj_00042_t9_zh','Audio_battle_vo_ab01','Audio_battle_yhdd','c_chdr_00030_t3shifa','Effect_c_mp_00051_001_01','Effect_c_zbj_0007_s1_attack_01','Effect_c_dhdj_00042_s1_attack_PG_01','Effect_c_gy_00092_attack_01','Effect_c_0035_attack_01','c_chdr_00030_t3_attack','Fx_c_0056_attack','c_ts_00017_t3_attack','c_leizhenzi_0095_skeff_slidesk_screeneff','Effect_c_ab_00014_t3_attack01','Effect_c_wsps_00016_t3_attack_01','Effect_c_mp_00051_001_02','Effect_c_zbj_0007_s1_attack_02','Effect_c_dhdj_00042_s1_attack_PG_02','Effect_c_0035_attack_02','c_chdr_00030_t3jizhong','Fx_c_0056_hit','c_ts_00017_t3jiaxue','Effect_c_wsps_00016_t3_attack_02','Effect_c_mp_00051_001_03','Effect_c_zbj_0007_s1_attack_03','Effect_c_dhdj_00042_s1_attack_PG_03','Effect_c_gy_00092_attack_02','c_lzz_0002_t9_zh','c_jbj_0007_t9_zh','c_wsps_00016_t9_zh','c_gyps_00020_t9_zh','c_fhlh_00021_t9_zh','c_ljgz_00032_t9_zh','c_ttjz_00048_t9_zh','c_mp_00051_t9_zh','Audio_battle_vo_lzz01','Audio_battle_vo_zbj01','Audio_battle_vo_dm01','Audio_battle_vo_ptss01','Audio_battle_vo_fhlh01','Audio_battle_vo_negw02','Audio_battle_vo_tljz01','Audio_battle_vo_mp01',29.34,581.39,17.3,122.5,-233.6,109.3,'Effect_c_syf_0016_t3_attack_01','Effect_c_gg_0005_t3_attack_01','Effect_c_jmm_0006_attack_01','c_jbj_0007_t3_qianyao','Effect_c_ghn_0009_t3_attack_01','Effect_c_hsmw_00010_attack_01','Effect_c_hhe_00011_attack_01','Effect_c_bhxz_00013_t1_attack_01','c_swk_00015_t3','Effect_c_kqmw_00018_attack_01','Effect_c_rd_00019_t3_attack_01','c_gyps_00020_t3','Effect_c_ygps_00025_001_01','Effect_c_ft_00026_01_01','Effect_c_jcdp_00027_attack_01','Effect_c_nz_00029_t3_attack_01','Effect_c_wg_00037_t1_attack_01','c_ljgz_00032_t3','c_dlsm_00033_t3','Effect_c_zgm_00039_001_01','fx_yangjian_shifa','c_jls_00044_t3','Effect_c_ny_00036_attack_01','c_lslz_00046_t3','c_ldb_00047_attack','Effect_c_lc_00050_001_01','Effect_c_yc_00052_001_01','c_niutou_shifang','Effect_c_swk_00015_s1_attack_PG_01','Effect_c_swk_00015_s1_attack_01','Effect_tiannv_attack_01','fx_nverguowang_daoguang','Effect_c_dhdj_00042_s1_attack_01','Effect_c_0035_s01_attack_01','Effect_c_jcdp_00027_S1_attack_01','Effect_ls_01_qingluan_attack_01','Effect_ls_05_huodou_attack_01','Effect_ls_03_yinglong_attack_01','Effect_ls_04_zhulong_attack_01','Effect_ls_08_pixiu_attack_01','ls_06_baize_attack_01','Effect_ls_05_fenghuang_attack_01','Effect_ls_08_jinwu_attack_01','Effect_ls_09_jukun_attack_01','Effect_c_cff_0047_attack_01','Effect_c_xv_00071_attack_01','Effect_c_cff_0049_attack_01','Effect_c_yff_0048_attack_01','Effect_c_ym_0051_attack_01','Effect_c_hl_00075_attack_01','Effect_c_ym_0052_attack_01','Effect_c_jff_0050_attack_01','Effect_c_zs_0080_attack_01','Effect_c_xy_0026_attack_01','Effect_c_mlmm_0054_attack_01','Effect_c_fm_0027_attack_01','Effect_c_mc_0034_attack_01','Effect_c_jll_00059_attack_01','Effect_c_jlzz_00060_attack_01','Effect_c_rj_0033_attack_01','Effect_c_jpw_0024_attack_01','Effect_c_mjn_00063_attack_01','Effect_c_cyh_0008_attack_01','Effect_c_qr_0065_attack_01','Effect_c_zc_0021_attack_01','Effect_c_ax_0067_001_01','Effect_c_bgj_00091_attack_01','Effect_c_jw_0003_attack_01','Effect_c_syf_0016_t3_attack_02','c_jbj_0007_t3_attack','Effect_c_dj_0008_attack_02','Effect_c_ghn_0009_t3_attack_02','Effect_c_hsmw_00010_attack_02','Effect_c_sjnn_00012_attack_02','SUNWUKONG_attack','c_swk_00015_t3_qianyao','Effect_c_kqmw_00018_attack_02','Effect_c_rd_00019_t3_attack_02','c_gyps_00020_t3_attack','Effect_c_xllh_00022_t3_attack_01','Effect_c_dst_00023_t1_attack_01','Effect_c_pxps_00024_attack_01','Effect_c_ygps_00025_001_03','Effect_c_ft_00026_01_02','Effect_c_jcdp_00027_attack_02','Effect_c_nz_00029_t3_attack_02','Effect_c_wg_00037_t1_attack_02','c_ljgz_00032_t3_attack','c_dlsm_00033_t3_attack','change_zhanshi','c_fuxi_00028_t3_attack','c_jtxn_00045_t3_attack','fx_chu_skill_gongji','Effect_c_mz_00038_attack_01','Effect_c_zgm_00039_001_03','fx_yangjian_shifa_gai','c_sgb_00041_t3_attack','Effect_c_jzy_00043_attack_01','c_jls_00044_t3_attack','Effect_c_ny_00036_attack_02','c_lslz_00046_t3_attack','s_jieling_md_3007_skeff_casting_attacked','Effect_c_ddtz_00049_001_01','Effect_c_lc_00050_001_02','Effect_c_yc_00052_001_02','fx_zinv_skill_shifa','fx_aobing_wangqiuwangzhi','Effect_c_swk_00015_s1_attack_PG_02','Effect_c_swk_00015_s1_attack_02','Effect_tiannv_attack_02','fx_nverguowang_shiuji','Effect_c_dhdj_00042_s1_attack_02','Effect_c_0035_s01_attack_02','Effect_c_jcdp_00027_S1_attack_02','Effect_ls_01_qingluan_attack_02','Effect_ls_05_huodou_attack_02','Effect_ls_03_yinglong_attack_02','Effect_ls_04_zhulong_attack_02','Effect_ls_08_pixiu_attack_02','ls_06_baize_attack_02','Effect_ls_05_fenghuang_attack_02','Effect_ls_08_jinwu_attack_02','Effect_ls_09_jukun_attack_02','Effect_c_cff_0047_attack_02','Effect_c_xv_00071_attack_02','Effect_c_cff_0049_attack_02','Effect_c_yff_0048_attack_02','Effect_c_ym_0051_attack_02','Effect_c_hl_00075_attack_02','Effect_c_ym_0052_attack_02','Effect_c_jff_0050_attack_02','Effect_c_zs_0080_attack_02','Effect_c_xy_0026_attack_02','Effect_c_mlmm_0054_attack_02','Effect_c_fm_0027_attack_02','Effect_c_mc_0034_attack_02','Effect_c_jll_00059_attack_02','Effect_c_jlzz_00060_attack_02','Effect_c_rj_0033_attack_02','Effect_c_jpw_0024_attack_02','Effect_c_mjn_00063_attack_02','Effect_c_y_0013_attack_01','fx_jz_skill_shifa','Effect_c_cyh_0008_attack_02','Effect_c_qr_0065_attack_02','Effect_c_zc_0021_attack_02','Effect_c_ax_0067_001_02','Effect_c_bgj_00091_attack_02','Effect_c_yn_009_attack_new_002','Effect_c_syf_0016_t3_attack_03','Effect_c_gg_0005_t3_attack_02','Effect_c_jmm_0006_attack_02','c_jbj_0007_t3jizhong','Effect_c_dj_0008_attack_03','Effect_c_ghn_0009_t3_attack_03','Effect_c_hsmw_00010_attack_03','Effect_c_hhe_00011_attack_02','Effect_c_sjnn_00012_attack_03','Effect_c_bhxz_00013_t1_attack_03','c_swk_00015_t3_zazhi_attack','Effect_c_rd_00019_t3_attack_03','Effect_c_dst_00023_t1_attack_02','Effect_c_pxps_00024_attack_02','Effect_c_ygps_00025_001_02','Effect_c_ft_00026_01_04','Effect_c_jcdp_00027_attack_03','NEZHA_ATTACK','Effect_c_wg_00037_t1_attack_03','c_ljgz_00032_t3_jizhong','c_dlsm_00033_t3shouji','change_shouji','c_fuxi_00028_t3jizhong','c_jtxn_00045_t3jizhong','fx_chu_skill_shouji','Effect_c_mz_00038_attack_02','Effect_c_zgm_00039_001_02','c_yj_00040_t3_shouji','YUHUANGDADI_attack','c_jls_00044_t3_jizhong','Effect_c_ny_00036_attack_03','c_lslz_00046_t3_jizhong','c_ldb_00047jizhong','m_jdjs_0009_skeff_slide_attacked','Effect_c_ddtz_00049_001_02','Effect_c_lc_00050_001_03','Effect_c_yc_00052_001_03','fx_zinv_skill_shouji','c_niutou_mingzhong','Effect_c_swk_00015_s1_attack_PG_03','Effect_c_swk_00015_s1_attack_03','Effect_tiannv_attack_03','Effect_c_jcdp_00027_S1_attack_03','Effect_ls_04_zhulong_attack_03','Effect_ls_05_fenghuang_attack_03','Effect_ls_09_jukun_attack_03','Effect_c_yff_0048_attack_03','Effect_c_ym_0051_attack_03','Effect_c_hl_00075_attack_03','Effect_c_ym_0052_attack_03','Effect_c_jff_0050_attack_03','Effect_c_zs_0080_attack_03','Effect_c_xy_0026_attack_03','Effect_c_mlmm_0054_attack_03','Effect_c_mc_0034_attack_03','Effect_c_jll_00059_attack_03','Effect_c_jlzz_00060_attack_03','Effect_c_rj_0033_attack_03','Effect_c_jpw_0024_attack_03','Effect_c_mjn_00063_attack_03','Effect_c_y_0013_attack_02','fx_jz_skill_shouji','Effect_c_cyh_0008_attack_03','Effect_c_zc_0021_attack_03','Effect_c_ax_0067_001_03','Effect_c_yn_009_attack_new_003','c_jw_0003_t9_zh','c_ls_0004_t9_zh','c_gg_0005_t9_zh','c_jmm_0006_t9_zh','c_bhxz_00013_t9_zh','c_ghn_0009_t9_zh','c_hsmw_00010_t9_zh','c_hhe_00011_t9_zh','c_sjnn_00012_t9_zh','c_dj_0008_t9_zh','c_swk_00015_t9_zh','c_ts_00017_t9_zh','c_dst_00023_t9_zh','c_rd_00019_t9_zh','c_xllh_00022_t9_zh','c_kqmw_00018_t9_zh','c_pxps_00024_t9_zh','c_ygps_00025_t9_zh','c_ft_00026_t9_zh','c_jcdp_00027_t9_zh','c_cy_00031_t9_zh','c_nz_00029_t9_zh','c_chdr_00030_t9_zh','c_wg_00037_t9_zh','c_dlsm_00033_t9_zh','c_ce_00034_t9_zh','c_zgm_00039_t9_zh','c_jtxn_00045_t9_zh','c_chh_00035_t9_zh','c_mz_00038_t9_zh','c_fx_00028_t9_zh','c_yj_00040_t9_zh','c_sgb_00041_t9_zh','c_jzy_00043_t9_zh','c_jls_00044_t9_zh','c_ny_00036_t9_zh','c_lslz_00046_t9_zh','c_ldb_00047_t9_zh','c_ddtz_00049_t9_zh','c_lc_00050_t9_zh','c_yc_00052_t9_zh','c_zn_001_t9_zh','c_qcdn_000_t9','c_tpwn_zh','c_qtwk_0001_t9_zh','l_ls_2_zh','l_ls_3_zh','l_ls_1_zh','l_ls_4_zh','l_ls_6_zh','l_ls_7_zh','l_ls_5_zh','l_ls_8_zh','l_ls_10_zh','c_3_1_t9_zh','c_3_2_t9_zh','c_3_3_t9_zh','c_3_4_t9_zh','c_3_8_t9_zh','c_3_6_t9_zh','c_3_7_t9_zh','c_3_5_t9_zh','c_nxq_00054_t9_zh','c_jy_00055_t9_zh','c_ygl_00056_t9_zh','c_yhj_00057_t9_zh','c_dz_00058_t9_zh','c_jll_00059_t9_zh','c_jlzz_00060_t9_zh','c_axl_00061_t9_zh','c_mz_00062_t9_zh','c_mjn_00063_t9_zh','c_md_00064_t9_zh','c_jz_00065_t9_zh','c_hdxj_00066_t9_zh','c_sdxj_00067_t9_zh','c_jhsn_00068_t9_zh','c_lsx_00069_t9_zh','c_bgj_00091_t9_zh','c_gy_00092_t9_zh','c_yn_jn_001_new','Audio_battle_vo_jw01','Audio_battle_vo_bsz01','Audio_battle_vo_nmw01','Audio_battle_vo_jmm01','Audio_battle_vo_bhxz01','Audio_battle_vo_ghn01','Audio_battle_vo_hsmw01','Audio_battle_vo_bah02','Audio_battle_vo_sjll01','Audio_battle_vo_dj01','Audio_battle_vo_swk01','Audio_battle_vo_ts01','Audio_battle_vo_dst01','Audio_battle_vo_rd01','Audio_battle_vo_xllh01','Audio_battle_vo_kqmw01','Audio_battle_vo_pxps01','Audio_battle_vo_ygps01','Audio_battle_vo_ft01','Audio_battle_vo_bdmw01','Audio_battle_cy','Audio_battle_vo_nz01','Audio_battle_vo_chdr01','Audio_battle_vo_wg01','Audio_battle_vo_dlsm01','Audio_battle_vo_ce01','Audio_battle_vo_zgm01','Audio_battle_vo_hml01','Audio_battle_chh','Audio_battle_vo_mz01','Audio_battle_fx','Audio_battle_vo_yj01','Audio_battle_vo_sgb01','Audio_battle_vo_jzy01','Audio_battle_vo_zk01','Audio_battle_vo_jc01','Audio_battle_vo_tyxj01','Audio_battle_hxz','Audio_battle_vo_ddtz01','Audio_battle_vo_lc01','Audio_battle_vo_yc01','Audio_battle_vo_zn01','Audio_battle_vo_nmw02','Audio_ls_ql_vo_01','Audio_ls_hd_vo_01','Audio_ls_yl_vo_01','Audio_ls_zl_vo_01','Audio_20005pixiu_exskill_voc_01','Audio_ls_bz_vo_01','Audio_ls_fh_vo_01','Audio_jw_vo_01','Audio_ls_jk_vo_01','Audio_battle_vo_nxq01','Audio_battle_vo_jy01','Audio_battle_lm','Audio_battle_vo_bah01','Audio_battle_vo_dz01','Audio_battle_vo_jll01','Audio_battle_vo_jlzz01','Audio_battle_vo_axl01','Audio_battle_vo_muza01','Audio_battle_vo_mjn01','Audio_battle_vo_md01','Audio_battle_vo_qxn01','Audio_battle_ycx','Audio_battle_xyk','Audio_battle_vo_jhsn01','Audio_battle_vo_lsx01','Audio_100912bgj_vo_01','Audio_10092_gyps_vo_01','Audio_battle_luoli_pt01'}, +__count = 212, +__indexs = {-100.4,611,1,9,1,9,4.1,8.7,6,3,17.51,14.1,28.1,30.1,8899,190,10,1,699,90,10,500,1200,990,2,8,3,597,5280,1.8,80462,32.51,29,68.43,-10.2,37.4,5.2,89,1,9,1.2,8,16.3,19,6.2,1.2,911078,120000,19060,8849240,2010650}, +__values = {-1000,200,0,150,30,120,50,78,72,17,33,50,9,6,15,20,15,5,10,20,0,10,40,50,1,0,1.9,20,-10.3,15,5,20,4,36,-5.2,30,20,50,3.2,2.1,-50.2,5.4,14,16,20,-30.2,26,4,35.2,30,-50.3,100,4.2,-50.11,100,-50.3,10,-20.2,-50.2,200,-300.2,1200}, +__exVals = {380,nil,null,1.2,.5,1.5,'c_ren_shifang','c_fo_shifang','c_yao_shifang','c_dao_jizhong','c_ren_jizhong',-.1,'live2d_xiaobing13attack','live2d_xiaobing13skill','live2d_xiangkesiskill','live2d_saboskill','live2d_mihuokeattack','live2d_mihuokeskill','live2d_dasiqiattack','live2d_dasiqiskill','live2d_kedaerattack','live2d_kedaerskill','live2d_xiaobing5attack','live2d_xiaobing5skill','live2d_xiaobing15attack','live2d_xiaobing15skill','live2d_xiaobing10attack','live2d_xiaobing10skill','live2d_xiangkesiattack','live2d_shanzhiskill','live2d_luobinskill','live2d_xiaobing4attack','live2d_xiaobing4skill','live2d_xiaobing3attack','live2d_xiaobing3skill','live2d_xiaobing2attack','live2d_xiaobing2skill','live2d_xiaobing6attack','live2d_xiaobing6skill','live2d_xiaobing11attack','live2d_xiaobing11skill','live2d_saboattack','live2d_luoskill','live2d_xiaobing12attack','live2d_xiaobing12skill','live2d_xiaobing9attack','live2d_xiaobing9skill','live2d_xiaobing14attack','live2d_xiaobing14skill','live2d_xiaobing1attack','live2d_xiaobing1skill','live2d_xiaobing7attack','live2d_xiaobing7skill','live2d_xiaobing16attack','live2d_xiaobing16skill','live2d_nameiskill','live2d_guangyueyutianskill','normal_effect','c_yao_jizhong','c_fo_jizhong','c_lzz_0002_t9_zh','Audio_battle_vo_lzz01','c_ab_00014_t9_zh','c_sgb_00041_t9_zh','c_dhdj_00042_t9_zh','Audio_battle_vo_ab01','Audio_battle_vo_sgb01','Audio_battle_yhdd','c_chdr_00030_t3shifa','Effect_c_mp_00051_001_01','Effect_c_zbj_0007_s1_attack_01','Effect_c_dhdj_00042_s1_attack_PG_01','Effect_c_gy_00092_attack_01','live2d_heihuziattack','live2d_heihuziskill','live2d_daheattack','live2d_daheskill','live2d_yanzaijinattack','live2d_yanzaijinskill','live2d_kaiduoattack','live2d_kaiduoskill','live2d_daipengattack','live2d_daipengskill','live2d_lufeiattack','live2d_lufeiskill','live2d_bulukeattack','live2d_bulukeskill','live2d_fulanqiattack','live2d_shanzhiattack','live2d_luobinattack','live2d_wusuopuattack','live2d_wusuopuskill','live2d_qiaobaattack','live2d_qiaobaskill','live2d_wuerjiattack','live2d_wuerjiskill','live2d_caomaolufeiattack','live2d_caomaolufeiskill','live2d_guangyueriheattack','live2d_guangyueriheskill','live2d_suolongattack','live2d_suolongskill','live2d_qingzhiattack','live2d_qingzhiskill','live2d_simogeattack','live2d_simogeskill','live2d_huangyuanattack','live2d_huangyuanskill','live2d_shenpingattack','live2d_shenpingskill','live2d_alongattack','live2d_alongskill','live2d_moliyaattack','live2d_moliyaskill','live2d_luoattack','live2d_luojieattack','live2d_luojieskill','live2d_xiaobing8attack','live2d_xiaobing8skill','live2d_damaattack','live2d_damaskill','live2d_nameiattack','live2d_guangyueyutianattack','c_chdr_00030_t3jizhong','c_ts_00017_t3jiaxue','Effect_c_dhdj_00042_s1_attack_PG_03','c_jbj_0007_t9_zh','c_wsps_00016_t9_zh','c_gyps_00020_t9_zh','c_fhlh_00021_t9_zh','c_ljgz_00032_t9_zh','c_ttjz_00048_t9_zh','c_mp_00051_t9_zh','Audio_battle_vo_zbj01','Audio_battle_vo_dm01','Audio_battle_vo_ptss01','Audio_battle_vo_fhlh01','Audio_battle_vo_negw02','Audio_battle_vo_tljz01','Audio_battle_vo_mp01',.7,29.34,581.39,17.3,122.5,-233.6,109.3,'Effect_c_syf_0016_t3_attack_01','Effect_c_gg_0005_t3_attack_01','Effect_c_jmm_0006_attack_01','c_jbj_0007_t3_qianyao','Effect_c_ghn_0009_t3_attack_01','Effect_c_hsmw_00010_attack_01','Effect_c_hhe_00011_attack_01','Effect_c_bhxz_00013_t1_attack_01','c_swk_00015_t3','Effect_c_kqmw_00018_attack_01','Effect_c_rd_00019_t3_attack_01','c_gyps_00020_t3','Effect_c_ygps_00025_001_01','Effect_c_ft_00026_01_01','Effect_c_jcdp_00027_attack_01','Effect_c_nz_00029_t3_attack_01','Effect_c_wg_00037_t1_attack_01','c_ljgz_00032_t3','c_dlsm_00033_t3','Effect_c_zgm_00039_001_01','fx_yangjian_shifa','c_jls_00044_t3','Effect_c_ny_00036_attack_01','c_lslz_00046_t3','c_ldb_00047_attack','Effect_c_lc_00050_001_01','Effect_c_yc_00052_001_01','c_niutou_shifang','Effect_c_swk_00015_s1_attack_PG_01','Effect_c_swk_00015_s1_attack_01','Effect_tiannv_attack_01','fx_nverguowang_daoguang','Effect_c_dhdj_00042_s1_attack_01','Effect_c_0035_s01_attack_01','Effect_c_jcdp_00027_S1_attack_01','Effect_ls_01_qingluan_attack_01','Effect_ls_05_huodou_attack_01','Effect_ls_03_yinglong_attack_01','Effect_ls_04_zhulong_attack_01','Effect_ls_08_pixiu_attack_01','ls_06_baize_attack_01','Effect_ls_05_fenghuang_attack_01','Effect_ls_08_jinwu_attack_01','Effect_ls_09_jukun_attack_01','Effect_c_cff_0047_attack_01','Effect_c_xv_00071_attack_01','Effect_c_cff_0049_attack_01','Effect_c_yff_0048_attack_01','Effect_c_ym_0051_attack_01','Effect_c_hl_00075_attack_01','Effect_c_ym_0052_attack_01','Effect_c_jff_0050_attack_01','Effect_c_zs_0080_attack_01','Effect_c_xy_0026_attack_01','Effect_c_mlmm_0054_attack_01','Effect_c_fm_0027_attack_01','Effect_c_mc_0034_attack_01','Effect_c_jll_00059_attack_01','Effect_c_jlzz_00060_attack_01','Effect_c_rj_0033_attack_01','Effect_c_jpw_0024_attack_01','Effect_c_mjn_00063_attack_01','Effect_c_cyh_0008_attack_01','Effect_c_qr_0065_attack_01','Effect_c_zc_0021_attack_01','Effect_c_ax_0067_001_01','Effect_c_bgj_00091_attack_01','c_ren_guocheng','Effect_c_0035_attack_02','Fx_c_0056_hit','NEZHA_ATTACK','Effect_c_wg_00037_t1_attack_03','c_ljgz_00032_t3_jizhong','c_dlsm_00033_t3shouji','c_lslz_00046_t3_jizhong','Effect_ls_04_zhulong_attack_03','Effect_ls_05_fenghuang_attack_03','Effect_ls_09_jukun_attack_03','Effect_c_yff_0048_attack_03','Effect_c_ym_0051_attack_03','Effect_c_hl_00075_attack_03','Effect_c_ym_0052_attack_03','Effect_c_jff_0050_attack_03','Effect_c_yn_009_attack_new_003','c_jw_0003_t9_zh','c_ls_0004_t9_zh','c_gg_0005_t9_zh','c_jmm_0006_t9_zh','c_bhxz_00013_t9_zh','c_ghn_0009_t9_zh','c_hsmw_00010_t9_zh','c_hhe_00011_t9_zh','c_sjnn_00012_t9_zh','c_dj_0008_t9_zh','c_swk_00015_t9_zh','c_ts_00017_t9_zh','c_dst_00023_t9_zh','c_rd_00019_t9_zh','c_xllh_00022_t9_zh','c_kqmw_00018_t9_zh','c_pxps_00024_t9_zh','c_ygps_00025_t9_zh','c_ft_00026_t9_zh','c_jcdp_00027_t9_zh','c_cy_00031_t9_zh','c_nz_00029_t9_zh','c_chdr_00030_t9_zh','c_wg_00037_t9_zh','c_dlsm_00033_t9_zh','c_ce_00034_t9_zh','c_zgm_00039_t9_zh','c_jtxn_00045_t9_zh','c_chh_00035_t9_zh','c_mz_00038_t9_zh','c_fx_00028_t9_zh','c_yj_00040_t9_zh','c_jzy_00043_t9_zh','c_jls_00044_t9_zh','c_ny_00036_t9_zh','c_lslz_00046_t9_zh','c_ldb_00047_t9_zh','c_ddtz_00049_t9_zh','c_lc_00050_t9_zh','c_yc_00052_t9_zh','c_zn_001_t9_zh','c_qcdn_000_t9','c_tpwn_zh','c_qtwk_0001_t9_zh','l_ls_2_zh','l_ls_3_zh','l_ls_1_zh','l_ls_4_zh','l_ls_6_zh','l_ls_7_zh','l_ls_5_zh','l_ls_8_zh','l_ls_10_zh','c_3_1_t9_zh','c_3_2_t9_zh','c_3_3_t9_zh','c_3_4_t9_zh','c_3_8_t9_zh','c_3_6_t9_zh','c_3_7_t9_zh','c_3_5_t9_zh','c_nxq_00054_t9_zh','c_jy_00055_t9_zh','c_ygl_00056_t9_zh','c_yhj_00057_t9_zh','c_dz_00058_t9_zh','c_jll_00059_t9_zh','c_jlzz_00060_t9_zh','c_axl_00061_t9_zh','c_mz_00062_t9_zh','c_mjn_00063_t9_zh','c_md_00064_t9_zh','c_jz_00065_t9_zh','c_hdxj_00066_t9_zh','c_sdxj_00067_t9_zh','c_jhsn_00068_t9_zh','c_lsx_00069_t9_zh','c_bgj_00091_t9_zh','c_gy_00092_t9_zh','c_yn_jn_001_new','Audio_battle_vo_jw01','Audio_battle_vo_bsz01','Audio_battle_vo_nmw01','Audio_battle_vo_jmm01','Audio_battle_vo_bhxz01','Audio_battle_vo_ghn01','Audio_battle_vo_hsmw01','Audio_battle_vo_bah02','Audio_battle_vo_sjll01','Audio_battle_vo_dj01','Audio_battle_vo_swk01','Audio_battle_vo_ts01','Audio_battle_vo_dst01','Audio_battle_vo_rd01','Audio_battle_vo_xllh01','Audio_battle_vo_kqmw01','Audio_battle_vo_pxps01','Audio_battle_vo_ygps01','Audio_battle_vo_ft01','Audio_battle_vo_bdmw01','Audio_battle_cy','Audio_battle_vo_nz01','Audio_battle_vo_chdr01','Audio_battle_vo_wg01','Audio_battle_vo_dlsm01','Audio_battle_vo_ce01','Audio_battle_vo_zgm01','Audio_battle_vo_hml01','Audio_battle_chh','Audio_battle_vo_mz01','Audio_battle_fx','Audio_battle_vo_yj01','Audio_battle_vo_jzy01','Audio_battle_vo_zk01','Audio_battle_vo_jc01','Audio_battle_vo_tyxj01','Audio_battle_hxz','Audio_battle_vo_ddtz01','Audio_battle_vo_lc01','Audio_battle_vo_yc01','Audio_battle_vo_zn01','Audio_battle_vo_nmw02','Audio_ls_ql_vo_01','Audio_ls_hd_vo_01','Audio_ls_yl_vo_01','Audio_ls_zl_vo_01','Audio_20005pixiu_exskill_voc_01','Audio_ls_bz_vo_01','Audio_ls_fh_vo_01','Audio_jw_vo_01','Audio_ls_jk_vo_01','Audio_battle_vo_nxq01','Audio_battle_vo_jy01','Audio_battle_lm','Audio_battle_vo_bah01','Audio_battle_vo_dz01','Audio_battle_vo_jll01','Audio_battle_vo_jlzz01','Audio_battle_vo_axl01','Audio_battle_vo_muza01','Audio_battle_vo_mjn01','Audio_battle_vo_md01','Audio_battle_vo_qxn01','Audio_battle_ycx','Audio_battle_xyk','Audio_battle_vo_jhsn01','Audio_battle_vo_lsx01','Audio_100912bgj_vo_01','Audio_10092_gyps_vo_01','Audio_battle_luoli_pt01'}, __fields = { 'Id', 'SkillType', @@ -12,11 +12,17 @@ __fields = { 'BeforeEffectType', 'EffectType', 'HitEffectType', + 'ActionTime', + 'AttackDisplacement', + 'AttackDisplaceTime', + 'AttackDisplaceoffset', + 'AttackDisplaceBackTime', 'BeforeEffectDelay', 'KeyFrame', 'BulletTime', 'SkillDuration', 'SkillNumber', + 'SkillNumbetTime', 'DamageDelay', 'BeforeOrientation', 'Orientation', @@ -27,83 +33,109 @@ __fields = { 'BeforeBullet', 'Bullet', 'Hit', + 'CloseRangeHit', + 'CloseRangeHitOffset', 'skillname', 'SkillNameVoice' }, __defaults = { nil, nil, - 22, - 23, - 23, + 24, + 25, nil, - 23, - 22, + 33, + 25, nil, nil, - 22, - 23, - 22, - {{22}}, nil, - {{22}}, - 75, - 75, - 75, nil, nil, + 24, + nil, + nil, + 24, + 25, + {{101}}, + 24, + {{24}}, + nil, + {{24}}, + 100, + 100, + 100, + nil, + nil, + 100, + nil, nil, nil, nil }, __refs = { - {24,.3,-1,1,2.1,4.1,8.1,-1,0,17.61,16.1,32.1,24.32,.4,3.2,.2,93.3,.11,58.94,59.5,.4,10.3,0,15.4,.5}, - {24,.3,-1,1,2.1,4.1,8.1,0,17.61,16.1,32.1,24.1,.4,3.2,.2,-1,0,1,.11,58.94,59.5,.4,155.8,.5}, + {27,.3,-2,2,2.1,4.1,8.1,-2,0,17.61,16.1,32.1,24.32,0,3.2,.2,3.1,96.3,.11,61.94,-1,1,.4,3.1,69.6,76.7,.6}, + {27,.3,-2,2,2.1,4.1,8.1,0,17.61,16.1,32.1,24.1,89.3,.2,3.1,-2,0,2,.11,61.94,-1,1,.4,3.1,158.01,7.3,.6}, nil, - {22,3,-3,.6,3,0,-3,.7}, - {24,.21,1,-1,.8}, - {27,.3,-4,1,-1,2.1,2,-2,4.2,.2,4,-4,7.2,2,4,-6,12.4,.4,1,0,3,14.3,4,-4,20.4,3,-3,2.1,35.4,.2,17.4,2,4,-2,50.3,4,2,-4,8.2,4.1,50.3,4.1,-6,6,42.3,26.3,5.2,1,5,14.4,4.2,-5,5,2.1,20.5,2,-3,3,24.3,0,-3,-1,4.3,5,0,69.2,-1,.2,2,-1,0,1,-4,23.3,87.3,2.1,5,1,42.4,-6,6,-5,-1,14.5,-5,4.1,1,12.3,5,151.3,-3,3,-5,78.3,4.2,8.2,-4,4,-1,1,-6,.2,6,.2,4.3,0,-6,142.3,0,130.3,-2,-3,0,1.2,0}, - {24,.73}, - {58,-2,.21,-19,21,-2,.7}, - {61,3,8,-3,-26,17,-17,21,-21,3,-3,-21,11,0,10,24,-24,8.2,3,5,-8,9,-9,-6,19,-7,-6,9,6,1,-10,20,-26,-10,0,36,-26,5,-5,16,-16,37.2,3,-3,8.2,6,-6,-6,6,4,-4,8.3,2,9,-27,15,-15,31,-13,-2,2,20,-20,18,-18,30.2,10,-10,14.2,1,-1,-2,2,4.2,15,-14,-29,10,28,-28,37,20.3,.2,11,-11,-15,15,-19,19,.2,13,-13,8,-8,-9,-9.2,-18,24,0,-5,-1,8,-17,-9,.2,18,4,-5,-23,.2,23,-23,23,0,-8,0,-15,16,-10,-2,2,59.2,3,5,9,-9,9,-8,.2,4,-13,-21,21,102.4,-10,10,4.2,8.2,10.3,5,-5,5,-8,8,-2,2,7,-6,0,-6,14,31.2,-6,5,-29,21,0,9,0,-1,6.5,-9,-6,6,-2,0,-8,36,-17,8,0,-1,-26,13,0}, - {22,0,22,.2,8,-8,-22,5.2,3.2,2.1,24,-24,5,-5,5,-6,1,8,-8,0,15,-10,-5,-22,15,-15,22,0,16,-16,.2,16,-38,38,-1,1,4.1,4.2,-8,8,-17,17,-11,11,-12,12,-12,-5,1,0,48.3,21,6,-6,-21,21,30,-30,54.2,1,-1,2.1,6,-6,2.1,9,-9,26,-9,-38,72.3,-22,38,-16,30,-22,8,-16,16,-23,23,52.4,.2,9.2,2.1,9,-25,24,0,-46,39,-17,-22,.61,22,81.2,14.2,-19,2,51.3,16,-8,35.2,.5,-3,3,0,14.2,19,34.4,-16,-1,-2,22.4,-1,0,17,-16,66.2,28.4,-1,-21,71.2,16,0,-17,6.5,86.2,138.3,87.3,119.3,15,0}, - {65,-13,4,-13,9,.31,8,9,-13,-19,15,13,-13,0,8,-1,-7,0,-15,0,15,.7,8,-8,0,3.1}, - {27,-1,1,-1,.51,2,0,-4,3,-1,0,-1,.2,1,-2,0,2,.21}, - {52,0,4,-4,-9,9,.4,4,7,-11,.7,4}, - {{{1,1},{23,.41,1,-1,.3}},{{2,1},{22,.91}},{{2,2},{42,.8,-20,20,.2,-20,.2,20,.3}},{{2,3},{22,.8,20,-20,.2,20,.2,-20,.3}}}, - {{{1,1},{23,-1,.2,1,.2,-1,3.1,7.2,6.2,.7,3.2,2.1,4.3,.3,3.2,.4,3.2,18.4,17.7,4.3,0,19.3,18.3,44.3,14.4,.6,4.3,-2,4.2,2,-1,59.4,65.6,24.4,1.2,-2,.2,2,-2,.3,1,.4,63.4,56.6,9.1,8.1,92.3,3.1,48.7,21.8,0,1,.3,4.1,46.2,81.4,29.3}},{{2,1},{22,.83,20,-20,.66},{2,1.2,-4.2,1.2,2,9,-2.3,1.3,2,1.4,10.2,-2.6,3,1.4,8,-2.2,11,2,3,-4.3,-2.2,3,20.2,1.3,6,1.4,-2.4,1.4,-2.8,24.2,2.1,4,-2.6,1,5,1,5,1.4,3,2}},{{2,2},{22,0,20,-20,.99,3.2,.2},{2,1.2,-4.2,1.2,2,9,-2.3,1.3,2,1.4,10.2,-2.6,3,1.4,8,-2.2,11,2,3,-4.3,-2.2,3,20.2,1.3,6,1.4,-2.4,1.4,-2.8,24.2,2.1,4,-2.6,1,5,1,5,1.4,3,2}},{{2,3},{42,0,-20,20,.53,3.2,.26,3.2,.2},{2,1.2,-4.2,1.2,2,9,-2.3,1.3,2,1.4,10.2,-2.6,3,1.4,8,-2.2,11,2,3,-4.3,-2.2,3,20.2,1.3,6,1.4,-2.4,1.4,-2.8,24.2,2.1,4,-2.6,1,5,1,5,1.4,3,2}}}, - {{{1,1},{23,1,.11,-1,1,-1,0,1,0,6.2,.5}},{{2,1},{22,20,0,-20,20,.8,3.2,-20,0,9.4,.5}},{{2,2},{22,.81,20,-20,.5}},{{2,3},{42,-20,0,20,-20,.8,3.2,20,0,6.2}}}, - {{{1},{22,.9,5,-5,.81,10,5,-3,-13,1,.4,-3,.2,-11,14,.6,112,-112,.9,16,-16,.3,12}},{{2},{34,.4,3,-3,.3,-21,21,7,0,-33,33,.6,-24,24,5.2,-4,-32,38,-24,3,24,-5,-8,4,12,-30,-18,9,23,-22,26,-15,-12,31,0,-29,6,1,15,-27,27,-32,32,-26,33,0,-1,1,0,-32,-5,37,0,-7,48.2}}}, - {{{1},{22,.6,20,-20,.8,15,-19,4,0,-1,1,.3,3.2,.01,-14,14,9,-9,.7,114,-103,-11,.6}},{{2},{36,-31,0,44,-44,.2,37,-37,55,-55,.5,38,-40,30,24,-8,-10,17,-19,-31,40,3,-13,-25,0,-5,46,.2,-9,0,-32,32,-29,52,-11,-50,0,130,-85,-45,.3,132,-94,-6,-32,.2,38,14,0}}}, - {{{1},{22,.2,-3,-4,20,-13,.21,-6,6,0,23,-8,-15,.6,-3,3,.23}},{{2},{54,-43,9,23,-21,15,-1,.01,-25,-3,23,6,9,-16,18,-17,107,-84,-23,.2,2,10,-12,.5,3,25,80,-103,0,-3,0,-14,17,3.2,14,0,-5,.3,5,-3,0,3,3.1,-17,0,12}}}, - {75,19,-19,0,10,-10,2.1,10,55,-65,66,-66,67,-57,58,-58,10.2,59,-64,5,60,-60,61,-71,0,10,62,-62,-10,0,73,-67,-6,.2,6,68,-68,69,-69,70,-70,-6,6,2.1,4.1,71,-71,72,-72,73,-74,-5,0,80,-80,19,-14,76,-76,77,-77,78,-78,-5,5,2.1,4.1,2.1,79,-79,80,-85,.6,86,-86,87,-87,88,-88,89,-89,.4,90,-90,20,-20,91,-91,0,92,76.2,-21,93,1.3,-74,0,75,1.11,-108,109,-109,110,-104,105,-105,106,-107,108,10.2,-114,115,-115,116,-106,107,10.2,-118,119,20.2,12.4,-116,117,-117,118,-119,120,-120,121,-121,72.3,0,127,-127,128,-128,129,-129,130,-125,-5,6,-6,.2,5,5.4,10,121,-125,17,0,-23,.2,80.2,.4}, - {99,1.3,-24,25,-25,129,-129,130,-130,-3,11,-11,3,131,-131,132,-132,133,-129,-4,134,-134,-3,3,135,-135,4.2,26,110,1,-140,30,-19,16,-27,141,-141,142,-142,143,-143,13,-13,144,-144,145,-145,146,-146,147,-147,148,-148,149,-142,19,-26,150,-139,14,-18,18.11,-149,150,-150,151,-151,152,-152,153,-159,160,-161,24,-13,151,-161,162,-162,163,-163,164,-164,-1,1,165,-165,166,-166,167,-167,30,-30,168,-168,169,-170,32,0,139,1.4,-142,0,143,1.11,-184,185,-185,186,-189,190,-190,191,8.4,-192,193,-193,194,4.1,-194,195,-195,196,-199,200,-200,201,-201,202,-202,203,-196,197,-197,198,-198,199,14.2,-206,207,-207,208,-208,209,-209,210,-204,-7,0,3,-2,0,6,6.5,2,209,-212,.2,11,202,-212,30,-3,1.2,-17,0}, - {109,1.3,-33,-4,4,2.1,210,-210,211,-203,204,-212,213,-213,214,-214,215,-211,-4,216,-216,217,-217,218,-218,219,-219,10,-14,224,-215,29,-26,25,-28,-9,9,18.2,4.2,2.1,2.1,24.6,220,-220,221,-222,28,195,-231,12,23,-27,224,-224,225,-225,226,-226,227,-227,228,-228,229,-229,230,-230,231,-231,232,-232,233,-239,-2,242,-208,-22,-12,2,241,-241,242,-242,243,-243,244,-244,245,-245,246,-246,247,-247,37,-37,248,-248,249,1,-212,0,-26,239,1.2,-255,41,0,-41,0,256,-256,.2,257,-257,0,258,-258,259,-255,125.3,88.3,251,-252,253,-253,254,-260,261,-261,262,4.1,-262,263,-263,-4,9,259,-259,260,12.4,-263,264,-264,265,-265,266,-266,267,-273,274,-274,-2,2,275,-275,276,-270,-8,9,-5,-2,0,6,6.5,2,-4,9,33,0,-30,267,-277,37,-39,14,24,-38,0}, - {75,.4,43,-43,280,-280,281,-281,282,-282,283,-283,44,-44,284,-284,285,-285,0,286,-286,287,-287,288,-288,289,-289,15,-15,290,-290,45,-45,291,-291,292,-292,293,-293,46,-46,47,-47,294,-294,295,-295,296,-296,297,-297,298,-298,299,-299,300,-300,301,-301,302,-302,303,-303,48,-48,304,-304,305,-305,306,-306,307,-307,308,-308,309,-309,310,-310,311,-311,312,-312,16,-16,313,-313,314,-314,315,-315,316,-316,317,-317,49,-49,318,-318,319,-319,50,-50,320,-320,321,1,-278,279,-308,-15,324,-278,2,-48,0,16,0,33,276,1.8,-333,334,-334,335,-335,336,-336,337,-337,338,-338,339,-339,340,-340,341,-341,342,-342,343,-343,344,-344,345,-345,346,-346,347,-347,348,-348,349,-349,350,-350,351,-351,352,-352,353,-353,354,-354,355,-355,356,-356,357,-357,.21,358,-358,359,-359,0,360,-360,50,-7,-28,30,-45,47}, - {75,.4,51,-51,361,-361,362,-362,363,-363,364,-364,52,-52,365,-365,366,-366,0,367,-367,368,-368,369,-369,370,-370,17,-17,371,-371,53,-53,372,-372,373,-373,374,-374,54,-54,55,-55,375,-375,376,-376,377,-377,378,-378,379,-379,380,-380,381,-381,382,-382,383,-383,384,-384,56,-56,385,-385,386,-386,387,-387,388,-388,389,-389,390,-390,391,-391,392,-392,393,-393,18,-18,394,-394,395,-395,396,-396,397,-397,398,-398,57,-57,399,-399,400,-400,58,-58,401,-401,402,1,-351,-52,82.2,0,54,2,-56,0,18,0,39,347,1.8,-412,.61,413,-413,414,-414,415,-415,416,-416,417,-417,418,-418,419,-419,420,-420,421,-421,422,-422,423,-423,424,-424,425,-425,426,-426,427,-427,428,-428,.21,429,-429,430,-430,0,431,-431,58,-7,-34,36,-53,55} + {24,4,-4,.4,4,0,-4,.7}, + {25,.4,2,-2,2.1,2.1,7.5,.9,5.3,.2,8.3,.2,20.6,6.1,4.1,17.5,.01,5.4,.6,19.31,5.1,.8,3.2,0,2,0,21.4,.3,3.2,8.2,.4,2,1,-1,17.3,37.8,76.71,16.1,4.1,.21,3,-3,121.3,53.4,72.3,67.3}, + {30,.3,-5,.2,7,-7,5,-5,0,2,-2,5,3.2,2,-4,-3,2,5,-2,-5,-2.2,.2,2,-1,0,1,-4,2,-4,4,-4,6,1,-5,5,2.1,-7,.2,7,.2,4.3,0,-7,5,-3,0,1.2,0}, + {27,.23}, + {62,.3,-8,.3,-6,6,0,16,-8,0,-8,.4,5.2,-8,.21,9.4,.2,16,-16,12.2,-16,.01,11.2,.9,-8,7.2,18.2,-16,8,.2,8.3,0,8,0,6.3,.11,8,48.3,8,.41,-8,14.4,4.1,8.1,.82,33.4,.11,5,-13,.3,38.5,.3,16,78.3}, + {27,.3,-2,2,2.1,-2,.3,2,0,-2,.5,7.2,.31,7.3,6.2,.91,2,21.3,.4,-2,.71,13.3,24.4,21.2,15.2,8.2,.41,-2,2,.2,3.1,6.1,-2,.13,2,.11,41.3,.2,30.3,.7,42.2}, + {24,.3,18,4,-4,2.1,-18,6.2,-22,0,10.3,8.4,17.5,21.6,23.8,12.7,22.7,8.5,-22,.3,30,-30,.4,50.6,47.9,23.4,47.5,53.7,26.8,16.2,42.2,-18,.61,76.6,4.1,8.1,35.21,73.11,53.8,.11,95.4,160.5,0,3.1,68.2}, + {{{1},{101,.3,-76,77,-77,2.1,3,-3,79,-3,.2,3,-79,9.2,7.2,16.5,4.1,4.1,15.2,0,16.3,79,25.3,6.1,22.5,-76,75,-76,24.2,.9,4.2,16.8,42.6,-79,44.4,20.3,-1,6.3,-3,75.4,66.8,.3,1,7.2,0,-1,.41,72.2,26.3,4.1,8.1,62.21,12.1,108.7,-1,.11,138,-138,36.2,0,79.6,0,94.2,0,-3,.4}},{{2},{24,79,-79,2.1,.3,86,-86,5.2,.2,10.4,4.1,4.1,13.3,16.5,21.8,7,-86,.4,31.21,.6,3.2,0,52.4,14.6,0,5.3,0,30.11,42.21,14.1,79.2,73.2,43.3,0,86,0,-86,.2},{1.4,9,1.2,6,15,1,20,3,1.9,19,1,5,1,3,12,1.3,5,1.41,3,1,3,1,4.1,33,1.11,2,4,1,3,6,1.4}}}, + {24,.3,30,26,-26,26,-29,35,-32,33,-63,0,46,19,-27,24,8.3,-30.2,-30,30,2.1,2.1,-22,24,-24,14.4,0,32.3,41,-33,12.5,-33,22.5,-32,6.2,10.2,41,-71,.3,46,-46,.4,30,33,-25,15.4,47.7,10.2,-14,12,-58,0,30,41,-41,30,-60,6.2,39,-23,19,-35,26.7,47.2,-63,.3,62,64.2,0,-62,.41,75.2,-56,79.3,4.1,8.6,106.7,65.01,16.11,110.3,-60,.11,43,5,-10,56.3,40.2,-14,19,0,78.2,0,-60,.4}, + {62,.2,11,-6,-5,4.2}, + {78,4,16,-3,-53,13,-7,34,-33,2,-3,7,-17,0,10,39,-39,3,8.2,1,-8,9,-9,-6,20,-8,-6,9,10,3,-22,7,-7,23.2,57,-47,5,-5,8.2,25,-25,27.3,-7,6,-6,-6,6,4,-4,5,-29,46,-14,17,-35,15,-15,44,-27,0,1,41,-41,39,-47,7,1,22,-22,30,-30,1,-1,-2,2,4.2,30,-32,1,52.3,58,-39,32,-65,0,33,24,-33,7,2,-19,19,.2,27,-27,16,-16,-9,0,7,-7,0,39,0,-7,-2,17,-38,-9,.2,30,6,-11,-31,.2,31,-31,31,0,-16,0,-15,16,-10,-2,2,10,-10,3,5,17,-17,17,-16,.2,5,-14,-24,24,105.4,-10,10,4.2,8.2,10.3,5,-5,5,-8,8,-2,2,11,-10,0,-6,22,-25,7,2,-6,5,-32,24,0,9,0,-1,6.5,-33,63,-39,-2,0,-8,57,-41,1,-1,24,0,-24,1,0,18,-3,-32,13,0}, + {24,0,25,0,5,-30,25,-25,6.1,25,40,-40,5,0,-30,24,1,8,-8,0,21,-16,-5,-25,18,-18,30,-30,2.1,25,0,24,-49,6.2,49,-49,2.1,6.3,-16,16,37.2,-19,19,-20,1,37.3,0,10.2,-25,30,0,-6,-24,24,51,-45,14.3,-1,2.1,6,-6,2.1,9,-9,47,-41,52.4,-25,49,-24,81.2,4.1,56.3,52.2,.2,37.2,11.3,25,0,40,0,-65,54,-29,-25,.61,25,.2,15.2,24,-27,2,52.3,24,28.2,-24,.5,-3,3,0,14.2,27,35.3,2.1,-1,-2,22.4,-1,0,25,-24,93.2,64.4,-1,-24,4.2,24,0,-25,6.5,-19,33,-14,-24,.2,114.2,94.3,0,3.1,173.3,21,0}, + {84,-27,.6,16,22,-38,13,-13,-15,0,15,.7,16,-16,0}, + {30,-1,.6,2,-2,-1,1,-2,0,2,.01}, + {{{1,1},{25,.86}},{{1,2},{51,4,-9,9,-9,8,-30,22,9,-1,.5,-8,9.2,-22,.2,9.3,.3,-12,-18,6.2,-31,30,.4,-30,49,-27,11,-11,-22,30,14.2,30,.3,-8,22.3,4.3,8,-38,0,18,4,8,0,25.2,0}},{{2,1},{27,.35},{3,2,3,8,2,4,6,2,10,2,3,-6.2,2,5}},{{2,2},{54,13,0,22,-47,25,-8,.5,8,-13,-12,0,7.2,.3,-5,13,-25,17,.4,-8,25,0,-22,5,-5,5,.3,8,16.2,8,-4,-21,0,31,16,0,-38,18.2},{3,2,3,8,2,4,6,2,10,2,3,-6.2,2,5}},{{3,1},{28,.84},{3,2,1,2,8,2,4,6,2,8,-2.2,3,-6.2,2,5,1.3}},{{3,2},{57,12,0,-21,21,-2,.5,2,16,-37,0,7.2,.3,11,-9,-21,19,.4,11,0,7,-18,-5,5,.3,2,15.2,2,-5,-16,0,27,3,0},{3,2,1,2,8,2,4,6,2,8,-2.2,3,-6.2,2,5,1.3}},{{4,1},{29,.84},{3,2,1,2,8,2,4,6,2,8,-2.2,3,-6.2,2,5,1.3}},{{4,2},{62,8,0,-19,19,1,.5,-1,18,-37,0,7.2,.3,8,-9,-19,20,.4,9,0,8,-17,-1,1,.3,3.1,-1,-4,-15,0,25,4,0},{3,2,1,2,8,2,4,6,2,8,-2.2,3,-6.2,2,5,1.3}},{{5,1},{30,.54},{3,2,1,2,8,2,4,6,2,8,1.2,2,3,-6.2,2,5,1.5}},{{5,2},{67,4,0,7,-7,2,.5,-2,18,-11,0,7.2,.3,7,-9,7,-5,.4,9,7,-16,16.2,2,.3,-2,-3,10,0,-1},{3,2,1,2,8,2,4,6,2,8,1.2,2,3,-6.2,2,5,1.5}},{{6,1},{31,.44},{3,2,1,2,8,2,4,6,2,8,1.2,2,3,-6.2,2,1,4,1.5}},{{6,2},{70,2,0,7,-7,5,.5,-5,18,-11,0,7.2,.3,4,-9,7,-2,.4,7,6,-13,-3,3,.3,-5,5,3.2,7,0,-1},{3,2,1,2,8,2,4,6,2,8,1.2,2,3,-6.2,2,1,4,1.5}},{{7,1},{32,.24},{3,2,1,2,8,2,4,6,1.2,8,1.4,3,-6.2,2,1,4,1.5}},{{7,2},{72,6,0,2,-2,2,.5,-2,15,-13,0,7.2,.3,10.3,13,-13,11,-11,8.3,3.1,0,-1},{3,2,1,2,8,2,4,6,1.2,8,1.4,3,-6.2,2,1,4,1.5}},{{8,1},{33,.33},{1,6,3,1.5,4,1.2,3,1.3,5,1.5,6,1,2,1.4,8.3,1}},{{8,2},{73,8,2,.5,11,-13,0,2,.3,-2,2,.4,11,-11,9,-9,.7,-2,0},{1,6,3,1.5,4,1.2,3,1.3,5,1.5,6,1,2,1.4,8.3,1}},{{9,1},{34,.33},{1,6,3,1.5,4,1.2,3,1.3,5,1.5,6,1,2,1.4,8.3,1}},{{9,2},{76,6,4,.5,9,-13,0,4,.3,-4,4,.4,9,-9,7,-7,.7,-4,0},{1,6,3,1.5,4,1.2,3,1.3,5,1.5,6,1,2,1.4,8.3,1}}}, + nil, + {{{1,1},{25,.41,2,-2,.3}},{{2,1},{24,.91}},{{2,2},{47,.8,-23,23,.2,-23,.2,23,.3}},{{2,3},{24,.8,23,-23,.2,23,.2,-23,.3}}}, + {{{1,1},{25,-1,.2,1,.2,-1,3.1,7.2,6.2,.7,3.2,2.1,4.3,.3,3.2,.4,3.2,18.4,17.7,4.3,0,19.3,.2,2,-2,44.3,14.4,.6,2,-2,2,-3,8.2,3,-2,59.4,65.6,24.5,2,-3,.3,3,3.2,1,.4,64.4,57.6,9.1,8.1,93.3,3.1,49.8,21.7,0,1,.3,4.1,46.2,82.3,.6,30.4}},{{2,1},{24,.83,23,-23,.66},{2,1.2,-4.2,1.2,2,9,-2.3,1.3,2,1.4,10.2,-2.6,3,1.4,8,-2.2,11,2,3,-4.3,-2.2,3,16.2,1.3,6,1.4,-2.4,1.4,-2.8,8.3,2,4,-2.6,1,5,1,5,1.4,3,1.6,2}},{{2,2},{24,0,23,-23,.99,3.2,.2},{2,1.2,-4.2,1.2,2,9,-2.3,1.3,2,1.4,10.2,-2.6,3,1.4,8,-2.2,11,2,3,-4.3,-2.2,3,16.2,1.3,6,1.4,-2.4,1.4,-2.8,8.3,2,4,-2.6,1,5,1,5,1.4,3,1.6,2}},{{2,3},{47,0,-23,23,.53,3.2,.26,3.2,.2},{2,1.2,-4.2,1.2,2,9,-2.3,1.3,2,1.4,10.2,-2.6,3,1.4,8,-2.2,11,2,3,-4.3,-2.2,3,16.2,1.3,6,1.4,-2.4,1.4,-2.8,8.3,2,4,-2.6,1,5,1,5,1.4,3,1.6,2}}}, + {{{1,1},{25,2,.11,-2,2,-2,0,2,0,6.2,.5}},{{2,1},{24,23,0,-23,23,.8,3.2,-23,0,9.4,.5}},{{2,2},{24,.81,23,-23,.5}},{{2,3},{47,-23,0,23,-23,.8,3.2,23,0,6.2}}}, + {{{1},{24,.9,6,-6,.81,13,5,-3,-16,1,.4,-4,.2,-11,15,.6,216,-216,.9,19,-19,.3,15}},{{2},{39,.4,3,-3,.3,-25,25,7,0,-37,37,.6,-28,28,5.2,-4,-36,42,-28,4,27,-5,-8,4,12,-34,-19,10,27,-26,30,-18,-13,35,0,-33,6,1,19,-31,31,28.2,-30,37,0,-1,1,0,-36,-5,41,0,-7,48.2}}}, + {{{1},{24,.6,23,-23,.8,18,-23,5,0,-1,1,.3,3.2,.01,-15,15,12,-12,.7,218,-204,-14,.6}},{{2},{41,-35,0,48,-48,.2,41,-41,67,-67,.5,42,-44,34,27,-11,-10,18,-20,-35,44,3,-13,-29,0,-5,50,.2,-9,0,-36,36,-33,71,-25,-55,0,235,-186,-49,.3,237,-195,-6,-36,.2,42,17,0}}}, + {{{1},{24,.2,-4,-4,24,-16,.21,-7,7,0,26,-8,-18,.6,-4,4,.23}},{{2},{60,-48,10,26,-24,18,-1,.01,-29,-3,27,6,9,-16,18,-17,208,-184,-24,.2,2,10,-12,.5,3,31,175,-204,0,-3,0,-18,21,0,-17,17,0,-5,.3,5,-3,0,3,3.1,-21,0,16}}}, + {100,67,-67,0,7,-7,2.1,7,139,-146,147,-147,148,-141,142,-142,-7,7,143,-145,2,144,-144,145,-152,0,7,146,-146,-7,0,154,-148,-6,.2,6,149,-149,150,-150,151,-151,-6,6,2.1,4.1,152,-152,153,-153,154,-155,-5,0,161,-161,67,-62,157,-157,158,-158,159,-159,-5,5,2.1,4.1,2.1,160,-160,161,-166,.6,167,-167,168,-168,169,-169,170,-170,.4,171,-171,68,-68,172,-172,0,173,-173,69,0,-69,174,1.3,-107,0,108,1.11,-189,190,-190,191,-185,186,-186,187,-188,189,10.2,-195,196,-196,197,14.2,-191,192,-199,200,-193,194,12.4,-197,198,-198,199,-200,201,-201,202,-202,73.3,0,208,-208,209,-209,210,-210,211,-206,-5,6,-6,.2,5,5.4,7,205,-206,65,0,-71,.2,81.2,.01}, + {100,.3,72,1.5,-60,1,-18,0,78,1.3,-62,1,193,-192,1.3,-13,1,13,1.2,-14,69,1.3,-85,0,86,-58,59,-59,60,2.1,1.9,-68,1,68,1.3,-102,.9,17,1,85,1,-72,1.7,66,1,-66,-26,1.2,-16,0,107,1.3,-110,0,111,1.2,-72,1.8,-30,1,-20,.3,13,101,1,-86,-29,.4,41,-41,.8,50,1,-36,1,36,1,-53,.5,11,1,-12,0,4.2,2.1,-3,1,3,1,90,1,-87,1,21,10.3,-17,1.3,-5,1,5,16.3,3,22.5,-49,.2,15,-15,.4,16,71.2,118,1.2,-66,0,-54,0,27,-14,108,7.2,-15,-26,0,-14,.4}, + {314,-92,93,-92,-114,47,67,-115,0,208,-160,66,-113,208,-208,209,-209,210,-163,-48,212,-96,0,97,1.2,-166,0,1,0,166,-215,216,-216,217,-218,219,-219,220,-219,49,-1,-49,0,1,5.4,48,173}, + {100,.3,72,1.5,-60,1,-18,0,78,1.3,-62,1,-20,21,1.3,-13,1,13,1.2,-14,69,1.3,-85,0,86,-58,59,-59,60,2.1,1.9,-68,1,68,1.3,-102,.9,17,1,85,1,-72,1.7,66,1,-66,-26,1.2,-16,0,107,1.3,-110,0,111,1.2,-72,1.8,-30,49.2,.3,13,101,1,-86,-29,.4,41,-41,.8,50,1,-36,1,36,1,-53,.5,11,1,-12,0,4.2,2.1,-3,1,3,1,90,1,-87,1,21,10.3,-17,1.3,-5,1,5,16.3,3,22.5,-49,.2,15,-15,.4,16,71.2,118,1.2,-66,0,-54,0,27,-14,108,7.2,-15,-26,0,-14,.4}, + {{{1},{20,.93,-17,17,.92,1,-1,.44},{7,1,5,1,3,1,12,1,5,1.3,3,1.3,13,1.11,3,1,9,16.3,18.4,11,1.81,5,1.51,33,16.2,1.4,9,1.4}},{{2},{24,.611},{7,1,5,1,3,1,12,1,5,1.3,3,1.3,13,1.11,3,1,9,16.3,18.4,11,1.81,5,1.51,33,16.2,1.4,9,1.4}}}, + {100,.4,59,-59,230,-230,231,-231,232,-232,233,-233,125,-125,234,-234,235,-235,0,236,-236,237,-237,238,-238,239,-239,61,-61,240,-240,126,-126,241,-241,242,-242,243,-243,127,-127,128,-128,244,-244,245,-245,246,-246,247,-247,248,-248,249,-249,250,-250,251,-251,252,-252,253,-253,129,-129,254,-254,255,-255,256,-256,257,-257,258,-258,259,-259,260,-260,261,-261,62,-62,63,-63,262,-262,263,-263,264,-264,265,-265,266,-266,130,-130,267,-267,268,-268,131,-131,269,-269,270,1,-271,125,147,-211,-61,273,-146,2,-129,0,63,0,67,144,1.8,-282,283,-283,284,-284,285,-285,286,-286,287,-287,288,-288,289,-289,290,-290,291,-291,292,-292,293,-293,294,-294,295,-295,296,-296,297,-297,298,-298,299,-299,300,-300,301,-301,302,-302,303,-303,304,-304,305,-305,306,-306,.21,307,-307,308,-308,0,309,-309,78.2,59,0,-59,62,0,-3,2,65,-126,128}, + {100,.4,60,-60,310,-310,311,-311,312,-312,313,-313,132,-132,314,-314,315,-315,0,316,-316,317,-317,318,-318,319,-319,64,-64,320,-320,133,-133,321,-321,322,-322,323,-323,134,-134,135,-135,324,-324,325,-325,326,-326,327,-327,328,-328,329,-329,330,-330,331,-331,332,-332,333,-333,136,-136,334,-334,335,-335,336,-336,337,-337,338,-338,339,-339,340,-340,341,-341,65,-65,66,-66,342,-342,343,-343,344,-344,345,-345,346,-346,137,-137,347,-347,348,-348,138,-138,349,-349,350,1,-351,96.2,83.2,0,134,2,-136,0,66,0,71,215,1.8,-360,.61,361,-361,362,-362,363,-363,364,-364,365,-365,366,-366,367,-367,368,-368,369,-369,370,-370,371,-371,372,-372,373,-373,374,-374,375,-375,376,-376,.21,377,-377,378,-378,0,379,-379,63.2,60,0,-60,65,0,-5,4,69,-133,135} }, __refPoss = { nil, nil, nil, - {13,3,5,11,4,24,2,2.1,23,1,-2.3,1,2,60,6,10}, - {16,13,24,28,2,28,1,2,3,1.2,2,7,1.2,3,-2.2,10,4,2,8,36}, + {13,3,5,15,24,2,26,24,1,-2.3,1,2,60,6,10}, nil, - {1,3,2,4,6,2,5,2,8,-2.2,4,8,6,2,3,9,-4.3,5,1,10,6,2,6,1,3,5,1.2,6,2,67,1,2,2.1}, - {11,10,4,33,6,-2.01,26,30,2,22,-2.3,10,6}, + {1.4,6,3,1,7,15,1,8,15,1.3,3,1.3,19,1,5,1,15,8,6,1.8,3,1,3,1,4.1,33,1.11,6,1,9,1.4}, + {1,3,-6.2,2,5,2,7,1,4,12,6,5,9,-4.3,22,10.3,3,5,1.2,6,2,67,1,7,1.2,2}, nil, nil, - {1,5,6,13,9,3,1,4,1.6,-2.3,5,2,8,2,4,10,2,-4.2,-2.2,10,7,2,1,17,2,18,-2.3,20,6,5,2,1,2,6,1}, - {1,5,6,13,9,3,1,4,1.6,-2.2,1.2,5,2,10,14,2,-4.2,-2.2,10,7,2,1,17,2,18,-2.3,20,6,7,1,2,6,1}, - {34,4,-2.9,54,26,2,18,-2.3,20,-6.2}, - {5,-2.3,4,-2.2,3,2,1.2,-2.2,51,16,24,27,2,4,38}, nil, - {1,20,37,2,4,-2.8,1.2,5,6,47,2,17,5,-2.3,10,6}, - {5,-2.3,4,1.2,2,3,2,1.2,8,7.2,-2.6,1.4,13,12,2,6,2,6,8,2,3,7,3,1.7,9,2,3,-2.2,3,1.2,-2.2,29.2,2.1,1,2,17,6,4,24.2}, - {1,4,2,1.2,2,4,1.4,3,-2.4,1.2,11,-2.2,6,-8.3,-4.2,2,12,10,-4.2,1.6,2,4,1,-2.2,7,6,1,-2.3,3,2,-12.2,6,3,10,2,1}, - {1,2,9,4,9,8,1,4,-2.9,3,1,5,4,-2.2,4,7,2,1,3,-2.3,1.2,-2.6,5,6,15,2,6,2,6,4,2,1.2,2,10,-2.3,4,20.3,3.1,1.2,3}, nil, nil, + {21,45,2,16,26,33,38,6,18}, + nil, + nil, + {1,36,1,4,1.3,14,2,8,26,4,18,2,1,17,2,5.2,24,6,7,1,2,12,1}, + {1,36,1,4,1.3,14,2,34,4,18,2,1,17,2,5.2,24,6,7,1,2,12,1}, + {6,4,1.2,3,1,2,4.2,-2.5,1.2,5,1,-2.2,1.2,-2.4,1.2,13,1,-2.6,1.4,17.3,3,1,4,-2.3,18.2,2,46,2,13,1,15,1,2,1,4,1.6}, + nil, + {5,-2.3,4,-2.2,3,2,1.2,-2.2,51,16,25,27,2,4,38}, + nil, + {1,20,37,2,4,-2.8,1.2,5,6,48,2,17,5,-2.3,10,6}, + {5,-2.3,4,1.2,2,3,2,1.2,8,7.2,-2.6,1.4,13,12,2,6,2,6,8,2,3,8,3,1.7,9,2,3,-2.2,3,1.2,-2.2,29.2,2.1,1,2,17,6,4,24.2}, + {1,4,2,1.2,2,4,1.4,3,-2.4,1.2,11,-2.2,6,-8.3,-4.2,2,12,10,5,4,1.6,2,4,1,-2.2,7,6,1,-2.3,3,2,-12.2,6,3,16,2,1}, + {1,2,9,4,9,8,1,4,-2.9,3,1,5,4,-2.2,4,7,2,1,3,-2.3,1.2,-2.6,-6.2,15,2,6,2,6,4,2,1.2,2,10,-2.3,4,19.3,3.1,1.2,3}, + nil, + nil, + {1.4,17,15,1,19,1,3,2,1.7,19,6,1,24,1,7,3,2,1,-2.3,1.9,33,2,1.4,2,1.3,15.2}, + nil, nil, nil, nil diff --git a/luafight/Modules/Battle/Config/Data/PassiveSkillLogicConfig.lua b/luafight/Modules/Battle/Config/Data/PassiveSkillLogicConfig.lua index 89378a305..15a10f6b7 100644 --- a/luafight/Modules/Battle/Config/Data/PassiveSkillLogicConfig.lua +++ b/luafight/Modules/Battle/Config/Data/PassiveSkillLogicConfig.lua @@ -1,8 +1,8 @@ local PassiveSkillLogicConfig = { -__count = 4577, -__indexs = {1.7,94,1,899,1.42,8976,1.7,13,2.1,4.1,2.1,1.6,14,2.1,4.1,2.1,1.5,15,2.1,4.1,4.3,70205,1,19489,1100,1.01,90,1.41,886,4.1,8.1,4.3,885,1.11,16.11,1.9,91,4.1,8.1,44.41,1.11,89,60.71,4.3,1.51,885,52.81,20.2,56.61,60.61,104.82,164.91,52.91,1.31,887,24.7,186,112.3,85,8.3,86,1.31,6,1,5580,34700,9.3,5786,1.5,5,1.5,9985,1.2,99998,1.3,90097,100,1.4,96,1.5,95,1,9699,300,600,1.6,194,1,199,5.2,994,2.1,1.6,294,1.3,97,9.2,394,4600,1.8,9992,1.3,9997,1.2,298,9800,300,1,49699,33.2,1.6,94,1.2,98,1,99,6.2,83.2,1.11,1789,800,1.5,195,52.2,900,16.2,5500,200,83.2,1.4,196,400,1.01,190,1.3,197,1.4,596,1.01,990,2.1,1.01,290,33.2,600,1.01,390,4600,1.01,9990,1.9,9991,1.8,292,57.2,200,449400,1.66,54,1.4,76,1.01,110,1.4,396,48.2,1.4,296,6.3,8.4,2.1,4.1,196,2.1,52.2,1.4,896,6.3,6585,-10.6,1,9,-10.3,1,9899,-10.9,1,9,5.2,11.3,-10.2,8.4,13.5,5.1,-10.01,9900,20.6,7.1,1,18898,1.05,5,1,30945,12.7,9,1.3,7,10,1,9869,52.8,8.1,8.3,1,9,10,1,9,1.2,9898,60.8,28.9,8890,127.9,8.1,4.1,5,30.7,90,14.4,1.2,8,2.1,1.4,6,2.1,1.42,4.3,8.4,4.3,16,1.4,9475,34.7,49899,147.3,10,117.3,9870,179.4,96.2,185.6,-10.01,87.2,303.2,2.1,4.1,1.3,61.2,87,6.3,7,1.3,6.4,16.4,6,2,1.2,6,-10.5,144.5,72.2,1,90,17.3,9706,187.8,9890,155.41,170.4,76.2,49899,217.11,8861,372.2,1.5,904,192.51,24.4,9870,132.3,46.6,307.7,1.2,8,35.8,19.3,71.21,38.4,-10.4,1.6,2884,33.3,270.3,-10.8,830,-10.01,8.2,-10.6,2830,-10.6,66.2,73.5,1,9,151.2,402829,206.4,1.6,925,57949,1.22,99979,1.55,199945,1.61,9984,1.2,9,1,2,9986,1.5,79995,118.3,2.1,4.1,8.1,6.1,98904,-10.99,9010,2.1,-10.99,479000,1.71,10993,94.2,348.3,9949,-10.4,9960,8.3,51,10,90,2.1,360.3,88,8.3,5.2,84.3,89,4.3,389,21.1,42.14,6298,88.3,9960,94.2,2.1,98.5,49960,14.4,-10.5,9950,16.6,-10.4,1,9,9950,16.3,6.1,30.5,26.2,28.9,6.1,49960,56.7,4.1,50.5,9959,23.7,1,478950,1.42,999976,1.871,822,1.961,2,1.7,4.2,5,3,1,5054922,1.5,995,2.1,4.1,8.1,16.51,18995,1.31,87,924.5,907785,1.9,999992,1.91,9981,1.7,989992,1.03,499.2,99957,1.4,899996,1.7,27000117,200,-400.2,-200.2,300,-100.2,300,59908686,-10.5,11,1,8,10,4.2,9,1.3,9896,-10.8,142.4,199989900,164.5}, -__values = {-1,1.33,2,1.32,3,2,1.3,2.1,2.1,3,12,1,7.3,1.51,-2.2,1.7,-2.2,1.01,2,1.7,2,1.71,2,1,2,1.31,2,1.02,2,1.9,32.2,2,1.8,4,1.83,8.5,14.2,32.2,8.2,1.4,2,1.11,5,34.2,1.21,4,1.21,3,46.3,3,1.22,20,11,1.4,5,-10.2,60,120,80,100,60,40,1.52,7,-10.5,18,32,9,1,-10.5,8,2,10,50,-10.8,8,42,8,2,-10.7,28,22,78,-200.3,-300.2,-200.2,-300.2,200,1.4,96,1,3,8,2,29,1,10,249,97,1,3,496,1.7,18,8,2,1,9,1,55,99.3,6,21.5,98,3,2,494,3600,401,1.7,3,-2.2,3,1.01,5,8,1.7,13,2.1,2.1,1.6,14,2.1,4.1,2.1,1.5,15,2.1,4.1,4.3,9694,30000,50000,912,-10.3,1,8,1,10,62.3,232,902,3000,993,14011,11996,8000,3000,1000,55893,321,199679,600027,17,11067,940,9050,10,9960,19999,30031,49969,1,40,19960,30000,10030,9970,10000,30,50009,39990,99971,40,9959,1,29,40.3,9999,9960,40,9960,10041,69999,11478891,1.7,33,1.2,99958,1.2,899998,1.4,85999995,911071,1,10038}, -__exVals = {355,.05,.1,.5,.2,.08,.12,.3,.15,.4,.06,.25,.04,.02,.16,.03,.6,.8,.35,nil,.95,.015,.01,.14,.18,.36,.7,.24,.10,.45,.005,.20,.32,.09,.72,.9,.07,.11,.30,.48,.17,1.2,2.62,1.9,3.85,.64,1.6,.21,.13,.96,.75,.55,1.75,2.5,.33,.19,.42,4.02,.65,.66,.85,1.98,1.12,.23,.26,.40,3.2,3.6,.46,.54,.78,.56,.059,.068,.077,.086,.095,.155,.164,.182,.186,.071,.0905,.1115,.1325,.1535,2.73,.29,.50,2.8,4.8,2.1,2.4,2.7,4.5,2.9,4.3,5.4,.34,1.1,3.5,1.5,.38,1.25,2.6,.505,.51,.515,.52,.525,.53,.535,.545,.555,.565,.57,.575,.58,.585,.59,.595,.605,.61,.615,.62,.625,.63,.635,.645,.655,.665,.67,.675,.68,.685,.69,.695,.705,.71,.715,.725,.73,.735,.74,.745,.755,.76,.765,.77,.775,.785,.79,.795,.805,.81,.815,.82,.825,.83,.835,.84,.845,.855,.86,.865,.87,.875,.88,.885,.89,.895,.905,.91,.915,.92,.925,.93,.935,.94,.945,.955,.965,.97,.975,.98,.985,.99,.055,.064,.073,.082,.091,.105,.109,.114,.118,.123,.127,.132,.136,.141,.145,.159,.168,.173,.177,.191,.195,.205,.209,.214,.218,.223,.227,.232,.236,.241,.245,.255,.259,.264,.268,.273,.277,.282,.286,.291,.295,.305,.309,.314,.318,.323,.327,.332,.336,.341,.345,.355,.359,.364,.368,.373,.377,.382,.386,.391,.395,.405,.409,.414,.418,.423,.427,.432,.436,.441,.445,.455,.459,.464,.468,.473,.477,.482,.486,.491,.495,.0515,.053,.0545,.056,.0575,.0605,.062,.0635,.065,.0665,.0695,.0725,.074,.0755,.0785,.0815,.083,.0845,.0875,.089,.092,.0935,.0965,.098,.0995,.101,.1025,.104,.1055,.107,.1085,.113,.1145,.116,.1175,.119,.1205,.122,.1235,.125,.1265,.128,.1295,.131,.134,.1355,.137,.1385,.1415,.143,.1445,.146,.1475,.149,.1505,.152,.1565,.158,.1595,.161,.1625,.1655,.167,.1685,.172,.174,.176,.178,.184,.188,.192,.194,.196,1.22,.025,3.82,2.15,2.09,1.37,1.32,2.12,.002,.28,.004,.008,.006,.075,1.85}, +__count = 4638, +__indexs = {1.7,94,1,899,1.42,8976,1.7,13,2.1,4.1,2.1,1.6,14,2.1,4.1,2.1,1.5,15,2.1,4.1,4.3,70205,1,19489,1100,1.01,90,1.41,886,4.1,8.1,4.3,885,1.11,16.11,1.9,91,4.1,8.1,44.41,1.11,89,60.71,4.3,1.51,885,52.81,20.2,56.61,60.61,104.82,164.91,52.91,1.31,887,24.7,186,112.3,85,8.3,86,1.31,6,1,5580,34700,9.3,5786,1.5,5,2.1,1.5,9975,1.2,99998,1.3,90097,100,1.4,96,1.5,95,1,9699,300,600,1.6,194,1,199,5.2,994,2.1,1.6,294,1.3,97,9.2,394,4600,1.8,9992,1.3,9997,1.2,298,9800,300,1,49699,33.2,1.6,94,1.2,98,1,99,6.2,85.2,1.11,1789,800,1.5,195,52.2,900,16.2,5500,200,85.2,1.4,196,400,1.01,190,1.3,197,1.4,596,1.01,990,2.1,1.01,290,33.2,600,1.01,390,4600,1.01,9990,1.9,9991,1.8,292,57.2,200,449400,1.27,-2.2,1.2,2,1.9,2,1.7,2,1,19,1.4,76,1.7,3,110,1.4,396,57.2,1.4,296,6.3,8.4,2.1,4.1,196,2.1,61.2,1.4,896,6.3,6585,-10.6,1,9,-10.3,1,9899,-10.9,1,9,5.2,11.3,-10.2,8.4,13.5,5.1,-10.01,9900,20.6,7.1,1,18898,1.05,5,1,30945,12.7,9,1.3,7,10,1,9869,52.8,8.1,8.3,1,9,10,1,9,1.2,9898,60.8,28.9,8890,127.9,8.1,4.1,5,30.7,90,14.4,1.2,8,2.1,1.4,6,2.1,1.42,4.3,8.4,4.3,16,1.4,9475,34.7,49899,147.3,10,117.3,9870,179.4,96.2,185.6,-10.01,87.2,312.2,2.1,4.1,4.3,506,127.5,45.2,115.8,9,9890,132.41,147.4,53.2,49899,194.11,8861,358.2,1.5,904,169.51,24.4,9870,109.3,46.6,284.7,1.2,8,35.8,19.3,6.5,29890,43.4,4.1,1,19968,94.01,-10.4,1.6,44,2840,44.3,258.3,-10.9,820,-10.01,8.2,-10.7,2820,-10.6,77.2,84.5,1,9,-10.5,1,9,402820,195.4,34.2,881,57949,1.22,99979,1.55,199945,1.61,9984,1.2,9,1,2,9986,1.5,79995,131.3,2.1,4.1,8.1,6.1,98904,-10.99,9010,2.1,-10.99,479000,1.71,10993,107.2,338.4,9940,-10.4,20,9940,10.3,20,31,10,90,2.1,353.3,88,8.3,5.2,89.3,89,4.3,389,21.1,42.14,6298,89.4,97.4,3.1,103.7,49940,19.5,-10.6,21.01,-10.4,134.3,26.4,7.1,38.7,33.2,2.1,217.3,39.11,9.7,49940,75.01,47.6,67.5,19,32.11,1,19,478931,1.42,999976,1.871,822,1.961,2,1.7,4.2,5,3,1,4998602,30,1.2,8,1.3,17,1,29,50,1,19,56160,1.5,995,2.1,4.1,8.1,16.51,18995,1.31,87,970.5,907785,1.9,999992,1.91,9981,1.7,989992,1.03,534.2,99957,1.4,899996,1.7,27000117,200,-400.2,-200.2,300,-100.2,300,59908686,-10.5,11,1,8,10,4.2,9,1.3,9896,-10.8,174.4,199989900,201.6}, +__values = {-1,1.33,2,1.32,3,2,1.3,2.1,2.1,3,12,1,7.3,1.51,-2.2,1.7,-2.2,1.01,2,1.7,2,1.71,2,1,2,1.31,2,1.02,2,1.9,32.2,2,1.8,4,1.83,8.5,1.81,-2.2,32.2,8.2,1.4,2,1.11,5,34.2,1.21,4,1.21,3,14.2,40.2,3,2,1,3,1.22,20,11,1.4,5,-10.2,60,50,70,80,100,60,40,1.52,6,1,9,1,9,4.1,4.3,18,31,13.11,9,1,8,1.2,9,1,49,12.11,10.7,41,13.11,6.1,28,21,1,78,25,175,-200.2,-300.2,-200.2,50,250,300,200,1.4,96,1,3,8,2,29,1,10,249,97,1,3,496,1.7,18,8,2,34.3,55,2,1,2,6,21.5,98,3,2,494,500,3100,400,1.8,3,-2.2,3,1.01,5,8,1.7,13,2.1,2.1,1.6,14,2.1,4.1,2.1,1.5,15,2.1,4.1,4.3,9694,20000,-10000.2,40000,911,97.6,1.2,8,4.1,1.2,232,902,3000,993,14011,11996,8000,3000,1000,55893,321,199679,600027,17,40,8,11019,940,9050,10,9960,19999,30031,49969,1,40,19960,30000,10030,9970,10000,30,50009,39990,99971,40,9959,1,29,50.3,9999,9960,40,9960,10041,69999,11478891,1.7,33,1.2,99958,1.2,899998,1.4,85999995,911071,1,10038}, +__exVals = {359,.05,.1,.5,.2,.08,.12,.3,.15,.4,.06,.25,.04,.02,.16,.6,.03,.8,.35,.015,nil,.95,.01,.14,.24,.36,.7,.18,.10,.005,.32,1.04,.45,.72,.20,1.09,.09,.9,.07,.11,.30,.48,.55,.17,1.15,.64,.96,.75,1.2,2.62,1.9,3.85,1.6,.025,.13,.61,1.18,1.75,2.5,.33,.19,.78,4.02,.59,.65,.66,.85,1.98,1.12,.23,.26,3.2,3.6,.46,.34,.58,.54,.56,.059,.068,.077,.086,.095,.155,.164,.182,.186,.071,.0905,.1115,.1325,.1535,2.73,.42,.21,.29,.50,.40,1.5,2.8,4.8,2.1,2.4,2.7,4.5,2.9,4.3,5.4,1.1,3.5,.38,1.25,2.6,.505,.51,.515,.52,.525,.53,.535,.545,.555,.565,.57,.575,.585,.595,.605,.615,.62,.625,.63,.635,.645,.655,.665,.67,.675,.68,.685,.69,.695,.705,.71,.715,.725,.73,.735,.74,.745,.755,.76,.765,.77,.775,.785,.79,.795,.805,.81,.815,.82,.825,.83,.835,.84,.845,.855,.86,.865,.87,.875,.88,.885,.89,.895,.905,.91,.915,.92,.925,.93,.935,.94,.945,.955,.965,.97,.975,.98,.985,.99,.055,.064,.073,.082,.091,.105,.109,.114,.118,.123,.127,.132,.136,.141,.145,.159,.168,.173,.177,.191,.195,.205,.209,.214,.218,.223,.227,.232,.236,.241,.245,.255,.259,.264,.268,.273,.277,.282,.286,.291,.295,.305,.309,.314,.318,.323,.327,.332,.336,.341,.345,.355,.359,.364,.368,.373,.377,.382,.386,.391,.395,.405,.409,.414,.418,.423,.427,.432,.436,.441,.445,.455,.459,.464,.468,.473,.477,.482,.486,.491,.495,.0515,.053,.0545,.056,.0575,.0605,.062,.0635,.065,.0665,.0695,.0725,.074,.0755,.0785,.0815,.083,.0845,.0875,.089,.092,.0935,.0965,.098,.0995,.101,.1025,.104,.1055,.107,.1085,.113,.1145,.116,.1175,.119,.1205,.122,.1235,.125,.1265,.128,.1295,.131,.134,.1355,.137,.1385,.1415,.143,.1445,.146,.1475,.149,.1505,.152,.1565,.158,.1595,.161,.1625,.1655,.167,.1685,.172,.174,.176,.178,.184,.188,.192,.194,.196,1.22,3.82,2.15,2.09,1.37,1.32,2.12,.002,.28,.004,.008,.006,.075,1.85}, __fields = { 'Id', 'Type', @@ -21,19 +21,19 @@ __defaults = { nil }, __refs = { - {46,.2,5,1.2,-7,-6,8,.4,1,-1,.4,-23,15,8,.9,-8,6,0,-5,.93,-1,.6,-5,.6,-19,.31,9,.6,5,.5,-7,.5,22,.5,-27,.5,-2,.11,57,0,-2,2,.5,141,-138,-3,1,3,-4,.3,139,-139,.51,6,-3,-3,7,-1,-6,.3,3,-3,.51,1,2,-3,10,26,-36,.3,4,-4,.51,12,-9,-3,3,10,-13,20.4,14,-11,-3,15,-1,-14,.3,2,-2,.9,16,-16,.5,245,-242,-3,0,7.2,.3,17,-17,.51,15,-12,-3,9,-3,53.2,15,-15,10.4,18,-9,-9,.3,19,-19,.51,20,-17,-3,11,-11,.3,1,-1,.51,21,-18,-3,143,-143,.3,141,-141,.51,22,-19,-3,144,-144,.3,23,-23,.51,13,-10,70.2,-15,.3,105,-105,36.2,13,-33,141,-117,-24,.3,149,-149,.51,25,-22,19.2,-5,-10,.3,41.2,76.5,130,-139,.3,18,-18,.51,26,-23,-3,27,-25,1,-3,.3,26,-26,.51,28,-25,-3,0,29,-29,.02,3,0,-3,30,-27,17.2,137.3,10.3,105,-102,10.2,13,-13,104.4,1,144,-145,96.4,67,-64,-3,31,110,-141,.3,31,-31,.61,10,-7,-3,5,-5,77.4,196.3,22,-22,.3,70,-70,.51,27,-24,-3,82.2,.3,9,-9,.51,32,-29,9.4,170.3,67,-34,124.2,-107,-34,46.7,35,-31,-4,.3,303,-303,.51,210.3,39,-24,154.2,40,-40,.31,66,-66,41,-38,-3,42,-36,-6,.3,192,-192,.51,43,-40,-3,44,1,-42,-3,.3,43,-43,119.4,189.2,4.2,.3,69,-69,.51,46,-43,-3,47,21,-68,.3,46,-46,.51,52,-49,-3,141,-93,-48,.3,49,-49,188.4,50,-11,-39,.3,38,-38,.51,38,-35,74.2,9.2,73.2,.51,49,-46,236.4,147,-147,38.4,9.3,10,-10,130.4,9.3,32,-32,18.4,51,92,282.2,53,-53,56.4,32,-14,150.2,54,-54,.51,23,-20,-3,18,-8,264.2,148,-148,.51,2,1,96.2,9,-56,.3,57,-57,.51,58,-55,-3,0,58,-58,.3,59,-59,.51,18,-15,-3,13,5,190.5,69.3,3,57,-60,324.4,60.3,1,17,219.5,61,-58,-3,62,-44,10.2,126.3,371.3,229.3,69.3,54,-51,-3,.5,46.6,27,-27,339.4,45.3,61,-61,9.3,.41,281.3,63,1,-64,.3,65,-65,.61,3,-3,310,20,-330,83.4,336,-333,-3,338,-1,-337,.3,245,-245,.9,3.2,.5,341,-341,3,336,1,-340,.3,342,-342,.51,350,-347,0,343,1,4,-5,2,-3,-1,-344,.6,332,-329,0,15,299,-317,35.4,305,.5,-64,.5,-279,5,-2.2,-1,-8,5,0,-37,9,4,-4,4,29,.2,-26,.2,-8,3,21,-31,-1,25,-24,44,.3,-32,0,-6,28,-35,27,18,.3,-42,9,-5,38,0,1,-1,-15,-7,-4,26,.3,-40,.3,-1,3,-4,1,41,.3,-41,3,2,1,12,16,-1,-1,9,1,-27,1,25,1,-4,4,0,-4,-10,-31,0,36,1,.4,-38,70.4,2,0,16,3,2,-28,14,-3,4,1,21,.2,1,-25,14,0,8,.3,1,.2,-38,4,10,.2,7,0,1,0,5,.2,12,-3,-39,14,0,12,0,-11,27,.3,-24,24,0,-15,13,-11,24.2,116.2,-14,1,.2,14,25.2,.2,-28,0,24,1,14,-1,-39,2,-1,44,112.3,.4,-32,0,-13,0,7,4,-4,5,0,9,-21,28,17,.2,1,-1,.3,-45,12,-12,45,25.3,11.3,-15,-6,-5,26,18.4,143.2,37,-25,30,-43,-4,5,1,39,49.4,149.9,.2,1,-28,1.2,23,0,1.2,7.2,-4,3,4.2,.4,155.3,38,31,71,.2,-71,.3,72,1,31,37,-67,1,-75,0,71,5,-5,1,0,5,-6,-71,78,1.2,-80,78,3,1,-82,83,1,101,-100,1.2,-9,10,1.2,-6,7,1.5,8,-7,-97,98,1,-99,100,1.3,-32,0,-71,0,186,8,-110,-15,-82,.4,314,-142,-159,0,302,8,-310,0,245,-161,268,-363,.4,99.2,8,226.2,.4,35,.4,-3,84.2,.4,5,.4,-34,.4,28,.4,9,.2,-65,0,44,.2,-44,0,68,.2,-68,0,63,.2,-63,0,66,.2,-66,0,71,904.2,5,-143,905.3,198,-202,.5,903.4,165,1.2,-174,.5,1,149,-147,-3,10,141,-115,123,-159,.5,901.4,172,-162,158,-171,.5,900.4,174,-175,176,-190,896.7,.5,15,57,-69,-3,9,145,-148,-6,9.2,137,-149,-3,18,138,-147,152,-89,174.14,83,8,-194,.5,20,2,11,777.2,86,-203,-40,16,.3,243,8,0,-251,.5,25,0,906.3,173,-178,141,-151,79.2,141,-153,-3,9,45,85,77,-216,.5,26,172,-195,0,-3,27,172,-197,198,-10,117.2,170,-167,-3,0,171,133.2,-3.2,-3,-3,30,-23,-4,30,-33,.5,3,.2,905.2,64,-166,165,143,.4,3,.41,-2,.9,-116,.4,117,.4,-242,.41,-71,84.3,-19,-3,1,94,50,4,-78,.4,-71,.4,318,.2,2,0,-19,18,.4,-123,.4,-110,213,5,-7,8,6,-9,.5,-106,.11,133,-24,.4,6,.4,-224,.4,11,.4,-21,.4,266,.4,-343,.5,67,84,-148,-3,31,124,-14,1,-142,.5,31,2,139.2,74,-181,917.2,243,57,-300,.5,10,17,947.2,919.2,-3,212,-213,232.2,-195,-47,919.3,152,-167,.3,917.7,181,-187,.51,104,.3,-89,.2,306,.3,-321,.3,220,.3,102,.3,1,2.1,.3,-322,.3,-2,328,.2,-328,.4,43,121,-161,0,-3,165,160,.3,-280,121,4.2,1,.3,-327,157.4,13,163,-173,215,-215,-3,.5,46,168,-211,-3,47,167,-146,-23,-45,.5,52,43,-92,943.2,101,-194,-48,.5,15,139,-151,-3,158,-119,123,-162,18.2,-37,790.2,51,93,-1,58,-201,120.2,2,89,.5,1,.5,-335,251.5,32,185,-199,142,-160,.5,23,130,-150,-3,18,139,-147,263,-273,28.2,52,-295,.5,916.4,144,-135,-56,.5,58,119,-174,915.3,119,-177,.5,913.4,163,-158,5.2,.5,32,-17,12,175.2,3,30,27,116,-176,61.2,148,-160,914.3,60.3,61,-46,88.2,913.2,-17,-1,.5,1,4,-2,-3,63,140,-139,-64,.7,3,-3,331,-1,-330,.2,245,-2,-243,1,21.2,879.2,.2,-3,3,335,-1,-92,-245,.2,243,-243,336,-336,881.6,-337,0,242,15.4,896.3,350,1,-1,1,-348,0,343,0,1.2,-103,0,18.4,349,0,-349,.5,893.4,298,1,-317,63.4,333,-88,-40,1.7,14,-211,210,-3,1.2,4,1,5,-4,1.3,-170,172,-91,52,.9,-185,56,170,-84,-147,234,.9,-225,43,-33,0,-10,136,-56,-80,3,102,44,-9,0,-103,6,0,178,.3,3,-1,.3,-17,-256,274,-212,-10,-17,.22,243,1,0,49,13,-306,.27,307,.99,1,2.1,.99,-66,-243,.71,245,-141,-104,202,45,4,-6,-245,245,10,-4,505.2,13.2,147,0,27,-303,0,-8,0,-18,-11,11,-11,17,-14,0,34,.3,-6,-3,3,-3,9,-33,33,2.1,21.1,42.14,58,95.2,39,0,-15,-279,6.2,-3,4,-256,5.2,6,0,-261,106.2,186,-1,-289,111.3,-91,108,-268,117.4,18,-269,6.2,141,3,-3,134.2,12.2,16,-267,33.2,3,-60,-198,5.2,7,1,-263,149.3,-83,4,-169,-3,7.2,-252,0,248,26,-274,8.2,30.2,36,1,-288,6.2,-73,220,171.6,-220,-31,6.2,-67,212,-249,0,32.2,28,-9,-274,5.2,-5,7,-257,5.2,9,-13,27.2,10,4,1,-260,26.2,110,51,-265,5.2,171,1,-276,15.2,31,-2,-284,41.3,229,-266,52.4,57.3,167,1,-21,36.3,-2,1,-198,-56,6.2,-318,121,-58,5.2,15,11,1,-282,6.3,-94,-176,28.2,52,136,-292,245,1,-185,189,-250,10.2,-103,250,29,-351,.42,177,1148.3,1,.14,1.2,.01,3,2,-116,117,2,1.4,.11,2,1.3,-152,.7,153,.53,620.4,4.3,.51,3,1,.11,-2,-23,6,21,-15,10,4,-25,2,-8,41.13,-25,40.93,-13,-11,2,-114,.101,142,-139,-3,55,128,-4,1.2,-181,.3,10,168,-178,1726.4,197,-42,-155,.3,195,-195,.9,-35,175,56,.5,-41,41,-196,.11,196,.3,49,.3,-245,.7,204,-204,.7,9.2,-109,109,14,-210,16,83,-49,-49,55,163,0,1.2,-68,20,-173,.2,21.2,3.1,.2,338,-134,-204,.4,215,-50,-178,2,-1,-30,27,8,-12,9,-4,5,9,.5,182,-40,83.6,3,-184,.5,80.3,3,194,-4,-38,-155,269.4,40,-291,6.2,181,-130,0}, - {{{1},{2,.2,3,761,1,-762,0,3,-5,8,0,-8,11,-6,-1,-4,8,-5,-3,0,5,1,3,-6,3,7,-7,-2,-4,3,-3,-1,0,1,.7,2.1,4.1,2.1,5,.2,-2,0,-3,0,431,1,2,32,9,12,11,267,.2,-6,.2,13,-7,5.4,-765,.6,765,0,-13,.2,15,-774,0,-1,2.1,-1,760,0,4,0,-3,.3,6,0,-4,0,5,28.2,0,33.4,5.2,-765,-11,78,-78,6,-6,11,-3,7,-14,769,-770,767,-766,-1,102.3,765,-769,5,6,-7,11,-15,5.1,7,4.2,0,4,754,1,-756,755,36,-805,26.3,763,-767,26.01,.2,51.3,756,-6,-759,-6,774,-774,153.4,0,25.01,14,-14,11,-4,8,-15,765,-760,759,-764,0,26.3,760,-764,26.01,11,-11,2.1,15,759,-9,-757,-8,787,-787,26.3,767,-771,26.9,748,-763,27.3,-5,9,452,298,-752,-2,766,-777,79.51,130.3,-5,9,-15,761,-747,-13,766,-767,26.51,182.3,105.3,761,-756,-5,.2,25.81,-3,7,25.2,-761,764,-764,103.41,180.5,-6,756,180.2,153.4,49.21,8,-8,100.5,-753,759,99.4,-2,-2,255.51,125.3,-14,50.61,99.6,2,-2,1,762,187.2,26.2,-3,-1,100.41,-15,793,-787,-5,-1,51.91,-4,8,357.2,-765,-5,769,-769,26.51,253.3,3,1,751,-1,-754,-11,771,-6,-765,27.3,766,-770,129.31,-6,10,129.3,-3,-11,79.4,9,-13,359.51,749,-3,254.2,230.5,359.21,181.5,26.2,181.2,26.5,281.02,771,-762,-9,26.51,182.4,747,3,-759,756,620.2,25.3,758,-762,25.01,0,52.8,763,233.4,309.71,756,-10,-753,-8,51.4,761,-765,408.91,258.61,459.8,334.71,126.5,-761,5,-6,1,639.4,126.11,-6,-9,334.7,-4,-2,51.4,410.21,151.5,469,286,-770,769,-768,52.4,773,-777,281.31,754,-750,640.2,-758,-7,767,561.61,462.6,765,-751,-14,0,765,360.4,693.71,749,1,-760,334.2,1,27.61,615.52,156.5,765,590.2,639.42,-1,778,716.61,26.8,777,25.4,759,-763,75.81,665.42,356.5,331.14,-15,766,-760,761,-767,50.12,639.2,-756,-14,175.4,782,-786,50.41,-13,791,-787,199.5,713.61,479.2,-750,-11,24.4,530.21,299.3,659.3,765,-754,2,-12,378.4,352.81,149.3,456.5,26.02,750,1044.5,350.02,766,-771,26.4,2,-6,301.51,-14,760,633.3,26.4,154.21,278.5,-6,752,278.81,77.5,762,-16,-756,0,-5,303.54,377.2,-5,177.41,-4,23.4,769,-18,-760,765,-7,834.4,253.21,25.4,-7,758,-757,-9,762,-762,148.51,174.5,-11,762,-766,778,-778,99.4,682,-686,26.9,672,-687,991.5,-12,2,779,-773,1244.5,53.21,630.5,1,750,-1,-749,.4,-16,690,-675,165.6,3,744,0,-761,17,-18,40.3,680,-684,40.9,-4,.11,67,-78,773,-772,761,-593,-169,4,804,-40,1,-1,1,-5,.2,-764,1.2,767,39,-370,331,0,7,-12,-764,5,3,-2,765,0,-7,-755,760,7,-767,-6,5,-8,1,761,0,-756,7,-2,-6,759,-1,-763,6,-3,1,-4,771,.2,-2,-2,2,-766,764,-767,10,-2,725.2,2,0,-5,-764,4,-4,0,4,7,-11,-2.2,7,758,-758,0,751,-329,336,0,-765,-4,1.4,760,0,12,-12,12,-14,0,-762,19,-10,767,-765,-10,775,-7,-769,1.2,9,766,-768,10,-20,.3,1.3,774,-9,-766,-2.2,764,17,-9,1,-769,10,-5,-11,284.2,-1,115.3,758,-759,1.2,3,756,-765,1,759,-765,503,276,-9,9,-778,1.2,765,-767,1.2,-2,2.1,1.2,774,.3,-7,-6,0,6,-2,-760,3.2,3,-14,137.3,770,-7,1636.3,-3,5,-2,.2,9,-9,19.2,-9,137.3,5,-8,763,13,-776,85.2,3,-8,149.5,-760,4,6,-8,6,-5,153.3,769,7,-7,7,-14,-759,759,27,-26,14,-10,-760,-1,5,59.2,161.3,786,-13,0,116.2,3,-4,0,7,56.3,753,-763,1,-3,.2,8,9.3,1288.2,5.3,.4,751,-324,338,-9,-758,-9,11,-10,13,-6,-4,1,-4,766,-1,-766,784,27,-797,1,-15,785,-774,-11,6,1703.2,7,391.3,5,-4,-1,1,7,-7,0,702,-703,0,766,-766,0,12,759,-771,6,786,-792,0,562.2,784,-785,16,748,6,-764,1307.3,786,-784,-1,1,0,-2,.2,1,762,.4,-763,9,-3,1,759,-766,6,1,477,-484,5,764,-6,13,34,-15,-795,.4,762,4,-17.2,-36,.3,3,0,16,-9,10,3,11,53,1.2,-26,27,-77,.3,416.2,.3,-2,767,.2,-13,6,-5,7,-4,0,2,-2,2,7,-775,1,2,763,2,7,-13,.2,-763,.3,653.6,773,-9,-765,799,-798,786,-787,718.5,790,-40,-751,755,-769,-1,3,92.2,807.4,-8,-1,-756,33.2,763,-772,-2,1788.6,762,-757,297.2,1,1773.4,1775.3,809,-62,-754,-8,0,858,-856,-2,1761.6,295,-749,-2,-11,0,653.6,1,795,-782,-13,0,798,-799,768.6,6,787,-788,-5,.3,1,775,11,-786,784,74,-845,1,-15,794,-783,-11,6,757,-761,7,-9,191.2,222.8,-702,-1,1843.2,0,12,773,-785,6,799,-804,-1,.2,785,-786,16,761,0,-771,1607.3,.4,1104.6,171.3,1,-1,763,-1,658.2,-10,1,9,704,-2,-713,723.5,0,1027.2,-5,0,-1,117.2,1653.6,-1,1934.2,-5,763,6,-769,0,1641.6,-4,.2,-751,-11,0,771,-770,0,-1,1629.5,777,4,-782,-3,0,-11,1280.6,3,29,-791,-5,767,-3,-763,25.4,1602.3,-2,34,-782,-14,1,763,202.2,.4,2.1,-1,.4,2,.4,-2,8.5,680,.4,-680,8.3,2.1,-2,124.7,793,-793,771,-8,-754,-5,7,.4,-11,.4,11,.2,-11,.2,764,7,-4,11,-9,-769,.5,768,-766,240.3,761,4,32,-14,17,-36,-764,.21,11,28.3,795,2,11,-40,16,-13,-4,18,31,-53,5,23,-20,27,-20,-11,2,-6,13,18,-794,1526.5,-751,751,-756,1653.3,771,-771,1539.8,7,-6,-1,200.4,0,1143.3,199.6,-4,-2,784,-21,720.2,1518.5,-484,1463.2,810,-809,-1,0,172.3,751,-747,357.2,-755,1505.3,.4,11,.3,-7,.3,1,.3,757,12,-3,54,-825,0,1,-1,.3,15.2,-11,4.3,-12,.3,768,-4,23,-786,762,6,107.2,-771,5.2,632.2,1148.5,0,762,0,-748,-14,761,1,6,-4,-764,0,29.2,7,-2,482.3,2,-769,245.6,-2,0,-757,-5,0,363.2,587.2,395.6,0,796,260.2,3,-3,89.2,126.3,340.2,470.2,506.6,22.2,123.2,778,-1,-777,92.2,11.3,1,773,-768,763,-7,-762,1807.3,167.3,481,275,95,-34,1.2,-830,789,-26,13,10,-9,-777,472.6,364.3,1632.2,.6,1363.4,1,763,-760,-6,3,-3,371.3,40.3,-6,1597.3,-3,7,754,27,-785,531.3,192.4,1345.3,0,762,-751,2,-12,388.5,1684.7,1,761,-762,13.6,.2,796,-782,750,-761,-3,.2,143.6,767,403.2,764,-769,6,-6,640.6,-1,366.2,1595.2,784,-784,76.4,770,9,-20,-768,770.2,767,-769,1169.5,1,755,-755,2,751,-751,-10,1,681,-672,-11,785,548.2,1162.5,760,2,-2,-764,763,0,-763,687,-676,126.3,-11,4,-4,1156.7,762,-756,752,1,2,-78,-677,20.4,689,-689,1150.6,.3,748,2,-750,.3,674,1,-680,20.4,16,0,-16,1157.6,746,58.2,-1,18,-7,19.2,683,-674,-11,0,685,-685,0,1714.2,1,0,-1,291.2,0,292.2,5.2,761,-750,157.2,17.3,761,955.2,0,-2.9,745,629.2,3,774,-777,-2.9,-18,2,-2,0,2,9,752,455.2,-1,.5,1,-1,1.3,-2,1,-3.3,-11,-1,1.2,-1,527.4,5,.2,2,0,4,0,777.4,1,.5,-1,74.2,1154.4,.5,10.3,4.1,8.1,8.7,758,102,1.6,-42,43,-61,62,4.2,1.6,-104,105,1.6,-82,83,-70,71,2.1,1.6,-110,111,1.2,-105,106,1.4,-94,95,1.4,-79,80,1.2,-135,136,1.8,-101,102,1.8,6.3,-159,160,-131,132,1.5,-946,.411,1,.41,2.1,4.1,1,.52,6,353.3,14,-13,-2,358.3,4.1,8.5,450,312,-747,748,-761,690,15,-696,449,-457,705,1,-709,464,298,-52,0,-709,4,.3,-2,1204.2,767,-768,762,0,164.2,8,1,752,-742,756,1798.2,-5,5,1288.2,21.1,42.14,-752,454,-462,-1,0,2,7,455,-463,8,-10,10,456,-464,761,0,-764,468,294,281.2,-1,469,293,-50,-712,1,-1,471,291,-49,1,-712,-2,473,289,-289,-472,471,-472,474,288,-46,-715,10,464,-472,6,753,-751,465,-473,-3,696,-685,466,-474,714,-718,1,768,-757,467,-475,758,1,-44,-717,84.2,480,282,-43,-719,16,-16,481,281,0,-41,-1,-720,482,280,-40,0,40,-762,483,279,-762,769,-754,-4,473,-481,764,-765,9,474,-482,0,-4,12,475,-483,-1,721,-712,476,-484,815,-817,-1,488,274,1421.2,-2,489,273,1001.2,0,479,-487,-1,0,-2,492,270,-762,1646.2,494,268,-38,1,-725,495,267,-760,1,728,-720,485,-493,698,0,-700,10,486,-494,760,667.2,487,-495,11,-14,14,-3,488,-496,2,-5,0,500,262,-762,1,-1,501,-499,-1,1,-2,503,259,5,-30,-731,-6,0,459.3,.2,970.4,3125.4,-2,.7,3,4.2,779,.01,-18,12,-763,0,756,0,-4,6,3,18,.5,319,-319,.3,-779,751,821.3,-2,-1,4,1,-3,8,10,-23,-1,2,1,11.2,4.1,8.1,16.1,2,1,-3,1.3,2.1,4.1,6.1,-1,779,.5,9,-9,.4,-13,-768,770,-8,-1,6,-5,-762,538.3,112.91,-16,346,-1099,112.5,1,12,.5,329,-329,.3,-771,757,3,-2,-762,112.85,771,.5,339,-339,.4,1822.2,6,-6,1.2,-764,110.22,-13,2,-758,110.5,-4,16,.5,332,-332,.3,-770,753,14,-15,-756,110.85,773,.5,7,-7,.4,-7,-768,2,-2,1478.6,946.6,12.1,2483.6,957.6,12.1,6.1,1238.5,11.1,5.1,39.6,11.1,963.5,747,4,-766,0,7,-7,.3,2201.4,833.2,2153.51,2204.2,-766,5,2911.61,-16,1,-3.5,2,-17,6,-6,5,1.3,4,-4,69.2,4,.2,-12,-4.3,469,.3,-484,.7,768,-768,.7,4,-5.2,2,772,-779,-9,15,-15,795,-795,438,-437,-1,1,762,13,-773,-4,6,.2,722.2,.2,972.2,.2,756,6,-767,.5,19,749,8,-776,767,-4,1,49,-812,776,-768,-9,91.5,752,7,0,-774,120.3,1628.6,770,-21,1008.2,-756,6,-11,0,681,81,-4,1,-752,-7,682,80,-759,1579.2},{2041,1,4,1,4,4.1,1,1672,1.42}},{{2},{2,1.2,761,2,-765,532,232,-1,-1,0,1,.4,-1,-696,704,-600,622,-3,10,-715,705,3,-3,3,-27,-681,341,-423,-1,438,41,14,11,1.4,-70,5.1,10.1,5.4,2,1.3,6,9,3,-531,.31,764,59,1,23,-55,-14,-9,-8,4,1,8,-10,0,-3,1,4,2,-4,7,-768,.5,-2,.11,1,.5,762,0,-716,214,503,-503,248,252,-761,5,758,-763,432,125,203,0,-761,761,.3,3.1,-761,262,20.3,258,-767,4,761,-333,19.3,-753,753,19.9,255,-764,0,-1,762,-762,433,21.2,.5,18.5,508,-508,18.4,10,751,18.4,39.21,256,-765,11,-1,751,-750,421,21.3,-760,760,60.11,8,2,751,5,-334,60.31,4,757,77.51,5,756,76.5,134.8,20.6,768,-766,425,75.61,134.2,-329,56.31,762,-759,758,17.3,56.21,132.2,93.2,19.4,2,-2,75.11,761,12,-773,229.4,-762,762,20.6,500,-500,249.3,761,-762,766,230.3,76.6,266.6,760,-766,2,431,18.11,227.3,773,-773,1,18.9,73.5,-1,5,757,5,-1,285.4,95.31,-1,14,748,-758,429,267.11,135.6,19,738,2,-753,422,230.41,768,135.4,97.21,208.2,-754,228.4,192.7,761,-499,39.71,363.6,3,758,1,-330,287.71,756,250.51,343.4,286.9,227.5,0,764,1,-3,56.4,-752,752,37.5,772,-510,22.5,-1,766,-766,364.21,252.5,88,-83,758,-764,385.51,-510,1,763,-753,751,30,-359,21.3,31,-31,215.11,2,-2,761,1,-761,277.3,0,-758,758,258.21,1,761,-754,-6,299.51,6,756,15,-344,104.41,432.3,-763,241.6,16,-16,489.31,4,-778,510.71,-1,6,768,-774,167.51,21.2,776,-777,512.4,381.41,515.6,605.31,16.9,504,-504,220.3,116.2,241.6,3,-3,241.11,739.6,93.8,280.6,0,529.31,375.3,6,767,-11,375.71,10,763,20.5,77.8,626.01,130.9,16.4,-762,3,430,168.61,5,756,-761,873.21,229.8,665.5,21.31,3,208.51,329.3,-763,434,226.42,790.7,847.8,-499,504.6,483.2,222.4,418.8,262.5,766,-767,766,-755,788,-366,753.31,-1,0,774,4,-345,40.3,-631,631,40.5,130,132,22.5,10,750,-750,751,129.41,-5.2,-11,7,-1,1,2.1,-6,690,-691,297.4,223.2,-1,5,6,-11,337.4,-647,647,56.5,770,23,-27,2,16,23,-37,6.5,-788,29,-47,32,476,-508,46.3,2,-2,1.2,952.2,6,3,-769,760,1,-1,0,2.1,146.2,11,-2,-8,766,-748,27,-42,758,-593,-168,10,-7,5,753,-753,-7,765,-767,4,42,-37,753,-762,.5,65,-65,762,-753,-5,42,-46,.3,769,-345,-255,592,-752,16.2,767,-758,753,-759,759,0,-759,761,0,-233,-23,.4,-507,71.4,4.2,760,-762,0,768,-767,-1,.2,768,0,-4,0,-764,9,5,-13,1.3,763,-767,762,9,-2,-5,14,-10,1,2,0,-2,-729,-32,790,-10,3,-3,60,-60,37,-27,0,-798,791,0,-784,-7,0,1.2,766,.2,-759,762,.2,-9,.5,7,0,-5,-764,775,-722,-46,770,-768,10,745,-745,2.1,-10,0,-9,.3,11,760,-771,1.2,-2,2,776,-769,10,0,745,-735,54,-74,755,85.2,3,759,.2,25.2,31.3,-17,139.2,9,21.3,-755,74,-64,745,-764,.3,3,37,-37,-3,5,-5,134.2,0,755,55.4,74,-83,1,.2,775,-274,-78,337,-757,15,32.2,-764,763,-762,-1,4,8.3,-761,1,5.3,.4,-761,764,-6,-753,48,-54,763,148.3,33,-793,224.3,764,-764,26,-26,150,649,-5,-28,370.2,43,-31,-12,10,0,-12,-764,812,-809,806,-809,768,-768,1.2,-1,777,-777,783,-17,-767,786,-784,6,70,184,500,23,-785,.5,4,768,-1,0,-760,751,0,-673,-89,0,797,11,-40,-4,7,-4,11,-9,0,-6,4,.4,-766,.4,812,42,-29,30,1,-80,.2,-777,0,769,-6,13,.2,-773,.2,1,0,-4,.2,-1,6.2,.2,11,.2,753,3,-4,-327,326,-325,122,207,371.2,6,781,-786,0,435,11.3,241,-799,4,778,-783,-1,437,10.3,203,341.2,-2,1,766,2,-768,761,-325,329,-328,13.4,10,755,-766,2,765,-331,25.3,224,-782,11,-1,755,-754,757,-333,36.5,8,2,755,-3,-327,33.5,767,-763,761,-766,0,436,44.6,5,760,-3,-763,180.2,1,186.3,769,-768,51,-52,318,491,-809,787,-770,770,-787,763,3,10,25,-32,-768,859,-857,-3,86.2,-767,186.2,785,-783,782,-9,-776,786,-22,30,-358,50.5,-1,767,-1,-2,-763,678,24,-25,0,86,790.2,436,330,-329,146.3,761,8,-770,783,-783,768,-332,158.5,813,-808,777,-783,0,2,-1,160.4,43.2,10,-10,1,882.2,0,-1,769,-333,107.6,4,761,-3,21,-348,68.6,14,752,1409.2,-330,11.3,161.2,4,1,18,742,80.2,10,-11,762,2,3,2,-6,-1,5.1,5.4,1,4.3,13,-776,.41,11,.4,23,31,21,31,33,-139,12,11,12,10,-45,5.4,380,64.5,770,-765,1707.2,0,-2,208,216,11,3,42,283,6,378.3,13,9,-23,16.2,4,7,.4,-11,.6,1,766,0,-767,.11,762,21,32,-28,-20,-5,5.4,-764,.4,769,-2,-5,-3,4,344.2,436,295.6,763.3,-758,-4,0,432,183.5,3,758,21,-782,762,-84,201.4,-2,-326,17.5,773.3,-774,1,-1,42.4,12.2,88,689,-772,781,-787,291.4,-559,1276.3,755,26,-792,258.2,2,-14,21,4.1,-7,-5,18,-6,4.3,-787,.3,762,0,-763,861,-860,761,2,3,-4,1,5,7,1,-9,-1,22,-13,-776,.2,1,-1,.3,1,.3,435,215.5,2,-3,1.2,764,-3,34.2,767,11,-9,-6,372.6,-1,4,-3,606.3,-6,434,13.6,0,6,1634.2,777,-14,465.4,13.2,762,-760,-3,149.2,254,503,24.5,6,1404.2,.2,436,332,-331,65.3,313.2,141.2,0,679,158.4,-678,-70,.5,420,348.6,-809,778,-781,-2,371.6,784.3,371.2,762,-83,31.4,-762,434,219.6,6,757,20,-21,107.6,762,830.2,13,-10,-331,350.6,761,-767,5,432,10.7,-766,766,-763,-4,437,33.5,5,760,65.2,511.6,113.3,313.2,435,83.5,.2,82.2,-346,337,-337,42.3,766,-1,-766,774,-765,790,-96,91.2,-657,743,-85,-678,435,141.3,111.3,11,-11,0,764,-758,757,-752,119,573,113.3,-85,-679,291.6,10,754,-754,1813.2,24.2,703,19.6,89.6,1,-1,1,4,1059.3,0,1,-6,132,570,24.4,-673,1,429,347,-346,122,215,-773,-1,5,6,-9,-2,42.3,-678,764,-85,89,-654,-114,-1,765,4,-768,1192.2,761,-756,-1,778,672.2,-11,.9,4,-3,0,762,13,10,-9,18,-795,.4,764,2,-2,858.2,-1,4,1,148.2,.3,777,-1,-7,-5,-686,690,-1,-4,5,3.2,1,14,8,-18,-1,1,-4,-2,0,1022.3,17.3,9.3,-758,1,-3,-3,484.2,-9,2,-3,-11,9,12,6.5,3,-1,486.4,7,6.5,6,-7,2273.3,23,-15,6.5,-5,36.53,-787,.99,13,.99,748,267,1.4,-200,201,1.4,-204,205,-197,0,198,1.2,-207,208,-277,278,1.2,-210,211,1,-205,0,206,1,-213,214,1.8,-261,46,0,216,1.21,-227,0,228,1.3,-292,293,1.7,-238,0,-8,247,1.4,-250,251,1.2,-291,292,1.3,-311,55,257,-256,257,-282,283,1.2,-336,0,-85,389.2,-677,677,83,.3,27,.3,-20,.3,-4,-687,-76,2,-2,715.2,0,771,-770,765,-760,-5,763,853.4,762,7,-1,-210,-44,-514,767,-767,768,-6,5,-3,3,1,-4,-1,-1,-1,1,248.2,-761,769,21.1,42.14,771,-771,766,6,1,-771,769,-748,745,-4,-764,771,-762,759,-4,301.2,763,-763,.2,1145.3,874.3,2,9,753,118.2,89,-90,12.3,17.2,771,32.2,-768,11,760,-689,686,-5,29,-21,143.2,-766,.2,9,762,-690,685,-761,326.3,14,750,152.4,45.3,8,-7,0,925.3,4,-4,8,755,-681,-82,8,754,-764,772,37.3,0,52.3,-769,4,768,-771,1199.2,10.2,-680,675,5,15,-22,-673,-90,1233.4,1.2,0,769,114.2,29.2,764,-678,-85,8,760,1356.2,1,0,1,762,-677,-86,-1,0,2,129.3,21.2,761,8,98.2,-757,-11,146.3,-766,14,-14,771,98.2,-766,475.2,33.2,1028.2,597.3,-1,1,257.5,33.2,0,7,914.2,.2,1,.4,2.1,-4,.13,12,751,.3,-1,1,.5,-762,770,-2,-2,0,-765,854.2,-11,1.2,2,1.5,5,10,750,-761,760,-12,.6,12,.53,-12,.3,-750,500.2,.3,-15,.3,2,.11,-7,79.2,2,4,-1,1,8,-6,1,5,331.2,-8,-1,0,-4,772,-11,1,0,2,843.2,68.8,757,.3,-6,6,.5,-768,793,-22,3,0,-773,768,-758,68.6,763,-774,759,-7,.6,7,.53,-7,.3,-754,.3,30.2,4,.3,-11,.3,11,4.3,10,-760,72.11,-9,0,-4,770,-8,6,0,3,0,-770,71.8,753,.3,4,-4,.5,-764,768,10,-14,90.2,775,-765,71.6,761,-772,757,-4,.6,4,.53,-4,.3,-755,.3,760,.3,-1,.3,-5,.3,10.2,4,.3,13,-767,71.11,749,6,-646,653,-653,380,270,-771,121,6.3,263,-764,6.4,12.1,12.6,259,-760,12.1,12.7,650,-650,12.1,12.4,6.3,36.9,12.11,261,1913.5,8,-9,1021.2,1879.4,5,-5,2216.11,0,-1,774,-775,5,2652.4,-757,229.2,22.4,78,-78,.5,4,214.2,-5,5,2,-2,4.2,1948.2,-509,1896.3,.3,89,.3,-89,898.3,1954.4,725,35,3,7,.2,-2,-6,14,-777,.3,3,-3,3,166,-169,1,915.3,763,3,0,-21,17,.2,-14,13,2,0,-764,752,10,2,411.3,1411.2,-752,781,-29,1,-764,801,-25,-340,976.5,8,-9,764,404.2,437,331,1008.4,545.3,-758,-6,1114,-1110,760,-668,-95,-1,0,16,748,-663,-100,-1,-4.2},{5,77,1.6,67,4,22,3,1,25,6,21,25,17,11,5,17,4,3.2,3,23,25,3,5,20,22,3,2.1,26,1,5,17,9,17,3,7,46,32,24.3,21,23,8,42,20.3,5,20,24,4,-26.2,25,27,7,20,26,23,54,25,45.3,5,21,62.4,1,5,20,23,71.4,5,17,26,4,26,37.3,76.2,3,5,17,8,19,1,31,21,27,5,37,29,2,3,16,63,35,1.2,20,10,22,85,5,15,2,12,14,4,-3.2,1,3,1.2,4,3,4,1,5,8,10,7,1.4,6,1.4,39,1,4,1,4,4.1,1,7,5,8,3,2,12,15,11,1,13,7,6,7,4,7,42.11,13,1,2,18,2,8,14,5,23,3,1,78,6,28,6,1.5,13,16,1.4,23,11,15,5,14,1,11,23,1,30,1.2,12,1.3,3,1.3,15,3,90.2,1,8,14,4,1,8,29.2,4,2,12,2,17,9,77.4,8,1.2,13,1,4,9,4,12,1.2,51,44,11,1.4,2,7,1,5,1,3,13,2,11,1,88.2,6,1,-5.2,2,1.2,454,2,21,2.1,4.3,20,1,58,109,1.42,63,6.2,88,3,1,66,6.2,87,6.1,108,32.2,5,39,54,1,4,1,-2.2,22,3,2,10,6,1.3}},{{3},{3,1,-1,0,1,0,4.3,-1,.9,3.2,762,6,-4,7,-4,11,-15,-1,7.6,10,2,-3,-2,-5,0,3,12.5,5,6.1,6.5,-760,0,35,-38,.6,1,-1,.3,-1,2,-1,61.4,5.3,.5,3.2,.7,8.4,13.5,.2,27.3,3.2,.4,16.9,26.5,15.01,31.3,8.3,2,-1,3.2,-2,39.3,52.11,19.3,58.5,19.7,.9,771,-771,13.1,66.01,.8,79.51,110.31,.41,762,-761,150.12,.7,4,-3,93.11,54.4,17.3,55.01,97.31,84.5,.2,140.21,208.51,87.01,100.3,26.3,42.01,156.3,102.41,761,-760,36.3,0,18.8,5.3,314.4,174.01,27.01,.31,771,-770,11.9,66.41,-753,-8,3,-3,127.01,61.3,3.1,70.3,143.8,2,-2,69.3,.3,73.01,.6,11.5,100.01,163.3,769,-768,18.4,97.01,.7,498.6,36.01,.51,252.41,0,-1,763,-763,82.11,213.3,22.3,785,-784,63.9,785,-785,115.41,53.7,292.31,119.3,207.12,93.6,763,-762,259.01,30.21,768,-767,476.41,13.3,.4,323.3,184.11,31.01,98.3,263.01,13.3,47.6,117.8,764,-763,54.9,776,-776,1,805,-806,192.11,145.01,248.01,165.51,-1,789,-789,286.01,299.6,.4,82.01,106.6,762,-763,1,36.01,.7,766,-765,0,761,-762,423.41,767,-767,356.21,.7,595.3,768,-768,2,760,672.2,.6,7.2,1,777,-778,44.01,0,7,760,.4,4,.2,-762,.2,-6,-2,-1,100.2,37.2,.2,767,0,-6,3,-764,.2,1,6,757,6,-770,111.7,770,.2,28,-37,7,-765,758,59.2,.2,762,5,-3,0,136.4,1,64,-64,0,75.2,1,762,.6,-756,756,-1,-757,762,-3,338.2,6,756,-744,19,-24,-14,761,-754,.4,-7,.3,19,-19,0,769,.2,-758,.2,765,-769,.8,-7,1,-1,133.2,68.3,71.6,763,0,6,0,-7,-761,775,-13,0,-754,758,-767,195.3,3.2,768,0,13,-781,112.3,211.7,16.3,.2,13,-17,-758,754,3,-3,21,-782,49.6,764,3,.2,-766,26.6,82,-83,4.2,393.2,-762,.91,2,-2,26.3,.2,6,-3,-3,0,786,-786,.6,849,-23,1,23,-845,-6,1,.2,207.2,0,2,-2,11,.4,758,-6,13,34,-15,-793,.4,-2,.4,1,812,-811,.2,-3,.2,10,.2,754,.2,-763,750.6,98.5,506.4,7.2,434.4,3,-2,-2,1029.9,1013.5,6.5,.8,672.3,.7,903.2,.11,99.9,.21,930.4,791,-790,33.4,4,1,-4,32.3,-771,0,784,-784,378.4,.2,5,-5,610.7,10.3,781.5,0,766,11,-9,20,-26,4,5.1,5.4,-2,1,6,-4,7,-10,5.4,-766,.4,767,-7,1,8,17,-791,.22,57.3,3,576.3,-5,762,4,32,-14,-19,-760,.4,768,-4,-761,.5,7,.5,-14,.01,865.4,-762,2,-1,0,196.3,34.3,8,875.3,87.3,84.3,855.3,1304.4,.4,1193.5,1,.7,112.3,.3,-2,.3,12,.3,-11,27.3,769,-769,831.4,37.3,739.5,220.3,.6,777,-777,918.5,0,-1,9.2,224.4,896.6,6.2,291.2,.4,6,-2,.5,-4,.8,-1,1.2,729.3,17,639.2,254.5,503.3,930.4,7.3,.2,983.5,.2,1,3,-1,-3,96.2,1,.5,678.5,124.5,138.3,91.3,-1,1,.11,784,-783,.3,-1,771,-9,-762,.5,247.4,819.2,623.2,.2,-1,.21,115.4,63.3,2,769,0,-771,76.3,771,6.2,.5,614.3,17,760,-778,.5,18,-18,0,-1,3,53.2,3.2,759,1,6,-764,.9,-4,761,-759,2,1,773,-778,767,-5,-761,776,.3,157.2,4,-3,.5,254.3,.3,-2,.4,2,.2,115.4,.17,763,.99,-761,.99,9,.99,-11,.5,1,.21,-1,0,1102,-325,-777,114.3,792,-29,913.3,819,-820,.2,3,0,-3,1,.3,44.2,762,-762,2.1,0,12.1,24.22,656.2,0,11,-6,-5,1032.8,0,300.3,727.2,770,1132.3,0,760,947.7,819,-818,.2,723.2,-759,-4,-1,0,680,-679,307.3,763,-764,1,843.6,6.3,789,-25,710.2,0,764,-2,66.2,768,-769,286.2,26.2,220.2,5.2,79.2,45.2,1,-2,396.3,1053.2,45.3,95.2,661.7,784.3,645.2,92.4,819,-808,-10,884.2,-761,761,-761,379.4,-1,0,1046.3,64.2,-764,3,-2,6.2,767,-764,5.2,16,-15,-1,2,18.2,8.2,776,-765,-6,9,-10,2,756,73.2,.5,14,-14,.2,4,.2,8,-8,.6,3.1,6.5,.3,-1,-764,4,1.5,5,10,-23,1,-2,4,1,757,-761,14.2,481.3,.11,960.3,.3,4,4.3,8.4,5,.3,10,.3,748,.3,-772,.3,7,12.3,6,.3,47.2,5,-10,69.2,33.2,763,-759,79.2,0,760,.2,1,.5,5,-5,5.2,.2,6,-6,.6,3.1,6.5,.3,1,-767,79.9,763,-767,79.22,746,.3,-770,79.31,.01,1,766,-762,79.3,763,158.3,27,-27,.2,8,.2,-4,4,.6,3.1,6.5,601.2,-763,79.9,759,973.2,79.12,741,.3,-765,79.31,.8,649.2,1689.3,706.3,.13,6.5,473.3,6.3,.61,1434.4,7,-6,1330.11,765,771.2,1130.01,4,.5,765,-765,1801.5,.5,4,720.3,739.4,1,4.3,775,-777,.7,3,.3,-4,.2,438,-435,-3,.3,786,-785,.2,1240.2,.2,771,-8,1227.2,763,-753,758,-766,-3,2,-2,685.3,806,-796,555.3,.2,783,-783,3,785,437.2,0,657.2,52,-61},{1.8,12,1,11,1.65,15,1.81,34,3,1,22,3.1,3,1,5,17,4,25,6,-11.2,6.3,3.2,3,23,8,4.2,5,20,22,3,23.4,20,26.3,9,17,3,1,6,32.3,32,8.3,5,21,23,3,5,17,25,28.3,5,20,24,4,26,20,6,34.3,26,7,4.2,25,23,54,5,20,60.3,5,21,54.3,25,53.3,3,23,75.4,88.4,17.3,26,47.3,25,29.3,17,8,16,3,1,31,21,26,1,5,25,12,17,1.41,2,1.3,14,12,2,2.1,21,1.2,4,1,7,3,1.5,12,1,8,1.9,2,1.6,11,8,1.2,21,1,23,20,2,19,13,1.2,6,1.5,15,2,10,1.4,4,8,4,3,1,2,1.2,26.2,4.2,8.3,3,7,1,10,5,2,1.4,6,1.9,21,1.9,4,1.6,4,1,4.2,7,1,3,1.2,7,3,2,1,7,4,1.2,13,11,1,13,7,6,17.3,1,4,54.61,9,4,1.3,18,1.3,7,1,13,5,-2.2,7,4,8,3,1,17,1.4,57,17.2,27,1,3,1.7,13,1.02,23,11,1,-7.2,1,60.2,12,1,5,6,18,1.01,9,1.3,5,1.7,49.2,11,1.5,2,1.3,15,3,12,2,1,42.3,8,1,13,29.2,7,1.5,13,1,3,2,12,1.2,14,16.4,172.4,2,8,1.2,5,8,1,3,1,9,13.3,128.3,11,8,31,1,44,11,1.6,7,1.2,43.2,2,13,2,1.21,3,1.4,6,1,-5.2,71.2,422,2,11,6,16.2,9,44.3,5.1,10.8,15,66.3,3,5,-6.3,30,2,4,-6.2,26,5,10,-5.2,-14.2,1,9,1,3,1.42,62,80.2,240.2,46,1.3,39,3,1,2,63,11.6,38,11.1,1,107,1.4,5,18,3,17,1,50,-2.2,1,2.1,-2.2,19,5.3,2,10,6,1.3,7,4,1,4,6}},{{4},{15,-11,.6,1,.6,2,0,2,.2,2,-8,.71,38,726,-763,0,-2,1,6,-7,4,758,0,-760,2,-3,-1,773,-4,9,-10,-767,0,764,-1,-763,1,.2,-2,2,18,766,9,-783,-8,-3,3,-3,11,5.2,2,-2,1,-1,4.2,9,.2,-6,.2,-3,2,-1,1,-2,0,12,-12,1.2,-2,4,-4,4,0,-3,0,11,0,-9,9,0,-7,-5,31.4,.2,1,.2,11,-5,-7,.2,2,0,7,40.3,-2,.5,2,.2,1,50,-42,-11,1,-1,2.1,11,-11,0,11,.2,-12,1.3,4,-7,5,-1,-3,3,8,-8,-2,17.2,0,-8,8,.4,43.2,0,762,0,-758,3,.3,765,-769,825,-59,.4,-767,.4,767,.4,-762,.2,-5,-2,2,765,127.3,0,-763,-1,6,0,696,-702,6,-6,.31,1.4,-3,.9,761,2,3,2,-6,-762,761,6,-1,-768,0,773,-10,6,0,-4,7,-10,4,32,-14,17,-36,-3,6.5,-763,.4,2,-4,762,-760,760,-761,-1,788,-20,-766,10,-5,-6,.3,762,2,3,0,-767,.6,764,-764,.3,1,774,-774,.5,-2,2,-3,5,-3,0,1,7.2,1,804,-787,-15,802,-787,-8,806,0,-814,.3,-2,0,811,51,-852,-10,2,861,-864,0,-1,1,0,761,-761,764,0,3,.3,2,8,-777,0,-3.2,0,-5,-2,0,1,.3,2.1,781,0,-780,-2,.001,761,186,-115,116,2.1,4.1,-115,-74,190,1.9,-193,69,125,-124,125,1.2,-126,1,126,1,-203,204,1.9,-206,207,1.9,-220,221,1.9,-219,220,1.9,-238,239,1.9,-228,229,1.9,-264,338,-270,-10,0,-818,-2,0,2,3.1,6.5,1102,-1102,-1,8,1096,-258,-25,-822,1,846,-847,1,802,0,-34,-767,-1,803,-803,822,-822,816,-816,802,-802,-1,805,0,-40,39,-42,-758,799,-799,758,42,-36,34,-800,760,61,-54,-765,801,-802,801,-804,3,799,-801,771,33,-42,20,21,-801,-2,802,-35,-767,1105,-1102,1103,-1106,762,-759,819,-819,766,-769,804,-802,-2,3,814,-817,1,1106,-1105,1106,-1108,763,49,-44,-768,.3,5,-1,10,-10,2,3,-1,-3,0,2,7,10,-20,0,1.5,5,5.2,4.1,8.7,-23,-1,.7,1,.2,3,44,.01,-47,.11,-1,.34,1,780,.11,-10,-1,-8,-760,-2,.4,50.24,772,.11,-11,6,-766,49.44,774,.11,-775,765,-766,763,14,1,-777,.3,-1,802,-40,.3,17,-9,20,-26,-35,41,-769,1,0,756,-756,746,-3.2,-749,446.2,767,38,-808,777,-15,354,-1112,-4,0},{14,75,1.31,20,1.32,3,138,128,8,25,18,25,134,49,3,6,46,72,1,3,5,21,6,17,52,10,44,9,21,25,126,49,113,46,174,9,11,7,26,3,2,1,11,4,5,26,5,1.01,5,1,6,1,3,6,5,9,1.4,2,1,5,2,5,2,4,1.4,10,1.9,9,24,1.5,12,1.5,2,1.8,3,4,5,6,1.3,7,-5.2,2,3,4,8,5,1.9,4,6,2,5,4,10,1,4,1.5,-30.2,7,1,3,1.5,8,2,26,1.41,26,1.2,31,27,2,20,50,30,3,1,8,1,19,1,18,15,2,26,11,3,6,1.92,28,17,1.5,6,1.4,13,1.11,27,1.4,39.3,1,9,1,4,17,10,1,15,2,32,1.3,5,1.3,18,11,4.2,12,65.3,15,11,13,9,7,1.5,14,-7.2,18,24,15,2,13,11,27,4,10,7,1,6,-7.2,6,7,1.3,3,48.3,14,4,1,4,79.3,-2.2,5,1,7,1.9,2,16,1,6,2,1,4,1.3,2,1.3,30,1.3,74,1.991,120,6,2,5,13,8,2,3.1,6.1,6,2,1.2,2,154.2,1,2,3,1,11.5,3,-2.2,3,2,-3.2,1,3,8,4,-2.4,3,1,-2.2,4,2,4.2,2.1,3,6.5,4.1,38.3,-2.2,35.2,4,18.3,1.2,12.4,24.3,4,26,1.84,2,1.01,7,2,1.11,13,1.53,5,1.3,5,1.92,2,1,3,2,1.94,16.01,1.82,16.1,3,116,21,5,13,1.7,2.1,-9.2,1.3,2,5,12,4,5,8,7,1.2,12,17,79.3,1.2}},{{5},{765,-757,0,2,.2,2,0,-4,6.5,-8,.5,3,8.4,-3,0,2,0,19.5,6.3,-6,-4,1,766,-765,0,-2,1,0,9,-8,8,-8,.2,8,0,753,-753,.3,-9,761,1,0,-762,762,0,-761,-1,19.3,.2,20,-21,756,-764,1,.2,763,-755,0,755,.3,-755,.3,-8,2,761,-764,761,3,0,-764,764,.4,-763,0,-1,.3,4,.2,5,0,-5,762,-765,-1,0,7,-6,.5,781,-9,-773,.2,1,0,2,-2,.11,5,.4,-3,5,755,2,-759,-5,8,-9,0,764,-757,-8,1.2,-1,-1,1,.2,1,783,-783,.3,760,-755,-6,.3,19,.9,744,.3,-764,0,1,.101,-1,.7,765,66.2,9.2,768,-763,-5,9,-5,-1,779,-19,-761,-2,771,-771,.3,1,770,-10,-760,-1,.5,773,-12,122.3,.44,768,-768,1,0,3,10,-6,16,-15,-5,1,-4,1,2,1,0,-5,772,-10,6,0,-768,.44,38.2,23.11,3,0,-5,770,-2,-4,138.2,.44,778,-778,22.11,-2,19,.01,744,-744,.4,776,-18,9,-777,-10,3,-2,8,1},{14,75,1.31,20,1.32,531,128,718,27,26,5,12,4,37,1.6,15,1,14,9,1.3,11,5,2,4,1.4,11,1.5,2,1,9,24,17,1.2,25,6,1,14,10,4,8,5,1.4,2,7,8,5,4,10,1,4,1.5,-30.2,7,9,10,31,1.4,64,27,72,30,3,65,40,9.2,48,1.2,6,1.4,13,1.11,27,49.2,10,5,43,2,72,20,11,4,26,22,26,32,57.2,13,38,14,-7.3,20,1.3,22,4,1,7,13,5,8,1.9,37,1.3,30,1.3,174,1.99,154,2,21,2.1,4.3,10,14,1,5,1,17,9,6,1,15,4,2,5,11,5,1,4,3.1,1,9,11,-6.2,9,2,-5.3,32,1.84,109,1.31,2,1,5,1.94,109,1.21,6.1,3,155,1.5,2,13,1.3,13,9,1.3,2,17,4,5,16,30,6,4,1.2}},{{6},{4,-1,.6,1,.6,-1,.5,1,.5,761,23,0,-786,3,-2,1,-1,1,0,4.2,.3,6.2,760,-760,0,5.2,.5,1,30.2,5,760,-767,1,769,.4,-769,19,-13,781,-787,18.3,762,-756,-5,772,-774,793,-8,1,0,-19,0,-757,-7,17,.3,-20,1,.7,2,-2,77,686,-763,.2,-1,2,-1,.2,3,5,753,-754,17,-16,1,-9,1,14.2,.6,1,0,16.2,7,13.2,0,-8,13.7,0,13.11,729,18,-3.2,15,-770,12,750,1},{14,75,1.31,32,1.11,659,771,5,12,4,38,2,18,1,14,28,2,4,2,1,13,2,5,9,68,6,1,14,10,4,8,18,13,4,10,5,1.4,31,37,9,10,31,1.4,64,27,72,33,188,1.2,86,5,117,61,22,99,51,21,34,1.3,22,5,79,1.3,33,427,2,21,2.1,4.3,10,15,6,26,7,37,10,5,1,4,1,9,34,-5.2,37,1.3,154,1.31,2,1,6,6.2,1.21,6.1,194,31,4,5,16,30,6,30.2}},{{7},{3,0,1,0,-1,1,-1,774,-775,0,1,761,-754,1,-9,20,-19,0,1,.2,1,-2,.7,2,767,-769,2,760,2,-764,6,-6,3,-3,.4,1,8,.11,760,-769,.3,6.3,-9,5.4,777,-9,-778,774,-767},{1575,5,16,101,29,151,100,109,320,1.2,86,122,83,99,72,34,1.3,27,115,427,2,21,2.1,4.3,10,15,6,26,7,47,5,1,5,43,5,42,1.3,154,1.31,9,4.2,1.21,4.1,194,40,46,6,5}},{{8},{7,5,-5,5,-8,-1,0,9,-10,5,-4,2,.7,-2,1,-1,2.1,7,-7,764,-756,719,28,-756,762},{1596,101,29,151,209,320,1,292,99,136,115,427,2,21,2.1,4.3,10,21,33,47,5,1,48,5,212,550,40,46,11}},{{9},{9,-7,7,-6,9,-3,-5,762,-762,-1,786,9},{1596,1202,136,115,508,21,85,49,5,212,550,40}},{{10},{2,763,-755,-5,7,720,27},{2798,759,21,85,54,762,40}},{{11},{2,3,-2,786},{2798,759,160,762}},{{12},{2,765,-33},{2798,919,762}},{{13},{-2.2,760},{2798,919,762}},{{14},{741},{4479}},{{15},{771},{4479}},{{16},{742},{4479}},{{17},{770},{4479}},{{18},{743},{4479}},{{19},{781},{4479}},{{20},{744},{4479}},{{21},{819},{4479}},{{22},{745},{4479}},{{23},{814},{4479}},{{24},{746},{4479}},{{25},{821},{4479}},{{26},{747},{4479}},{{27},{823},{4479}},{{28},{748},{4479}}}, - {442,1.42,97,1.7,7,1.7,2,1.49,-499,.2,93,.3,244,1,.4,1,.5,1,0,2,1,-159,.6,160,0,1,-160,.6,1,2.1,.6,159,.2,-515,516,15.3,-158,.8,10,.3,7,.2,142,2,30.3,.5,23.3,.2,1,0,6.3,.9,1,.11,1.2,.5,1,.4,1.2,.2,1.3,.51,58.3,-123,.01,124,.3,7.2,-124,.01,1,2.1,.01,123,.2,-542,542,2.1,19.4,3.2,39.3,.8,122,1.3,3,.4,2,.4,4,.4,39.3,8.3,2.1,8.4,12.5,.2,2.1,4.1,2.1,-223,197,2,4,2,1.5,3}, - {81,.531,615,1.2,2,1.3,-622,.082,633,-16,9,29,2,-30,29,.2,-656,628,26,4,24}, - {3,.005}, - {3,.441,1,0,-1,1,.4,-1,0,2,-1,4.2,1,.3,-1,3.1,6.4,17.9,1,-1,17.51,34.31,1,-2,34.62,0,18.6,94.3,86.81,17.1,17.41,16.1,32.1,98.05,34.81,4.2,18.41,184.3,.8,14.7,2,0,32.2,31.3,233.01,17.7,100.24,.5,215.08,81.6,115.82,3.2,.2,232.43,201.5,4.2,319.66,434.611,17.51,617.43,686.4,217.301,.8,78.81,1.2,111.92,814.5,1.2,-2,34.51,0,-2,.7,8.7,25.01,.392,1,.7,-1,.5,1,-1,2.1,2.1,.2,956.3,4.2,3.1,-1,.12,669.3,28.3,.01,17.3,0,4.3,.77,54.3,511.4,.2,104.7,.3,16.7,8.4,265.5,25.21,316.6,49.01,8.4,.9,97.91,.5,69.9,604.3,81.11,8.1,8.2,590.3,.4,81.11,2,-2,625.5,0,21.2,-1,2,.2,10.4,-2,.04,1,.91,47.7,.9,-1,.07,148.41,83.3,262.6,87.21,20.4,8.6,.51,220.3,12.2,.91,140.4,19.4,106.3,.41,98.4,87.6,2,98.3,55.41,206.41,178.4,.31,178.71,1187.9,40.8,316.4,17.7,82.4,.3,297.3,377.4,84.22,8.4,1,0,1,452.4,133.3,43.3,58.4,10.2,347.4,.2,145.3,463.7,442.3,15.8,.4,12.3,.5,13.5,102.6,0,42.4,12.3,-1,.901,1,.17,-1,.003,11.3,1,.31,-1,.6,455.4,-1,.69,3.2,57.5,1139.5,6.5,.4,3.1,6.5,18.01,347.6,98.3,372.4,33.91,9.1,69.51,9.6,21.9,.955,199.4,3.1,6.1,12.1,24.1,290.6,.4,319.5,716.22,.81,1,429.3,.7,-1,3.1,10.2,215.3,3.1,232.4,38.2,.11,315.7,585.4,646.7,149.5} + {46,.2,5,1.2,-7,-6,8,.4,1,-1,.4,-23,15,8,.9,-8,6,0,-5,.93,-1,.6,-5,.6,-19,.31,9,.6,5,.5,-7,.5,22,.5,-27,.5,-2,.11,57,0,-2,2,.5,141,-138,-3,1,3,-4,.3,139,-139,.51,6,-3,-3,7,-1,-6,.3,3,-3,.51,1,2,-3,10,26,-36,.3,4,-4,.51,12,-9,-3,3,10,-13,20.4,14,-11,-3,15,-1,-14,.3,2,-2,.9,16,-16,.5,244,-241,-3,0,7.2,.3,17,-17,.51,15,-12,-3,9,-3,53.2,15,-15,10.4,18,-9,-9,.3,19,-19,.51,20,-17,-3,11,-11,.3,1,-1,.51,21,-18,-3,143,-143,.3,141,-141,.51,22,-19,-3,144,-144,.3,23,-23,.51,13,-10,70.2,-15,.3,105,-105,36.2,13,-33,141,-117,-24,.3,149,-149,.51,25,-22,19.2,-5,-10,.3,41.2,76.5,130,-139,.3,18,-18,.51,26,-23,-3,27,-25,1,-3,.3,26,-26,.51,28,-25,-3,0,29,-29,.02,3,0,-3,30,-27,17.2,137.3,10.3,105,-102,10.2,13,-13,104.4,1,144,-145,96.4,67,-64,-3,31,110,-141,.3,31,-31,.61,10,-7,-3,5,-5,77.4,196.3,22,-22,.3,70,-70,.51,27,-24,-3,82.2,.3,9,-9,.51,32,-29,9.4,170.3,67,-34,124.2,-107,-34,46.7,35,-31,-4,.3,302,-302,.51,210.3,39,-24,154.2,40,-40,.31,66,-66,41,-38,-3,42,-36,-6,.3,192,-192,.51,43,-40,-3,44,1,-42,-3,.3,43,-43,119.4,189.2,4.2,.3,69,-69,.51,46,-43,-3,47,21,-68,.3,46,-46,.51,52,-49,-3,141,-93,-48,.3,49,-49,188.4,50,-11,-39,.3,38,-38,.51,38,-35,74.2,9.2,73.2,.51,49,-46,236.4,147,-147,38.4,9.3,10,-10,130.4,9.3,32,-32,18.4,51,92,282.2,53,-53,56.4,32,-14,150.2,54,-54,.51,23,-20,-3,18,-8,264.2,148,-148,.51,2,1,96.2,9,-56,.3,57,-57,.51,58,-55,-3,0,58,-58,.3,59,-59,.51,18,-15,-3,13,5,190.5,69.3,3,57,-60,324.4,60.3,1,17,219.5,61,-58,-3,62,-44,10.2,126.3,371.3,229.3,69.3,54,-51,-3,.5,46.6,27,-27,339.4,45.3,61,-61,9.3,.41,281.3,63,1,-64,.3,65,-65,.61,3,-3,309,16,-325,83.4,331,-328,-3,333,-1,-332,.3,244,-244,.9,3.2,.5,336,-336,3,331,1,-335,.3,337,-337,.51,345,-342,0,338,1,4,-5,2,-3,-1,-339,.6,327,-324,0,15,298,-316,35.4,243,.71,-281,5,-2.2,-1,-8,5,0,-37,9,4,-4,4,29,.2,-26,.2,-8,3,21,-31,-1,25,-24,44,.3,-32,0,-6,28,-35,27,18,.3,-42,9,-5,38,0,1,-1,-15,-7,-4,26,.3,-40,.3,-1,3,-4,1,41,.3,-41,3,2,1,12,16,-1,-1,9,1,-27,1,25,1,-4,4,0,-4,-10,-31,0,36,1,.4,-38,70.4,2,0,16,3,2,-28,14,-3,4,1,21,.2,1,-25,14,0,8,.3,1,.2,-38,4,10,.2,7,0,1,0,5,.2,12,-3,-39,14,0,12,0,-11,27,.3,-24,24,0,-15,13,-11,24.2,116.2,-14,1,.2,14,25.2,.2,-28,0,24,1,14,-1,-39,2,-1,44,112.3,.4,-32,0,-13,0,7,4,-4,5,0,9,-21,28,17,.2,1,-1,.3,-45,12,-12,45,25.3,11.3,-15,-6,-5,26,18.4,143.2,37,-25,30,-43,-4,5,1,39,49.4,149.9,.2,1,-28,1.2,23,0,1.2,7.2,-4,3,4.2,.4,155.3,38,31,71,.2,-71,.3,72,1,31,37,-67,1,-75,0,71,5,-5,1,0,5,-6,-71,78,1.2,-80,78,3,1,-82,83,1,101,-100,1.2,-9,10,1.2,-6,7,1.5,8,-7,-97,98,1,-99,100,1.3,-32,0,-71,0,186,8,-110,-15,-35,-21,-1,-6,-6,195,-177,0,26,8,-11,43,-49,-9,5,59,-61,-20,-9,16,-2,44,-2,107,-103,-51,44,86,-139,195,-208,.4,313,-141,-159,0,301,8,-309,0,347,-358,.4,-1,.4,8,254.2,.4,35,.4,-3,.4,-4,.4,5,.4,-34,.4,28,.4,9,.2,-65,0,44,.2,-44,0,68,.2,-68,0,63,.2,-63,0,66,.2,-66,0,71,930.2,5,-143,931.3,198,-202,.5,929.4,165,1.2,-174,.5,1,149,-147,-3,10,141,-115,123,-159,.5,927.4,172,-162,158,-171,.5,926.4,174,-175,176,-190,922.7,.5,15,57,-69,-3,9,145,-148,-6,9.2,137,-149,-3,18,138,-147,152,-89,202.14,83,8,-194,.5,20,2,11,803.2,86,-203,-40,16,.3,242,8,0,-250,.5,25,0,932.3,173,-178,141,-151,79.2,141,-153,-3,9,45,85,77,-216,.5,26,172,-195,0,-3,27,172,-197,198,-10,117.2,170,-167,-3,0,171,133.2,-3.2,-3,-3,30,-23,-4,30,-33,.5,3,.2,931.2,64,-166,165,142,.4,3,.41,-2,.9,-115,.4,116,.4,-241,.41,-71,84.3,-19,-3,1,94,50,4,-78,.4,-71,.4,317,.2,2,0,-19,18,.4,-122,.4,-110,212,5,-7,8,6,-9,.5,-105,.11,128,-20,.4,6,.4,-223,.4,11,.4,-21,.4,261,.4,-338,.5,67,84,-148,-3,31,124,-14,1,-142,.5,31,2,139.2,74,-181,943.2,242,57,-299,.5,10,17,973.2,945.2,-3,212,-213,232.2,-194,-47,945.3,152,-167,.3,943.7,181,-187,.51,310,.3,916.2,-242,.5,43,121,-161,0,-3,165,-120,121,-166,134.4,13,163,-173,215,-215,-3,.5,46,168,-211,-3,47,167,-146,-23,-45,.5,52,43,-92,946.2,100,-193,-48,.5,15,139,-151,-3,158,-119,123,-162,18.2,-37,793.2,51,93,-1,58,-201,97.2,2,85,.5,1,.5,-330,228.5,32,185,-199,142,-160,.5,23,130,-150,-3,18,139,-147,262,-272,28.2,52,-294,.5,919.4,144,-135,-56,.5,58,119,-174,918.3,119,-177,.5,916.4,163,-158,5.2,.5,32,-17,12,152.2,3,30,27,116,-176,61.2,148,-160,917.3,60.3,61,-46,88.2,916.2,-17,-1,0,320,0,1,0,1,4.3,-323,.5,1,4,-2,-3,63,140,-139,-64,.7,3,-3,326,-1,-325,.2,244,-2,-242,1,243,880.2,893.2,.2,-3,3,330,-1,-88,-244,.2,242,-242,331,-87,896.7,-332,0,241,16.4,244,0,16.2,345,1,-1,1,-343,0,338,0,1.2,-99,13.2,19.3,344,0,-100,20.2,910.4,297,1,-316,67.4,328,-84,0,-39,1.7,14,-211,210,-3,1.2,4,1,5,-4,1.3,-170,172,-91,52,.9,-185,56,170,-84,-147,234,.9,-225,43,-33,0,-10,136,-56,-80,3,102,44,-9,0,-103,6,0,178,.3,3,-1,.3,-17,-256,274,-212,-10,-17,.22,242,1,0,49,13,-305,.27,306,.99,1,2.1,.99,-305,.3,-3,.41,244,-140,-104,202,44,4,-6,100.2,244,10,-4,0,-6,6.2,-140,146,0,27,-33,-269,0,-8,0,-18,-11,11,-11,17,-14,0,34,.3,-6,-3,3,-3,9,-33,33,2.1,21.1,42.14,58,97.2,39,0,-15,-34,104.3,-3,4,-11,6.3,6,0,-16,110.3,185,-1,-44,116.4,-90,107,-23,123.5,18,-24,7.3,140,3,-3,143.3,14.2,16,-22,39.3,3,-59,46,6.3,7,1,-18,161.4,-82,4,-169,288.2,8.2,-251,0,247,26,-273,9.3,35.2,36,1,-43,7.3,-73,219,186.7,-219,213,7.3,-67,211,-248,1199.2,37.2,28,-9,-29,-160,160,8.3,-5,7,-12,6.3,9,-13,34.3,10,4,1,-15,33.3,110,50,-20,6.3,170,1,-31,18.3,31,-2,-39,51.4,228,-21,64.5,70.4,166,1,-21,43.4,-2,1,-197,188,7.3,-317,121,186,6.3,15,11,1,-37,7.4,-93,68,33.3,52,135,-47,6.2,1,-184,188,-5,12.3,-103,249,29,-35,-315,.42,177,1207.3,1,.14,1.2,.01,3,2,-116,117,2,1.4,.11,2,1.3,-152,.7,153,.53,1,.3,2.1,4.3,.51,3,1,.11,-2,-23,6,21,-15,10,4,-25,2,-8,41.13,-25,40.93,-13,-11,2,51,-123,-1,1,8,108,-119,0,159,-172,3,-15,0,42,-56,.101,142,-139,-3,55,128,-4,1.2,-181,.3,10,168,-178,1797.4,197,-42,-155,.3,195,-195,.9,-35,175,56,.5,-41,41,-196,.11,196,.3,48,.3,-244,.7,204,-204,.7,9.2,-109,109,14,-210,16,83,-49,-49,55,163,0,1.2,-68,20,-173,.2,21.2,3.1,.2,333,-129,-204,.4,215,-50,-178,2,-1,-30,27,8,-12,9,-4,5,9,.5,182,-40,83.6,3,-184,.5,80.3,3,194,-4,-38,-155,292.4,40,-46,248.3,180,-129,0,89}, + {{{1},{2,.2,3,805,1,-806,0,3,-5,8,0,-8,11,-6,-1,-4,8,-5,-3,0,5,1,3,-6,3,7,-7,-2,-4,3,-3,-1,0,1,.7,2.1,4.1,2.1,5,.2,-2,0,-3,0,427,1,2,38,15,24,20,282,.2,-6,.2,12,3.2,5.3,-808,.6,808,0,-12,.2,15,-818,0,-1,2.1,-1,804,0,4,0,-3,.3,6,0,-4,0,5,28.2,0,33.4,5.2,-808,-11,78,-78,6,-6,11,-3,7,-14,813,-814,811,-810,-1,102.3,809,-813,5,6,-7,11,-15,5.1,7,4.2,0,4,798,1,-800,799,36,-849,26.3,807,-811,26.01,.2,51.3,800,-6,-803,-6,818,-818,153.4,0,25.01,14,-14,11,-4,8,-15,809,-804,803,-808,0,26.3,804,-808,26.01,11,-11,2.1,15,803,-9,-801,-8,828,-828,26.3,811,-815,26.9,792,-807,27.3,-5,9,452,342,-796,-2,810,-821,79.51,130.3,-5,9,-15,805,-791,-13,810,-811,26.51,182.3,105.3,805,-800,-5,.2,25.81,-3,7,25.2,-805,808,-808,103.41,180.5,-6,800,180.2,153.4,49.21,8,-8,100.5,-797,803,99.4,-2,-2,255.51,125.3,-14,50.61,99.6,2,-2,1,806,187.2,26.2,-3,-1,100.41,-15,840,-834,-5,-1,51.91,-4,8,357.2,-809,-5,813,-813,26.51,253.3,3,1,795,-1,-798,-11,815,-6,-809,27.3,810,-814,129.31,-6,10,129.3,-3,-11,79.4,9,-13,359.51,793,-3,254.2,230.5,359.21,181.5,26.2,181.2,26.5,281.02,815,-806,-9,26.51,182.4,791,3,-803,800,620.2,25.3,802,-806,25.01,0,52.8,807,233.4,309.71,800,-10,-797,-8,51.4,805,-809,408.91,258.61,459.8,334.71,126.5,-805,5,-6,1,639.4,126.11,-6,-9,334.7,-4,-2,51.4,410.21,151.5,482,317,-814,813,-812,52.4,817,-821,281.31,798,-794,640.2,-802,-7,811,561.61,462.6,809,-795,-14,0,809,360.4,693.71,793,1,-804,334.2,1,27.61,615.52,156.5,809,590.2,639.42,-1,822,716.61,26.8,821,25.4,803,-807,75.81,665.42,356.5,331.14,-15,810,-804,805,-811,50.12,639.2,-800,-14,175.4,826,-830,50.41,-13,838,-834,199.5,713.61,479.2,-794,-11,24.4,530.21,299.3,659.3,809,-798,2,-12,378.4,352.81,149.3,456.5,26.02,794,1044.5,350.02,810,-815,26.4,2,-6,301.51,-14,804,633.3,26.4,154.21,278.5,-6,796,278.81,77.5,806,-16,-800,0,-5,303.54,377.2,-5,177.41,-4,23.4,816,-21,-804,809,-7,834.4,253.21,25.4,-7,802,-801,-9,806,-806,148.51,174.5,-11,806,-810,822,-822,99.4,722,-726,26.9,712,-727,991.5,-12,2,826,-820,1244.5,53.21,630.5,1,794,-1,-793,.4,-16,732,-717,165.6,3,788,0,-805,17,-18,40.3,720,-724,40.01,.71,78,-78,817,-816,805,-637,-169,4,854,-46,1,-1,1,-5,.2,-808,1.2,811,45,-424,379,0,6,-11,-808,5,3,-2,809,0,-7,-799,804,6,-810,-6,5,-8,1,805,0,-800,7,-2,-6,803,-1,-807,6,-3,1,-4,815,.2,-2,-2,2,-810,808,-811,10,-2,725.2,2,0,-5,-808,4,-4,0,4,7,-11,-2.2,7,802,-802,0,795,-378,385,0,-809,-4,1.4,804,0,155.3,-13,0,-806,19,-10,810,-808,-10,818,-6,-813,1.2,9,810,-812,10,-20,.3,1.3,817,-8,-810,-2.2,808,17,-9,1,-813,10,-5,-11,284.2,-1,115.3,802,-803,1.2,3,800,-809,1,803,-809,532,291,-9,9,-822,1.2,809,-811,1.2,-2,2.1,1.2,817,.3,-6,-6,0,6,-2,-804,3.2,3,-14,137.3,813,-6,1636.3,-3,5,-2,.2,8,-8,19.2,-9,137.3,5,-8,807,12,-819,85.2,3,-8,149.5,-804,4,6,-8,6,-5,153.3,813,6,-6,6,-13,-803,803,30,-29,14,-10,-804,-1,5,59.2,161.3,833,-17,0,116.2,3,-4,0,7,56.3,797,-807,1,-3,.2,8,9.3,1288.2,5.3,.4,795,-372,385,-8,-802,-9,11,-10,13,-6,-4,1,-4,810,-1,-810,831,15,-832,1,-15,829,-818,-11,6,1703.2,7,391.3,5,-4,-1,1,7,-7,0,744,-745,0,810,-810,0,12,803,-815,6,828,-834,0,562.2,831,-832,16,792,6,-808,1307.3,830,-828,-1,1,0,-2,.2,173.2,1,-1,4,-4,.2,5.2,.2,2,826,-22,16,419.2,4,803,11,-818,1,49.2,5,-6,819,-811,164.2,.4,-807,9,-3,1,803,-810,6,1,-2,808,-6,12,32,-10,-841,.4,806,4,17,20,-39,.3,3,0,16,-9,13,-3,16,61,1.2,-31,32,-87,.3,442.2,.3,-2,810,.2,-12,6,-5,7,-4,0,2,-2,2,6,62.2,2,807,2,6,-12,.2,-807,.3,679.6,817,-9,-809,845,-844,827,-828,744.5,834,-40,-795,799,-813,-1,3,-2,833.5,-8,-1,-800,33.2,807,-816,-2,1814.6,806,-801,323.2,1,1799.4,1801.3,859,-68,-798,-8,0,878,-876,-2,1787.6,339,-793,-2,-11,0,679.6,1,841,-828,-13,0,844,-845,794.6,6,834,-835,-5,.3,1,818,9,-827,828,83,-898,1,-15,837,-826,-11,6,801,-805,7,-9,217.2,248.8,-744,-1,1869.2,0,12,817,-829,6,843,-848,-1,.2,829,-830,16,804,0,-814,1633.3,.4,1130.6,171.3,1,-1,807,-1,684.2,-10,1,9,748,-2,-757,749.5,0,1053.2,-5,0,-1,117.2,1679.6,-1,1960.2,-5,807,6,-813,521.4,1667.3,-4,.2,-795,-11,0,815,-814,0,-1,1655.5,819,8,-828,-3,0,-11,1306.6,3,31,-837,-5,811,-3,-807,25.4,1628.3,-2,36,-828,-14,1,807,202.2,.4,2.1,-1,.4,2,.4,-2,8.5,716,.4,-716,8.3,2.1,-2,124.7,840,-840,815,-8,-798,-5,7,.4,-11,.4,11,.2,-11,.2,808,7,-4,11,-9,-813,.5,812,-810,240.3,805,4,34,-16,353.2,-808,.21,11,28.3,841,2,15,-46,19,20,-21,19,30,-72,5,26,-23,29,-22,-11,2,-6,12,18,-837,1552.5,-795,795,-800,1679.3,815,-815,1565.8,7,-6,-1,200.4,0,1169.3,199.6,-4,-2,831,-24,746.2,1544.5,-497,1489.2,851,-850,-1,0,172.3,795,-791,357.2,-799,1531.3,1,.3,2.1,-2,.3,11,.3,-11,4.1,1151.6,0,806,0,-792,-14,.3,208.6,-2,0,-801,-5,0,326.2,576.2,358.6,0,842,223.2,3,-3,.4,89.4,303.2,433.2,469.6,22.2,86.2,822,-1,-821,65.2,11.3,1,817,-812,807,-7,-806,1796.3,130.3,502,298,103,-37,3,-15,-865,836,-29,12,11,-9,-821,436.6,328.3,1622.2,.6,1353.4,1,807,-804,-6,3,-3,335.3,41.3,-6,1587.3,-3,7,798,29,-831,495.3,156.4,1335.3,0,806,-795,2,-12,352.5,1674.7,1,805,-806,13.6,.2,842,-828,794,-805,-3,.2,144.6,811,367.2,808,-813,807.3,604.5,-1,330.2,1585.2,831,-816,0,61.2,11,0,796,-807,815,-2,-813,86.4,814,8,-19,-812,770.2,811,12.5,-7,1,799,-799,2,795,-795,-10,1,720,-711,-11,829,-108,-721,1163.6,804,2,-2,-808,807,0,-807,727,-716,137.3,-11,4,1169.2,1158.7,806,-800,796,1,2,-81,-718,21.4,730,-2,-728,1153.6,.3,792,2,-794,.3,716,1,-722,21.4,16,0,715,-731,1161.6,790,61.2,-1,18,-7,20.2,723,-714,-11,0,723,2,-725,0,1719.2,1,0,-1,307.2,0,308.2,5.2,805,-794,172.2,17.3,805,960.2,0,-2.9,789,608.2,3,818,-821,-2.9,-18,2,-2,0,2,9,796,434.2,-1,.5,1,-1,1.3,-2,1,-3.3,-11,-1,1.2,-1,506.4,5,.2,2,0,4,0,756.4,1,.5,-1,75.2,1159.4,.5,10.3,4.1,8.1,8.7,802,110,1.6,-43,44,-78,79,-44,45,1.2,-49,50,-62,63,-111,112,-72,73,1.4,-87,88,-69,70,2.1,1.6,-115,116,1.2,15.2,1.4,-102,103,1.4,-93,94,1.2,-140,141,1.8,-100,101,1.8,-138,139,1.8,-163,164,-139,140,1.5,-995,.411,1,.41,2.1,4.1,1,.52,800,.3,-790,-13,-2,377.3,4.1,8.5,446,360,-791,792,-805,732,17,-306,-434,445,-453,749,1,-298,-455,461,345,-52,0,-753,459,-455,.3,-2,1216.2,811,-812,806,0,171.2,8,1,796,-786,801,-801,-14,-5,5,1300.2,21.1,42.14,-796,452,-460,-1,0,2,458,-451,454,-462,8,-10,463,-453,456,-464,805,0,-342,-466,469,337,291.2,467,-468,471,335,-50,-756,1,469,-470,474,332,-49,1,-756,471,-473,476,330,-330,-475,474,0,-475,478,328,-46,-759,476,33.2,-477,6,797,-327,33.2,-479,-3,738,-257,-470,473,-481,758,-762,1,812,-329,-472,475,-483,802,1,-44,-761,811,-327,-485,489,317,-43,-763,16,472,-488,491,315,0,-41,-1,-274,-490,493,313,-40,0,40,-314,-492,495,311,-806,813,-798,479,-483,486,-494,808,-809,495,-497,496,-485,488,-496,0,-4,499,-487,491,-499,-1,765,-266,34.2,-501,865,-867,502,-503,506,300,1455.2,503,-505,508,298,1010.2,496,-496,499,-507,-1,0,507,-509,513,293,-806,822,-310,-512,516,290,-38,1,-254,-515,518,288,-804,1,772,-258,-506,509,-517,740,0,-742,518,-508,511,-519,804,-807,521,-510,513,-521,11,-14,14,509,-512,515,-523,2,-5,525,-525,528,278,-806,1,526,-527,530,-528,-1,1,527,-529,533,273,5,-30,-775,526,-532,0,501.3,.2,991.4,3172.4,-2,.7,3,4.2,824,.01,-19,12,-807,0,800,0,-4,6,3,17,.5,324,-324,.3,-822,795,6,1500.2,-2,-1,4,1,-3,8,10,-23,-1,2,1,11.2,4.1,8.1,16.1,2,1,-3,1.3,2.1,4.1,6.1,-1,821,.5,10,-10,.4,-11,-812,814,-8,-1,6,-5,-806,580.3,112.91,-17,350,-1147,112.5,1,12,.5,333,-333,.3,-815,801,3,-2,-806,112.85,815,.5,343,-343,.4,1869.2,6,-6,1.2,-808,110.22,-14,2,-802,110.5,-4,14,.5,338,-338,.3,-812,797,14,-15,-800,110.85,818,.5,6,-6,.4,-8,-812,2,-1,-1,.2,-1,823,-1,0,-13,21,-829,828,50,-877,1023.4,1512.3,1016.6,12.1,2543.6,1027.6,12.1,6.1,1272.5,11.1,5.1,39.6,11.1,1022.5,791,4,-810,0,7,-7,.3,2261.4,888.2,2213.51,2264.2,-810,5,2971.61,-16,1,-3.5,2,-17,6,-6,5,1.3,4,-4,69.2,4,.2,-12,-4.3,482,.3,-497,.7,812,-812,.7,4,-5.2,2,816,-823,-9,15,-15,841,-841,434,-433,-1,1,806,12,-816,-4,6,.2,770.2,.2,1027.2,.2,800,6,-811,.5,19,793,7,-819,811,-4,1,54,-861,820,-812,-9,91.5,796,7,0,-818,120.3,1662.6,814,-21,1063.2,-800,6,-11,0,718,88,-4,1,-796,710,-717,720,86,-803,-3,0,719},{2075,1,4,1,4,4.1,1,1683,1.42}},{{2},{2,1.2,805,2,-809,564,244,-1,-1,0,1,.4,-1,-740,748,-644,669,-6,12,-761,749,6,-6,6,-30,-725,336,-418,-1,434,53,27,20,2,1.3,-105,6.1,12.1,6.5,2,1,2,1,6,9,3,-563,.31,808,65,1,25,-65,-12,-9,-8,4,1,8,-10,0,-3,1,4,2,-4,7,-812,.5,-2,.11,1,.5,806,0,-760,214,547,-547,279,265,-805,5,802,-807,427,162,215,0,-805,805,.3,3.1,-805,262,20.3,271,-811,4,805,-382,19.3,-797,797,19.9,268,-808,0,-1,806,-806,428,21.2,.5,18.5,552,-552,18.4,10,795,18.4,39.21,269,-809,11,-1,795,-794,416,21.3,-804,804,60.11,8,2,795,5,-383,60.31,4,801,77.51,5,800,76.5,134.8,20.6,812,-810,420,75.61,134.2,-378,56.31,806,-803,802,17.3,56.21,132.2,93.2,19.4,2,-2,75.11,805,12,-817,229.4,-806,806,20.6,544,-544,249.3,805,-806,810,230.3,76.6,266.6,804,-810,2,426,18.11,227.3,817,-817,1,18.9,73.5,-1,5,801,5,-1,285.4,95.31,-1,14,792,-802,424,267.11,135.6,19,782,2,-797,417,230.41,812,135.4,97.21,208.2,-798,228.4,192.7,805,-543,39.71,363.6,3,802,1,-379,287.71,800,250.51,343.4,286.9,227.5,0,808,1,-3,56.4,-796,796,37.5,816,-554,22.5,-1,810,-810,364.21,252.5,88,-83,802,-808,385.51,-541,1,807,-797,795,28,-406,21.3,29,-29,215.11,2,-2,805,1,-805,277.3,0,-802,802,258.21,1,805,-798,-6,299.51,6,800,15,-393,104.41,432.3,-807,241.6,16,-16,489.31,4,-822,510.71,-1,6,812,-818,167.51,21.2,820,-821,512.4,381.41,515.6,605.31,16.9,548,-548,220.3,116.2,241.6,3,-3,241.11,739.6,93.8,280.6,0,529.31,375.3,6,811,-11,375.71,10,807,20.5,77.8,626.01,130.9,16.4,-806,3,425,168.61,5,800,-805,873.21,229.8,665.5,21.31,3,208.51,329.3,-807,429,226.42,790.7,847.8,-543,504.6,483.2,222.4,418.8,262.5,810,-811,810,-799,834,-417,753.31,-1,0,818,4,-394,40.3,-675,675,40.5,130,132,22.5,10,794,-794,795,129.41,-5.2,-11,7,-1,1,2.1,-6,732,-733,297.4,223.2,-1,5,6,-11,337.4,-691,691,56.5,.6,1,.5,2.1,17,29,-47,32,507,-539,39.3,2,-2,1.2,945.2,6,3,-813,804,1,-1,0,2.1,139.2,11,-2,-8,810,-792,27,-42,802,-637,-168,10,-7,5,797,-797,-7,809,-811,4,42,-37,797,-806,.5,65,-65,806,-797,-5,42,-46,.3,813,-394,-250,636,-796,16.2,811,-802,797,-803,803,0,-803,805,0,-245,-24,.4,-538,71.4,4.2,804,-806,0,812,-811,-1,.2,812,0,-4,0,-808,9,5,-13,1.3,807,-811,806,9,-2,-5,14,-10,1,2,0,-2,-773,-32,836,-12,6,-6,68,-68,69,-57,0,-844,838,0,-831,-7,0,1.2,810,.2,-803,806,.2,-9,.5,7,0,-5,550.2,-767,-46,814,-812,10,789,-789,2.1,-10,0,-9,.3,11,804,-815,1.2,-2,2,820,-813,10,0,789,-779,54,-74,799,85.2,3,803,.2,25.2,31.3,-17,139.2,9,21.3,-799,74,-64,789,-808,.3,3,37,-37,-3,5,-5,134.2,0,799,55.4,74,-83,1,.2,818,-288,-112,386,-801,15,32.2,-808,807,-806,-1,4,8.3,-805,1,5.3,.4,-805,808,-6,-797,48,-54,807,148.3,32,-836,224.3,808,-808,26,-26,150,695,-8,-27,363.2,40,-28,-12,9,0,-11,-808,861,-858,847,-850,812,-812,1.2,-1,821,-821,830,-20,-811,830,-828,6,70,184,544,23,-829,66.2,811,-808,803,1,592.2,9,799,-808,812,-800,795,-804,-3,808,-806,809,-807,-4,.4,4,812,-1,0,-804,795,0,-806,843,15,-46,-4,7,-4,11,-9,0,-6,4,.4,-810,.4,861,47,-34,35,1,-90,.2,-821,0,813,-6,12,.2,-816,.2,1,0,-4,.2,-1,6.2,.2,11,.2,797,3,-4,-375,374,-373,159,218,383.2,6,822,-827,0,431,11.3,255,-846,4,10.2,-1,433,10.3,214,360.2,-2,1,810,2,-812,805,-373,377,-376,13.4,10,799,-810,2,809,-379,25.3,235,-826,11,-1,799,-798,801,-381,36.5,8,2,799,-3,-375,33.5,811,-807,805,-810,0,432,44.6,5,804,-3,-807,199.2,1,205.3,813,-812,51,-52,317,533,-850,828,-811,811,-828,807,3,9,33,-39,-812,912,-910,-3,86.2,-811,205.2,829,-827,826,-10,-819,830,-22,29,-405,50.5,-1,811,-1,-2,-807,713,31,-33,0,96,210.2,432,378,-377,146.3,805,8,-814,827,-827,812,-380,158.5,862,-857,821,158.2,2,-1,160.4,43.2,10,-10,1,894.2,0,-1,813,-381,107.6,4,805,-3,24,-399,68.6,14,796,1421.2,-378,11.3,161.2,4,1,18,786,80.2,10,-11,806,2,3,2,-6,-1,5.1,5.4,1,4.3,12,-819,.41,11,.4,23,31,21,31,33,-139,12,11,12,10,-45,5.4,376,64.5,814,-809,1719.2,0,-2,208,211,12,3,54,319,6,397.3,13,9,-23,16.2,4,7,.4,-11,.6,1,810,0,-811,.11,806,21,37,-36,-17,-5,5.4,-808,.4,813,-2,-5,-3,4,344.2,432,295.6,775.3,-802,-4,0,428,183.5,3,802,21,-826,806,-93,201.4,-2,-374,17.5,785.3,-818,1,-1,42.4,12.2,88,733,-816,822,-828,291.4,-592,1288.3,799,24,-834,286,143,71,37,-251,4.3,-2,8,48,2,0,119,1,2,90,1,.2,-1,1,6,-4,-376,196.5,2,-3,1.2,808,-3,0,-807,338.6,-1,4,-3,602.3,-6,430,13.6,0,6,1623.2,821,-14,442.4,13.2,806,507.2,126.2,254,547,24.5,6,1393.2,.2,432,380,-379,61.3,290.2,118.2,0,714,135.4,-722,-70,.5,416,325.6,-858,822,-825,-2,348.6,780.3,348.2,806,-92,31.4,-806,430,196.6,6,801,23,-24,456.6,806,826.2,13,-10,-379,327.6,805,-811,5,428,10.7,-810,810,607.2,433,33.5,5,804,65.2,150.7,6,306.3,967.4,810,8,-819,0,822,-15,-375,93.5,.2,92.2,-394,385,-385,52.3,810,-1,-810,818,-809,836,-100,-33,980.2,787,-94,-713,50.2,152.3,122.3,11,-11,0,808,-802,801,-796,119,615,124.3,-94,-714,0,280.6,10,798,-798,820,-820,25.2,745,20.7,102.6,87.3,4,1061.3,0,1,-6,132,612,25.4,-708,1,-7,432,395,-394,159,226,-817,-1,5,6,-9,-2,44.3,-712,808,-94,98,-812,114,-114,-1,809,4,-812,1196.2,805,-800,-1,822,664.2,-11,.9,4,-3,0,806,12,11,-9,20,-841,.4,808,2,-2,869.2,-1,4,1,163.2,.3,821,-2,-6,-5,-730,734,-1,-4,5,3.2,1,14,8,-18,-1,1,-4,-2,803.2,0,811.2,-4,5,9.3,-802,1,-3,-3,476.2,-9,3,-4,-11,9,12,6.5,3,-1,478.4,7,6.5,6,-7,2277.3,20,-12,6.5,-2,36.53,-828,.99,13,.99,792,272,1.4,-199,200,1.4,-203,204,-196,0,197,1.2,-206,207,-282,283,1.2,-209,210,1,-204,0,205,1,-212,213,1.8,-264,50,0,215,1.21,-226,0,227,1.3,-297,298,1.7,-237,0,-8,246,1.4,-249,250,1.2,-293,294,1.3,-313,58,256,-255,256,41.3,-341,765.2,11,0,-10,711,93,.3,27,.3,-20,.3,-4,-731,-76,2,-2,707.2,.2,815,-814,809,-804,-5,-1,846.5,231.2,813,-1,-222,-44,-546,811,-811,812,-6,5,-3,3,1,-4,-1,-1,-1,1,250.2,-805,21.1,42.1,815,-815,810,6,1,-815,-2,815,-792,789,-4,-808,23,792,-806,803,-812,808,306.2,112.2,-807,1059.3,5.2,0,-1,2,9,-11,124.3,89,-90,13.3,18.2,0,37.3,-812,11,12,792,-733,730,-5,27,-834,153.3,-810,.2,9,-9,815,-734,729,-805,337.3,14,-14,1009.6,52.3,8,-7,0,-2,7.3,4,-4,8,-9,808,-725,-82,8,798,24.2,43.4,0,89,-89,63.4,-813,4,20,792,-815,1230.2,215.2,-724,719,5,15,-830,808,-717,-90,103.3,-808,1.2,0,127.2,134.2,78.2,808,-722,-85,8,804,-813,73.4,1,66.2,-721,-86,-1,0,2,151.4,59.2,805,-784,115.3,-801,-11,64.2,37.3,105.2,7.2,115.2,-810,-1,1,39.3,1049.2,-6,164.4,1,287.6,.2,805,0,7,937.2,.2,1,.4,2.1,-4,.13,12,795,.3,-1,1,.5,-806,814,-2,-2,0,-809,877.2,-11,1.2,2,1.5,5,10,794,-805,804,-12,.6,12,.53,-12,.3,-794,531.2,.3,-15,.3,3,.11,-8,84.2,2,4,-1,1,8,-6,1,5,362.2,-8,-1,0,-4,816,-11,1,0,2,885.2,68.8,801,.3,-6,6,.5,-812,840,-25,3,0,-817,812,-802,68.6,1530.2,803,-7,.6,7,.53,-7,.3,-798,.3,30.2,4,.3,-11,.3,11,4.3,10,-804,72.11,-9,0,-4,814,-8,6,0,3,0,-814,71.8,797,.3,4,-4,.5,1447.2,10,-14,90.2,818,-808,71.6,805,-816,801,-4,.6,4,.53,-4,.3,-799,.3,804,.3,-1,.3,-5,.3,10.2,4,.3,13,-811,71.11,793,6,-5,27,-26,26,-12,-822,.2,11,20,-19,0,795,-685,698,-698,409,285,-815,121,6.3,278,-808,6.4,12.1,12.6,274,-804,12.1,12.7,694,-694,12.1,12.4,6.3,36.9,12.11,261,1960.5,8,-9,1079.2,1926.4,5,-5,2263.11,0,-1,818,-819,5,2699.4,-801,241.2,22.4,78,-78,.5,4,226.2,-5,5,2,-2,4.2,1995.2,-540,1950.3,.3,89,.3,-89,943.3,1034.4,769,35,3,7,.2,-2,-6,14,-821,.3,3,-3,3,166,-169,1,960.3,807,3,0,-21,17,.2,-14,13,2,0,-808,796,10,2,547.3,1446.2,-796,823,-27,1,-808,852,-33,-387,1022.5,550.3,416.2,433,379,1055.4,0,457.2,-802,-6,1162,-1158,804,-712,-95,-1,2511.3,808,-707,-100,-1,-4.2,-8},{5,77,1.6,67,4,22,3,1,25,6,21,25,17,11,5,17,4,3.2,3,23,25,3,5,20,22,3,2.1,26,1,5,17,9,17,3,7,46,32,24.3,21,23,8,42,20.3,5,20,24,4,-26.2,25,27,7,20,26,23,54,25,45.3,5,21,62.4,1,5,20,23,71.4,5,17,26,4,26,37.3,76.2,3,5,17,8,19,1,31,21,27,5,37,35,2,3,16,63,35,1.2,20,10,22,85,5,15,2,12,14,4,-3.2,1,3,1.2,4,3,4,1,5,8,-2.2,9.2,5,2,4,-2.2,16,5,1.4,6,1.4,39,1,4,1,4,4.1,1,7,5,8,3,2,12,15,11,1,13,7,6,7,4,7,49.11,13,1,2,18,2,8,14,5,23,3,1,78,6,28,6,1.5,13,16,1.4,23,11,15,5,14,1,11,50,3,89.2,1,8,14,4,1,8,21.2,4,2,12,2,17,9,69.4,8,1.2,13,1,4,9,4,22,1.2,53,46,12,1.4,2,7,1,5,1,3,13,2,11,1,80.2,6,1,-5.2,2,1.2,457,2,21,2.1,4.3,22,1,68,132,1.42,63,20,1,88,3,1,66,6.2,87,6.1,12,110,33.2,5,39,54,1,4,1,-2.2,22,3,2,10,6,1.3}},{{3},{3,1,-1,0,1,0,4.3,-1,.9,3.2,806,6,-4,7,-4,11,-15,-1,7.6,10,3,-4,-2,-5,0,5.2,12.4,5,6.1,6.5,-804,0,35,-38,.6,1,-1,.3,-1,2,-1,61.4,5.3,.5,3.2,.7,8.4,13.5,.2,27.3,3.2,.4,16.9,26.5,15.01,31.3,8.3,2,-1,3.2,-2,39.3,52.11,19.3,58.5,19.7,.9,815,-815,13.1,66.01,.8,79.51,110.31,.41,806,-805,150.12,.7,4,-3,93.11,54.4,17.3,55.01,97.31,84.5,.2,140.21,208.51,87.01,100.3,26.3,42.01,156.3,102.41,805,-804,36.3,0,18.8,5.3,314.4,174.01,27.01,.31,815,-814,11.9,66.41,-797,-8,3,-3,127.01,61.3,3.1,70.3,143.8,2,-2,69.3,.3,73.01,.6,11.5,100.01,163.3,813,-812,18.4,97.01,.7,498.6,36.01,.51,252.41,0,-1,807,-807,82.11,213.3,22.3,829,-828,63.9,829,-829,115.41,53.7,292.31,119.3,207.12,93.6,807,-806,259.01,30.21,812,-811,476.41,13.3,.4,323.3,184.11,31.01,98.3,263.01,13.3,47.6,117.8,808,-807,54.9,819,-819,1,855,-856,192.11,145.01,248.01,165.51,-1,836,-836,286.01,299.6,.4,82.01,106.6,806,-807,1,36.01,.7,810,-809,0,805,-806,423.41,811,-811,356.21,.7,595.3,812,-812,2,804,672.2,.6,7.2,1,821,-822,44.01,.91,7,804,.4,4,.2,-806,.2,-6,-2,-1,100.2,37.2,.2,811,0,-6,3,-808,.2,1,6,801,6,-814,111.7,814,.2,30,-39,7,-809,802,59.2,.2,806,5,-3,0,136.4,1,64,-64,0,75.2,1,806,.6,-800,800,-1,-801,806,-3,338.2,6,800,-788,19,-24,-14,805,-798,.4,-7,.3,19,-19,0,813,.2,-802,.2,808,-812,.8,-7,1,-1,133.2,68.3,71.6,807,0,6,0,-7,-805,818,-12,0,-798,802,-811,195.3,3.2,812,0,13,-825,112.3,211.7,16.3,.2,13,-17,-802,798,3,-3,21,-826,49.6,808,3,.2,-810,26.6,82,-83,4.2,393.2,-806,.91,2,-2,26.3,.2,6,-3,-3,0,830,-830,.6,3,6.2,1.2,-2,0,902,-902,5,-5,0,821,-821,.2,903,-28,1,28,-899,-6,1,.2,221.2,.2,11,.4,802,-6,12,32,-10,-839,.4,-2,.4,1,861,-860,.2,-3,.2,10,.2,798,.2,-807,762.6,110.5,518.4,7.2,446.4,3,-2,-2,1041.9,1025.5,6.5,.8,684.3,.7,915.2,.11,111.9,.21,942.4,838,-837,33.4,4,1,-4,32.3,-815,0,831,-831,390.4,.2,5,-5,622.7,10.3,793.5,0,810,11,-9,23,-29,4,5.1,5.4,-2,1,6,-4,7,-10,5.4,-810,.4,811,-7,1,8,20,-838,.22,57.3,3,588.3,-5,806,4,34,-16,-19,-804,.4,812,-4,-805,.5,7,.5,-14,.01,877.4,-806,2,-1,0,194.2,118.3,.4,8,887.3,87.3,84.3,867.3,1316.4,.4,1205.5,.42,847.3,-813,14.3,1028.5,205.3,.6,251.2,915.5,0,-1,9.2,209.4,893.6,6.2,288.2,.4,6,-2,.5,-4,.8,-1,1.2,726.3,17,636.2,239.5,500.3,927.4,7.3,.2,980.5,.2,1,3,-1,-3,.7,-1,1,.5,675.5,917.3,45.3,271.5,121.3,-1,1,.21,831,-830,.3,-1,815,-9,-806,.5,235.2,643.4,823.2,578.3,680.5,67.3,2,813,0,-815,80.3,815,6.2,.6,615.3,17,804,-822,.5,18,-18,30.2,3,54.2,3.2,803,1,6,-808,.9,-4,805,-803,2,1,817,-822,811,-5,-805,820,.3,161.2,4,-3,.5,243.3,.3,-2,.4,2,.2,119.4,.17,807,.99,-805,.99,9,.99,-10,94.2,0,1,.21,4.2,857,-36,-821,548.4,834,-27,97.2,-1,1,869,-870,.3,3,0,-3,1,27.2,.4,806,-806,2.1,0,12.1,24.22,661.2,0,11,-6,-5,289.4,3.1,1502.4,2,466.3,735.2,814,293.2,17.3,675.3,295.6,869,-868,31.4,808,-803,-4,229.3,716,-715,762.4,807,-808,1,875.6,6.3,836,-28,13.2,-1,0,808,-2,-806,6.2,812,349.3,30.4,-807,6.4,93.2,1,1246.4,5.2,2,55.3,1076.6,124.3,1285.8,809.2,865.3,111.5,869,-858,-11,912.3,-805,446.2,1176.7,0,805,120.3,80.2,-808,3,-3,7.3,811,-808,6.3,16,-16,612.3,1098.2,10.3,819,-808,-11,5,9,-10,2,800,.2,-1,.5,15,-15,.2,4,.2,8,-8,.6,3.1,6.5,.3,-1,-808,4,1.5,5,10,-23,1,-2,4,1,801,-805,14.2,505.3,.11,996.3,.3,4,4.3,8.4,5,.3,10,.3,792,.3,-816,.3,7,12.3,6,.3,47.2,5,-10,69.2,33.2,807,-803,79.2,0,804,.2,1,.5,5,-5,5.2,.2,6,-6,.6,3.1,6.5,.3,1,-811,79.9,807,-811,79.22,790,.3,-814,79.31,.01,1,810,-806,79.3,807,158.3,30,-30,.2,8,.2,-4,4,.6,3.1,6.5,.3,-11,-807,79.9,803,1009.2,79.12,785,.3,-809,79.31,.8,813,291.2,0,-3,0,2,0,-2,5,0,-5,737.3,3.1,.13,6.5,518.3,6.3,.61,304.4,7,-6,1376.11,809,805.2,1272.01,4,.5,809,-809,1847.5,.5,4,.3,-2,2.1,0,1,0,1,4.3,819,-821,.7,3,.3,-4,.2,434,-431,-3,.3,830,-829,.2,1286.2,.2,815,-8,1273.2,807,-797,802,-810,-3,2,-2,734.3,897,-887,-11,.5,1,.2,767.2,3,832,-28,1193.4,815,58,-67,-806},{1.8,12,1,11,1.65,15,1.81,34,3,1,22,3.1,3,1,5,17,4,25,6,-11.2,6.3,3.2,3,23,8,4.2,5,20,22,3,23.4,20,26.3,9,17,3,1,6,32.3,32,8.3,5,21,23,3,5,17,25,28.3,5,20,24,4,26,20,6,34.3,26,7,4.2,25,23,54,5,20,60.3,5,21,54.3,25,53.3,3,23,75.4,88.4,17.3,26,47.3,25,29.3,17,8,16,3,1,31,21,26,1,5,25,12,35,1.2,2,1.3,14,12,2,2.1,21,1.2,4,1,7,3,1.5,12,1,8,1.9,2,1.6,11,8,1.2,21,1,23,20,2,19,13,1.2,6,1.5,15,2,10,1.4,4,8,4,3,1,2,44.2,1.6,4.2,8.3,3,7,12.3,3,2.1,-2.2,1,3.1,15,5,1.4,6,1.9,21,1.9,4,1.6,4,1,4.2,7,1,23.2,7,3,2,1,7,4,1.2,13,11,1,13,7,6,17.3,1,4,63.61,9,4,1.3,18,1.3,7,1,13,5,-2.2,7,4,8,3,1,17,1.4,57,17.2,27,1,3,1.7,13,1.02,23,11,1,-7.2,1,60.2,12,1,5,6,34.2,16,1,12,3,12,2,1,34.3,8,1,13,21.2,7,1.5,13,1,3,2,12,1.2,14,16.4,173.4,2,8,1.2,5,8,96.3,9,4,1,3,1.5,9,122.3,11,8,33,1,46,12,1.6,7,1.2,45.2,2,13,2,1.21,3,1.4,6,1,-5.2,2,1.2,422,2,13,18.2,2,9,46.3,5.1,10.8,16,1,5,1,4,6,-7.3,35,2,5,-7.2,11,22,6,12,-6.2,16,17,1,11,1,4,1.42,62,84.2,245.2,46,1.3,39,3,1,2,63,11.6,38,11.1,1,2,9,1,109,1.4,5,18,3,17,1,50,251.2,2.1,-2.2,19,5.3,2,10,6,1.3,7,4,1,4,7}},{{4},{15,-11,.6,1,.6,2,0,2,.2,2,-8,.71,38,770,-807,0,-2,1,6,-7,4,802,0,-804,2,-3,-1,817,-4,9,-10,-811,0,808,-1,-807,1,.2,-2,2,18,810,8,-826,-8,-3,3,-3,11,5.2,833,-7,-3,-6,40,-37,13,6.1,6.5,-818,-2,1,-1,2,-2,9,.2,-6,.2,-3,2,-1,1,-2,0,12,-12,1.2,-2,4,-4,4,0,-3,0,11,0,-9,9,0,-7,-5,31.4,.2,1,.2,11,-5,-7,.2,2,0,7,40.3,-2,.5,2,.2,1,50,-42,-11,1,-1,2.1,11,-11,0,11,.2,-12,1.3,4,-7,5,-1,-3,3,8,-8,-2,17.2,0,-8,8,.4,43.2,0,806,0,-807,813,0,-7,3,-804,3,.3,809,61,-64,.4,-811,.4,811,.4,-806,.2,-5,-2,2,809,149.3,26.2,-1,6,0,738,-744,6,-6,.31,1.4,-3,.9,805,2,3,2,-6,-806,805,6,-1,-812,0,817,-10,6,0,-4,7,-10,4,34,-16,20,-39,-3,6.5,-807,.4,2,-4,806,-804,804,-805,-1,829,-17,-810,10,-5,-6,.2,808,-808,.3,1,819,-819,.5,-2,2,-3,5,-3,0,1,7.2,-1,0,2,854,-17,-820,-15,852,-837,840,-848,855,0,-27,-836,.3,-2,0,860,54,-80,-824,-10,2,913,-916,848,-848,-1,1,0,805,-805,808,0,3,.3,2,8,-821,0,-3.2,0,-5,-2,0,1,.3,2.1,825,0,-824,-2,.001,805,191,-114,115,2.1,4.1,-114,-80,195,1.9,-198,75,124,-123,124,1.2,-125,1,125,1,-208,209,1.9,-211,212,1.9,-225,226,1.9,-224,225,1.9,-243,244,1.9,-230,231,1.9,-269,343,-269,-14,269.3,-6,-862,-2,0,2,3.1,6.5,1150,-1150,-1,8,831,313,-292,36,-57,32,-872,1,839,57,-897,4.2,14,-16,16,-41,-811,-1,837,17,-854,846,26,-872,860,37,-897,835,18,-853,-1,836,20,-20,20,-47,27,19,-49,-802,832,18,-850,802,30,19,-43,35,6,-851,804,-802,843,26,-60,-809,857,-5,-853,833,19,-855,3,833,17,-852,815,-20.2,-49,20,9,19,-852,-2,47.2,-42,-811,839,314,-1150,856,295,-1154,806,-803,856,13,-869,857,-47,-813,848,7,-853,-2,3,845,18,-866,1,847,307,-1153,846,308,-1156,807,41,13,-49,27,-839,.3,5,-1,10,-10,2,3,-1,-3,0,2,7,10,-20,0,1.5,5,5.2,4.1,8.7,-23,-1,.7,1,.2,3,44,.01,-47,.11,-1,.34,1,822,.11,-8,-1,-8,-804,-2,.4,50.24,816,.11,-11,6,-810,49.44,819,.11,-820,11,-9,-2,3,806,-810,807,13,2,-821,.3,-1,853,-47,.3,17,-9,23,-29,-35,41,-813,1,0,800,-800,790,-3.2,-793,487.2,811,85,-899,820,-14,34,324,-1160,-4,0,851},{14,75,1.31,20,1.32,3,138,128,8,25,18,25,134,49,3,6,46,72,1,3,5,21,6,17,52,10,44,9,21,25,126,49,113,46,174,9,11,7,26,3,2,1,11,4,5,11,1.71,4,5,1.01,5,1,6,1,3,6,5,9,1.4,2,1,5,2,5,2,4,1.4,10,1.9,9,24,1.5,12,1.5,2,1.8,3,4,5,6,1.3,7,-5.2,2,3,4,8,5,1.9,4,6,2,5,4,10,1,4,1.5,-30.2,7,82.3,7,2,15,1.6,8,26,1.41,26,1.2,31,27,2,20,50,30,3,1,8,1,19,1,18,15,2,26,11,3,6,1.92,28,17,1.5,6,1.4,13,1.11,27,1.4,42.3,1,9,1,4,17,10,1,15,2,31,7,12,62.3,15,11,13,9,7,1.5,14,-7.2,18,24,15,2,13,-11.2,1,25,-4.2,-7.2,1,6,1,-7.2,6,1,7,1.3,3,44.3,8,7,4,1,4,3,1.2,8,-2.2,5,1,7,1.9,2,16,1,6,2,1,4,1.3,2,1.3,30,1.3,74,1.991,120,6,1,2,4,2,5,9,8,2,13,3.1,6.5,6,26.2,19.3,4,-2.2,1.2,2,51.2,2,5,-2.2,13.2,3,1,-2.7,3,1,-2.2,7,2,4,1,-2.3,1,20.3,-2.2,3,27.2,-2.3,1.2,-2.5,8.2,2.1,4.1,39.3,29.2,50.3,1,-2.5,1.3,12.5,2,1,2,83.3,1,26,1.84,2,1.01,7,2,1.11,13,1.53,5,1.3,5,1.92,2,1,3,2,1.94,16.01,1.82,16.1,3,4,1.2,8,116,21,5,13,1.7,2.1,-9.2,75.2,5,12,4,5,8,7,1.2,12,17,71.3,90.2}},{{5},{809,-801,0,2,.2,2,0,-4,6.5,-8,.5,3,8.4,-3,0,2,0,19.5,6.3,-6,-4,1,810,-809,0,-2,1,-1,.71,1,9,-8,8,-8,.2,8,0,797,-797,.3,-9,805,1,0,-806,806,0,-805,-1,19.3,.2,20,-21,800,-808,1,.2,807,-799,0,799,.3,-799,.3,-8,2,805,-808,805,3,0,-808,808,.4,-807,0,-1,2.1,4,-3,0,4,.2,5,0,-5,806,-809,-1,0,7,-6,.5,825,-9,-817,.2,1,0,2,-2,.11,5,.4,-3,5,799,2,-803,-5,8,-9,0,808,-801,-8,1.2,-1,-1,1,.2,1,830,-830,.3,804,-799,-6,.3,19,.9,788,.3,-808,0,1,.101,-1,.7,809,70.2,9.2,812,-807,-5,9,-5,-1,823,-19,-805,-2,815,-815,.3,1,814,-10,-804,-1,.5,817,-12,126.3,.44,812,-812,1,0,3,10,-6,16,-15,-5,1,-4,1,2,1,0,-5,816,-10,6,0,-812,.44,38.2,23.11,3,0,-5,814,-2,-4,142.2,.44,822,-822,22.11,-2,809,-1,-808,19,.01,788,-788,.4,822,-20,9,-821,-10,3,-2,8,1},{14,75,1.31,20,1.32,531,128,718,27,26,5,12,4,16,1.71,10,1.6,15,1,14,9,1.3,11,5,2,4,1.4,11,1.5,2,1,9,24,17,1.2,25,6,1,14,10,4,8,5,1.4,2,7,8,5,4,10,1,4,1.5,-30.2,7,4,14,21,8,31,1.4,64,27,72,30,3,65,40,9.2,48,1.2,6,1.4,13,1.11,27,51.2,10,5,43,2,38,12,11,4,26,22,26,32,59.2,13,48,15,-7.2,8,21,1.3,23,4,1,7,14,5,8,1.9,37,1.3,30,1.3,174,1.99,157,2,21,2.1,4.3,10,17,1,6,1,20,11,7,1,17,5,2,6,13,8,1,5,6,1,5,1,11,13,-7.2,11,2,-6.3,34,1.84,109,1.31,2,1,5,1.94,109,1.21,6.1,3,4,2,8,155,1.5,2,13,1.3,13,9,1.3,2,17,4,5,16,30,6,5,1.2}},{{6},{4,-1,.6,1,.6,-1,.5,1,.5,805,23,0,-830,3,-2,1,-1,1,0,4.2,.3,6.2,804,-804,0,5.2,.5,1,30.2,5,804,-4,-807,1,813,.4,-813,19,-13,822,-828,19.3,806,-800,-5,816,-818,835,-3,-2,0,-19,0,-801,-7,17,.3,-20,1,.7,2,-2,77,730,-807,.2,-1,2,-1,.2,3,5,797,-798,17,-16,1,-9,1,14.2,.6,1,0,16.2,7,13.2,0,-8,13.7,0,13.11,1,772,18,-3.2,15,-814,12,794,1},{14,75,1.31,32,1.11,659,771,5,12,4,44,2,18,1,14,28,2,4,2,1,13,2,5,9,68,6,1,14,10,4,8,18,13,4,10,5,1.4,31,37,4,35,8,31,1.4,64,27,72,33,188,1.2,86,5,83,53,22,99,61,22,36,1.3,23,5,80,1.3,33,430,2,21,2.1,4.3,10,18,7,31,8,43,14,6,1,5,1,11,40,-6.2,40,1.3,154,1.31,2,1,6,6.2,1.21,6.1,9,199,31,4,5,16,30,-6.2,1}},{{7},{3,0,1,0,-1,1,-1,818,-819,0,1,805,-798,1,-9,20,-19,0,1,.2,1,-2,.7,2,811,-813,2,804,2,-808,6,-6,3,-3,.4,1,8,.11,804,-813,.3,6.3,-9,5.4,821,-9,-822,818,-811},{1575,5,16,107,29,151,130,107,320,1.2,86,88,75,99,83,36,1.3,28,116,430,2,21,2.1,4.3,10,18,7,31,8,57,6,1,6,51,6,46,1.3,154,1.31,9,4.2,1.21,4.1,208,40,46,-6.2}},{{8},{7,5,-5,5,-8,-1,0,9,-10,5,-4,2,.7,-2,1,-1,2.1,7,-7,808,-800,763,28,-800,806},{1596,107,29,151,237,320,1,250,99,150,116,430,2,21,2.1,4.3,10,25,39,57,6,1,3.2,216,564,40,46,12}},{{9},{9,-7,7,-6,9,-3,-5,806,-806,-1,830,11},{1596,1194,150,116,511,25,102,58,6,216,564,40}},{{10},{2,807,-799,-5,7,764,27},{2790,777,25,102,64,780,40}},{{11},{2,3,-2,830},{2790,777,191,780}},{{12},{2,809,-33},{2790,968,780}},{{13},{-2.2,804},{2790,968,780}},{{14},{785},{4538}},{{15},{815},{4538}},{{16},{786},{4538}},{{17},{814},{4538}},{{18},{787},{4538}},{{19},{825},{4538}},{{20},{788},{4538}},{{21},{900},{4538}},{{22},{789},{4538}},{{23},{849},{4538}},{{24},{790},{4538}},{{25},{871},{4538}},{{26},{791},{4538}},{{27},{873},{4538}},{{28},{792},{4538}}}, + {438,1.42,135,1.7,7,1.7,2,1.49,-533,.2,93,.3,276,1,.4,1,.5,1,0,2,1,-192,.6,193,0,1,-193,.6,1,2.1,.6,192,.2,-547,548,15.3,-191,.8,10,.3,7,.2,175,2,30.3,.5,23.3,.2,1,0,6.3,.9,1,.11,1.2,.5,1,.4,1.2,.2,1.3,.51,58.3,-160,.01,161,.3,7.2,-161,.01,1,2.1,.01,160,.2,-574,574,2.1,19.4,3.2,39.3,.8,159,1.3,5,.4,2,.4,4,.4,39.3,8.3,2.1,8.4,12.5,.2,2.1,4.1,2.1,-258,232,2,4,2,1.5,3}, + {81,.531,657,1.2,2,1.3,-664,.082,677,-18,9,31,2,-32,31,.2,-700,672,26,4,-32,1,0,55}, + {3,.235}, + {3,.441,1,0,-1,1,.4,-1,0,2,-1,4.2,1,.3,-1,3.1,6.4,17.9,1,-1,17.51,34.31,1,-2,34.62,0,18.6,94.3,86.81,17.1,17.41,16.1,32.1,98.05,34.81,4.2,18.41,184.3,.8,14.7,2,0,32.2,31.3,233.01,17.7,100.24,.5,215.08,81.6,115.82,3.2,.2,232.43,201.5,4.2,319.66,434.611,17.51,617.43,686.4,217.301,.8,78.81,1.2,111.92,814.5,1.2,-2,34.51,0,-2,.7,8.7,25.01,.992,1,.7,-1,.5,1,-1,2.1,2.1,.2,956.3,4.2,3.1,-1,.12,669.3,28.3,.13,7.2,.7,20.3,0,4.3,.57,57.3,514.4,.2,107.7,.3,16.7,8.4,268.5,25.21,319.6,49.01,8.4,.9,100.91,.5,69.9,607.3,81.11,8.1,8.2,593.3,.4,81.11,2,-2,628.5,0,21.2,-1,2,.2,10.4,-2,.04,1,.91,47.7,.9,-1,.07,148.41,83.3,265.6,87.21,20.4,8.6,.51,680.3,.3,2,101.7,126.4,82.7,2,93.3,50.41,201.41,173.4,.31,173.71,1185.9,40.8,311.4,17.7,82.4,.3,292.3,375.4,76.41,.21,16.11,1,0,1,450.4,133.3,61.3,59.5,11.2,343.4,.2,146.3,463.8,442.3,16.9,.4,13.3,.5,14.5,379.6,0,44.4,26.3,-1,.011,1,.17,470.2,2,.3,-2,1,.31,446.3,319.3,-1,.79,3.2,500.6,13.4,3.1,3.1,498.3,3.1,3.1,18.9,.4,2,-2,39.7,9.4,32.9,3.1,.6,38.21,12.1,68.11,74.21,.475,205.4,3.1,6.1,12.1,24.1,296.6,.4,325.5,720.22,.81,1,-1,.01,681.3,3.1,10.2,279.3,3.1,235.4,38.2,.11,321.7,586.4,647.7,149.5} }, __refPoss = { nil, nil, - {10,1.531,1479,1.082,68,1.4,12,1.25,3,1.2,2.1,4.1,958,1509,1.9}, - {10,1.531,40,78,27,678,204,73,26,353,1.082,223,12,46,584,13,169,42,13,1,11,427,256,16,859}, - {155,3,1,22,3.1,6.1,3,1,16,7,13.01,2.1,4.1,30.21,23,45.41,5,18,36.01,12.3,40.31,43.11,72.81,12.1,35.11,21,3,1,25,63.7,39,3,1,389,84,1,3,1.2,7,3,1.3,7,4,3.2,6.3,3.1,3,1,7,19.4,1,11.2,60,4.3,6,14.4,21.2,4.1,1,4,1.4,29.6,15.5,62,4.3,88,12.4,44.2,6,20.7,72.3,1.2,61,1,4,5,1,15,16.3,8,20.8,77.7,6,19,57.7,6,38.3,45.6,15.2,1.2,36.31,1.2,8,3,1,-7.2,6,1,7,2,5,3,1,41,14.2,5,2,25,34,2,1.3,439,1.4,4,1,4,1.2,96,1.2,6.3,1,10.4,2.1,4.3,12.6,1.3,4,28.2,16.6,18.8,6.1,42.01,6.4,14.7,658,3,1.4,242.3,71,3,1,18,7,1,17,1,3,1.5,7,57.6}, + {10,1.531,1485,1.082,98,1.4,10,1.25,3,1.2,2.1,4.1,931,1561,1.9}, + {10,1.531,40,78,27,678,204,73,26,359,1.082,251,12,46,542,13,184,42,13,1,11,427,287,19,585,2,1,290}, + {155,3,1,22,3.1,6.1,3,1,16,7,13.01,2.1,4.1,30.21,23,45.41,5,18,36.01,12.3,40.31,43.11,72.81,12.1,35.11,21,3,1,25,63.7,39,3,1,382,2,1,5,1.2,3,1,2,1,2,1.5,3,98,1,3,1.2,7,3,1.3,7,4,3.2,6.3,3.1,3,1,7,19.4,1,11.2,60,4.3,6,14.4,21.2,4.1,1,4,1.4,29.6,15.5,62,4.3,88,12.4,44.2,6,20.7,72.3,1.2,31,1,4,60.5,8,19.8,76.7,6,19,56.7,6,37.3,44.6,15.2,1.2,36.01,17,4.3,8,94.3,8,6,1,7,3,5,3,1,43,15.2,5,2,26,34,2,1.3,420,1,18,1.4,5,175.3,97,16.2,1,8.3,10.3,2.1,4.3,12.6,1.3,5,28.2,16.6,4.3,6,20.6,6.1,42.8,6.4,14.7,557,1.8,78.2,103,3,1.4,259.3,71,3,1,18,7,1,115.3,1.5,7,4,1.2,2.1,27.2}, nil }, } diff --git a/luafight/Modules/Battle/Config/Data/SkillLogicConfig.lua b/luafight/Modules/Battle/Config/Data/SkillLogicConfig.lua index d88704687..021d9f637 100644 --- a/luafight/Modules/Battle/Config/Data/SkillLogicConfig.lua +++ b/luafight/Modules/Battle/Config/Data/SkillLogicConfig.lua @@ -1,8 +1,8 @@ local SkillLogicConfig = { -__count = 2616, -__indexs = {1.31,998,1,9,1,9,4.1,1,9,1.2,8,2.1,14.01,16.4,10.1,24.21,22.21,50.62,12.4,1.3,7,20.8,1.2,8578,1,99,2.1,4.1,1,9499,1.482,9716,1.93,3,1.31,9945,1.99,901,2.1,4.3,6901,1.93,2,1.6,953,1.2,8998,1.5,5,2.1,4.1,8.7,39925,1,469,66.4,4.1,8.1,102.02,144.31,2,7,1.3,7,45.21,12.11,69,8.6,177.6,1.2,641,10,590,10,290,10,490,10,90,2.1,4.3,190,6.1,10.5,97443,26,2,298,2,122,176,2,198706,1,99009,127.61,2.1,1.22,16.1,32.71,1.4,6,2.1,4.1,6.1,1.42,14.21,16,1.91,81,2.1,4.1,4.3,198981,1.38,299917,1,109,20.3,86,4.1,8.1,16.1,32.1,64.1,80.97,4989,340.5,927,163,10,89287,10,1,9,3.2,769,6.3,1,179,-10.2,5.3,769,5.4,169,417.5,779,27.5,169,-10.4,1,9,1.7,27483,19060,848990,-10.5,50,2.1,4.1,4.1,454.11,49,14.2,1.5,95,2.1,1.5,998895,1.32,11087,16.5,79,4.3,89,63.6,16.1,32.13,6779,6.5,12.5,10,1,59,145.4,142.3,20.1,40.93,6869,7.2,89.6,99.4,789,13.1,26.52,6789,-10.4,60,144.9,782.4,759,16.1,32.13,6859,8.3,189,1,799,6.1,12.11,1045488,1.2,770.02,20.1,6.1,900779,-11.2,78,-11.2,878,4.1,8.5,4996318,2010650}, -__values = {0,1.62,2,1.5,2,5,2,1.3,3,-2.2,4,1.51,-2.2,1.4,12.2,3,1.2,2.1,2,2.1,16.2,1.6,2,1,8.2,3,1.32,4,12.2,1.6,39,-100.8,11,1,9,1,9,4.1,8.7,6,3,17.51,14.1,28.1,4.1,8,1.2,26.42,478,600,400,200,600,200,400,600,-1000.4,999,1,3,1.2,6,1.3,3,4,2,1.81,8.2,11,1.51,-7.2,335,200,1,378,321,90,10,500,79,1000,121,879,111,2,8,3,597,1279,2000,-1000.2,1.11,989,1000,5.2,-2000.2,-1000.2,-4000.2,1000,3000,2.1,-2000.2,4.2,4000,6000,4000,2000,-3000.2,2000,4000,1000,5000,8.2,1,5,8,97,100,1.4,106,1.2,148,94.51,29,152.13,81,108,9.7,558,111,389,6000,2000,3,3997,6000,8000,2000,6000,-4000.2,9.2,-8000.3,-4000.2,-8000.2,1.6,6,89,10,2,8,90,1.2,3.2,7.2,377,211,10,80,10,100,9.2,90,99,311,16.2,1,79,-100.2,7999,3,9997,1,2,98,700,9199,2,9998,-10000.2,4,9996,-10000.3,1,10,490,11499,-12000.7,130.2,110,12,88,7789,12000,-14000.5,10000,4000,-14000.4,-16000.01,-18000.01,-20000.4,19999,1,2001,10050,7949,-20000.4,-3.3,14,3,7,8,44,9941,22025,19060,1851890,1000,6996350,2010650}, -__exVals = {281,.4,null,.2,.1,.3,.5,.6,.8,.9,2.08,.15,.7,1.248,.72,.96,3.2864,.25,1.2,2.4,2.16,.693,3.6,.416,1.095,2.5,.32,1.5,.48,1.9,3.5,.45,6.5,1.8,1.4,.05,.95,2.88,1.44,1.6,.18,3.2,.12,1.25,1.72,.55,.24,1.1,3.15,.35,1.16,2.2,4.5,2.6,.47,2.12,2.3,1.7,1.55,.16,2.23,.03,.42,.56,1.63,.65,1.04,4.3,2.1,2.9,3.29,5.4,1.3,2.35,.06,.01,.36,22.5,4.8,3.8,2.8,.08,4.1,3.33,1.03,.49,.14,.66,1.56,2.7,5.2,1.14,.44,.92,5.5,.0001,.0002,.0003,.0004,.0005,.0006,.0007,.0008,.0009,.001,.0011,.0012,.0013,.0014,.0015,.0016,.0017,.0018,.0019,.002,.0021,.0022,.0023,.0024,.0025,.0026,.0027,.0028,.0029,.003,.0031,.0032,.0033,.0034,.0035,.0036,.0037,.0038,.0039,.004,.0041,.0042,.0043,.0044,.0045,.0046,.0047,.0048,.0049,.005,.0051,.0052,.0053,.0054,.0055,.0056,.0057,.0058,.0059,.006,.0061,.0062,.0063,.0064,.0065,.0066,.0067,.0068,.0069,.007,.0071,.0072,.0073,.0074,.0075,.0076,.0077,.0078,.0079,.008,.0081,.0082,.0083,.0084,.0085,.0086,.0087,.0088,.0089,.009,.0091,.0092,.0093,.0094,.0095,.0096,.0097,.0098,.0099,.85,.77,1.75,3.286,7.2,.88,.09,1.456,.78,1.88,5.7,3.4,5.6,7.5,.20,4.2,1.12,.624,1.643,.94,.04,.07,1.78,1.11,.59,.39,.11,5.3,.54,.75,.89,8.6,9.05,9.5,10.45,11.45,13.75,.97,1.33,1.02,.73,1.45,.22,2.25,.035,.045,1.46,1.22,.38,1.328,1.664,2.912,.50,.46,.52,.58,.64,1.19,1.34,1.42,.13,1.58,27.5,.84,1.01,1.67,2.01,5.8,4.9,5.9,7.4,.63,4.6,.82,.41,.17,1.05,.86,17.5,18.4,19.3,20.25,21.30,23.45,.10,1.08,.02,1.15}, +__count = 2668, +__indexs = {1.31,998,1,9,1,9,4.1,1,9,1.2,8,2.1,14.01,16.4,10.1,24.21,22.21,50.62,12.4,1.3,7,20.8,1.2,8578,1,99,2.1,4.1,1,9499,1.482,9716,1.93,3,1.31,9945,1.99,901,2.1,4.3,6901,1.93,2,1.6,953,1.2,8998,1.5,5,2.1,4.1,8.1,6.5,39895,1,469,72.4,4.1,8.1,108.02,150.31,2,7,1.3,7,45.21,12.11,69,8.6,183.6,1.2,641,10,590,10,290,10,490,10,90,2.1,4.3,190,6.1,10.5,97443,26,2,298,2,122,176,2,198706,1,99009,127.61,2.1,1.22,16.1,32.71,1.4,6,2.1,4.1,6.1,1.42,14.21,16,1.91,81,2.1,4.1,4.3,198981,1.38,299917,1,109,20.3,86,4.1,8.1,16.1,32.1,64.1,80.97,4989,340.5,927,163,10,89287,10,1,9,3.2,769,6.3,1,179,-10.2,5.3,769,5.4,169,417.5,779,27.5,169,-10.4,1,9,1.7,27483,19060,848990,-10.5,50,2.1,4.3,550,1.5,95,1.5,3895,-10.6,453.8,900,-10.01,900,476.12,899,24.2,-10.01,990900,1.32,11087,12.5,79,4.3,89,81.6,16.1,32.13,6779,6.5,12.5,10,1,59,163.4,160.3,20.1,40.93,6869,7.2,89.6,99.4,789,13.1,26.52,6789,-10.4,60,144.9,806.4,759,16.1,32.13,6859,8.3,189,1,799,6.1,12.11,1045488,1.2,312.02,20.1,6.1,900779,-11.2,78,-11.2,878,4.1,8.5,4996318,2010650}, +__values = {0,1.62,2,1.5,2,5,2,1.3,3,-2.2,4,1.51,-2.2,1.4,12.2,3,1.2,2.1,2,2.1,16.2,1.6,2,1,8.2,3,1.32,4,-2.2,1.7,38,-100.8,11,1,9,1,9,4.1,8.7,6,3,17.51,14.1,28.1,4.1,8,1.2,26.42,478,600,400,200,600,200,400,600,-1000.4,999,1,3,1.2,6,1.3,3,4,2,1.81,8.2,11,1.51,-7.2,335,200,379,321,90,10,500,79,1000,121,879,111,2,8,3,597,1279,2000,-1000.2,1.11,989,1000,5.2,-2000.2,-1000.2,-4000.2,1000,3000,2.1,-2000.2,4.2,4000,6000,4000,2000,-3000.2,2000,4000,1000,5000,8.2,1.4,2,8,97,100,1.4,106,1.2,148,93.51,29,151.13,81,108,9.7,19,1.2,537,111,389,6000,2000,3,3997,6000,8000,2000,6000,-4000.2,9.2,-8000.3,-4000.2,-8000.2,1.6,6,89,10,2,8,90,1.2,3.2,10,1.2,377,211,10,90,-100.2,189,311,12.2,1,8278,3,9997,1,2,98,700,9199,2,9998,-10000.2,4,9996,-10000.3,1,10,490,11499,-12000.7,4000,1,110,12,88,7789,12000,-14000.5,10000,4000,-14000.4,-16000.01,-18000.01,-20000.4,19999,1,2001,10050,7949,-20000.4,-3.3,14,3,7,8,44,9941,22025,19060,1851890,1000,6996350,2010650}, +__exVals = {285,.4,null,.2,.1,.3,.5,.6,.8,2.08,.15,.9,.25,.7,1.248,.72,.96,3.2864,1.2,2.4,2.16,.693,3.6,.416,1.095,2.5,.32,1.5,1.9,.18,.48,.45,3.5,.12,.24,6.5,1.8,.95,1.4,.05,2.88,1.44,1.6,3.2,.35,1.25,1.72,.55,1.1,3.15,1.16,2.2,.47,4.5,2.6,2.12,.16,.42,2.3,1.7,2.23,1.55,.03,.56,1.63,.65,1.04,4.3,2.1,2.9,3.29,5.4,1.3,2.35,.06,.01,.36,22.5,4.8,3.8,2.8,.08,.14,1.56,4.1,3.33,1.03,.49,.39,.66,2.7,5.2,1.14,.44,.92,5.5,.0001,.0002,.0003,.0004,.0005,.0006,.0007,.0008,.0009,.001,.0011,.0012,.0013,.0014,.0015,.0016,.0017,.0018,.0019,.002,.0021,.0022,.0023,.0024,.0025,.0026,.0027,.0028,.0029,.003,.0031,.0032,.0033,.0034,.0035,.0036,.0037,.0038,.0039,.004,.0041,.0042,.0043,.0044,.0045,.0046,.0047,.0048,.0049,.005,.0051,.0052,.0053,.0054,.0055,.0056,.0057,.0058,.0059,.006,.0061,.0062,.0063,.0064,.0065,.0066,.0067,.0068,.0069,.007,.0071,.0072,.0073,.0074,.0075,.0076,.0077,.0078,.0079,.008,.0081,.0082,.0083,.0084,.0085,.0086,.0087,.0088,.0089,.009,.0091,.0092,.0093,.0094,.0095,.0096,.0097,.0098,.0099,.78,.21,.85,.77,1.75,1.12,3.286,7.2,.88,.09,1.456,1.88,5.7,3.4,5.6,7.5,.20,4.2,.27,.624,1.643,.94,.73,1.45,.04,.07,1.78,1.11,.59,.11,.84,1.01,1.67,2.01,5.3,.54,.75,.89,8.6,9.05,9.5,10.45,11.45,13.75,.97,1.33,1.02,.22,2.25,.035,.045,1.46,1.22,.38,1.328,1.664,2.912,.50,.46,.52,.58,.64,1.19,1.34,1.42,.13,1.58,.43,27.5,.23,5.8,4.9,5.9,7.4,.63,4.6,.82,.41,.17,1.05,.86,17.5,18.4,19.3,20.25,21.30,23.45,.10,1.08,.02,1.15}, __fields = { 'Id', 'Target', @@ -21,20 +21,20 @@ __defaults = { 1 }, __refs = { - {{{1,1},{527,0,-157,145,.2,12,.2,-12,-54,-91,157,-28,-38,38,0,7,-4,2,0,-129,2,149,-20,0,20,-27,0,27,-20,20,2.1,-27,5,-24,46,0,-20,-32,32,.2,-6,0,-125,-5,156,-27,20.2,-2,.2,22,.2,7.2,9.3,29.2,-2,0,22,-20,-6,0,-1,-38,-86,25.2,.3,17.2,-65,0,43,.2,-2,24,27.4,.2,-20,-36,36,0,-7,.2,24.4,.8,-65,65,-27,.2,53.5,23.2,-62,62,-51,0,51,0,88.2,7,0,-2,-4,26,-65,3,.2,63,.71,-66,.2,66,.5,4.3,.8,-66,.5,66,.2,12.7,.11,-63,24.2,.32,20.5,4.2,20.5,-59,.2,59,.5,-13,.2,13,12.4,20.4,.5,-54,172.2,10.3,18.5,.8,-91,.2,157,6.2,60.3,-57,.2,57,60.4,36.4,4.3,22.2,91,.2,53,50.6,18.6,94.6,38.3,-9,58.3,-25,25,0,-25,-41,66,4.1,-25,.3,4.2,249.3,.3,9.2,25,32.2,66,0,35.3,-66,-91,91,12,-12,0,11.3,4.2,-25,13,-54,8.3,.99,-91,.99,91,4.3,129,7,-42,5,0,37,0,20,-57,0,-5,0,35,-30,-5,5,37,-7,-10,17,-5,-2,.2,-30,37,-3,-39,42,0,-37,30,-20,-12,40,-45,-21,23,-24,21,38,0,-38,12,-6,16,237.2,17,-17,53,.5,24,.5,-68,.5,-7,.5,75,.5,-65,.5,65,.5,-39,.5,28,-63,62,309.2,.2,3,.2,4,.2,-45,16.2,10.4,0,4,354.3,280.2,-7,-35,62,.5,-20,.2,20,.5,-27,8.2,286.2,16.2,0,8.2,-2,64,.2,-64,3.2,34.2,1,.2,6,44.2,.3,44.4,10.6,9,1,0,35,4,0,16,-61,25,1.2,7,44.2,-33,1,-1,-14,-97,80,2,-2,14,-14,.01,8,-8,.01,-1,178.3,-57,57,181.3,38,.2,7,.2,-42,.2,5,.5,37,.5,20,237.3,-8,.91,3,.2,35,164.2,.2,-5,.2,5,.2,37,.2,-7,.2,-10,.2,-28,.91,38,.8,16.2,12.2,-3,.2,-39,.2,42,84.2,14.2,425.2,.4,-12,.4,40,.4,-45,.4,-21,.4,24,0,1,0,1,-27,.4,21,21.2,.9,-38,.4,12,0,1,49.2,.4,28,1,-10,11,-9,-25,.4,-2,.001,4,.81,37,306.5,41,2.1,8.2,298.2,.2,304.2,-25,0,11.3,.2,293.2,7.2,16.2,20.3,18.2,15.2,25,25.2,11.3,41,.2,-41,1,-1,24.4,41,3.2,0,24.3,6.2,38.3,47.4,7.5,36.3,.4,3.1,2.1,-91,.4,25,.9,11.3,2.1,.4,41,.4,-41,16.3,-63,.4,63,6.3,14.2,26.3,.9,26.2,-54,.4,120,34.4,.91,16.4,22.3,.92,8.2,132,28.5,4.1,-132,12.7,485.3,434.4,4.1,.6,8.7,12.9,28.8,8.1,-132,.2,132,16.9,4.1,16.7,56.9,16.4,24.4,-131,.2,131,4.1,76.8,44.9,52.11,28.31,112.51,136.21,36.6,91,690.2,693.3,3.2,9.1,-131,1,-1,-1,3.2,0,1,14,51,-66,54,12,36.2,66,-65,-92,157,5.2,699.2,66,-153,-4,159,-3,-152,4.3,67,20.3,3.1,18.2,1,-1,-66,16,0,-15,108,-109,0,13,26,-125,.5,95,.5,30,.5,-2,761.2,-74,.01,91,2,-2,4,-4,.7,46,.5,-25,.5,-19,1.3,-5,0,20,0,3,1,2,0,12,1,26,892.3,65,630.2,2,913.2,-131,930.3,7,0,-7,0,27,.3,1,73.5,398.3,432.3,-63,6,-9,85.4,15.1,30.72,426.3,448.2,797.2,0,15.3,0,-25,-38,-3,7.3,18.1,36.53,837.3,533.4,782.2,16.6,13.1,26.42,0,63,925.5,25,-63,38,-41,9,-9,3,-3,148.5,3,20.1,40.93,2,0,9,-11,41,25,-64,6.1,12.11,241.4,132,-66,4.1,720.3,-66,-66.2,6.3,18.3,3,63,-91,25,191.3,15.5,.2,66,-132,28.2,12.3,725.3,91,-124,836.3,42,840.5,-37,.2,-8,.2,65,0}},{{1,2},{592,.637,5,1,5,-4,-7,.9,7,.4,-7,.43,46,.4,-46,.711,5,.2,-595,.2,590,.2,6.2,-5,.344},{14,1.621,340,1.794,3,1.85,2,1.2,2,1.05,35,1.82,21,1.32,2.1,21,1.73,21,1.43,212,1.4,16,1.4,36,1.4,6,1.4,26,6.3,8.4,2.1,4.1,4,1,4,1,4,1.6,6.1,6.5,4.1,8.1,22.1,34.22,40.9,2,1.8,2.1,4.1,4.1,7,30,1,2,1,2,1.5,11,1.79,309,4,-8.2,-4.2,6,-2.2,6,1.32}},{{2,1},{370,144,0,-12,-12.2,3.2,0,-69,69,0,12,-12,12,9.2,12,-27,15,.2,14.2,24,-10,.2,-146,.5,156,.2,6.3,.2,3,.2,-3,.2,91,.2,53,.8,-53,4.2,.5,-134,.2,134,.5,-143,.2,50.2,-1,1,0,-84,83,-144,145,-145,91,-32,0,-58,4,5,-9,.3,107,-108,5,2,-6,92,-83,134,.2,-85,85,-140,117,1.3,-122,107,-97,133,0,74,-74,-145,0,1,.2,9,.2,-9,.5,-1,.91,8.2,91,.4,1,2.1,4.3,13,.4,-108,.4,5,24.3,1.3,-9,.12,1,.4,92,1.4,-86,.4,-11,.99,5,-5,5,0,56,0,-61,1,60,4.2,81.2,61,4.1,84,-1,-53,.4,41,43.3,-54,.4,32.2,-5,.4,145,.9,-135,.9,135,.4,-84,.4,84,.4,-140,.4,140,8.2,.2,30,.2,54,.2,-140,.5,-5,.2,61,.2,-51,.2,1,144.2,.8,-36,.2,-109,95.2,54,-54,1,53,0,-54,54,-53,-92,.5,93,2,-12,27.2,0,-144,75,69,-53,.3,-91,144,8.2,3.1,6.4,.32,-140,140,0,3.1,6.4,141,-140,-5,94,51,.3,106.4,-144,.2},{17,-2.2,8,4,2,6,2,1,6,2,5,-2.3,6,-8.2,15,10.3,8,1,2,48,1.2,25,1.2,16,1.2,4,1.5,10,1.2,34,1.2,7,1.2,22,4.3,8.4,18.2,13,1.8,16,1.5,4,1.2,15,1,3,2,5,2,-3.2,1,4,1,5,1,7,1,407,1,11,5,6,3,1,-2.2,4,3,2,83,13,2,19,37,3,2,1,4,1.4,2,1,17,74.4,51.2,1.5,45,1.22,57.3,1.91,4,1.9,6,1.4,2.1,6,1.91,4.2,11,6.2,1.46,21,1.34,2,1.2,17,1.9,7,3,2,41,13.2,1.41,6,1.9,21,1.4,66,1.4,16,1.92,25.2,41,96.2,1.2,3,2.1,1.2,28,6.1,4.3,53,10.5,23,1.2,18,1.2,73,1,2,1,3,-17.2,-7.2,31,1.3,5,1,7,2,82.2,30,6,1.2,4,11,-16.3,11,-2.2,16,2.1,4.3,12,3,-2.2,6,3.1,6.5,15,-21.3,12,1,3,44.3,3.1,3.1,7,3,1,4,58.3,11,5,1.2,5,20,1.2}},{{2,2},{592,.444},{168,1.2,25,1.2,16,1.2,4,1.5,10,1.2,34,1.2,7,1.2,22,4.3,8.4,18.2,13,1.8,16,1.5,4,1.2,15,1,3,2,5,2,-3.2,1,4,1,5,1,7,1,564,53,1,17,6,2,1,79,1.91,25,1.91,39,1.91,36,1.95,21,1.34,2,1.2,17,1.9,7,3,2,41,1.4,6,1.41,6,1.9,21,1.4,66,1.4,16,1.92,11,1.4,41,60.2,1.2,3,2.1,1.2,28,6.1,4.3,53,10.5,23,1.2,18,1.2,73,1,2,1,3,-17.2,-7.2,111,-16.3,11,-2.2,16,2.1,4.3,12,3,-2.2,6,3.1,6.5,15,-21.3,12,1,3,32.3,3.1,3.1,7,3,1,4,46.3,11,5,1.2,5}},{{3,1},{515,.2,-145,10,135,2,-137,0,1,-6,.7,213,-73,0,-145,0,61,84},{303,1.2,148,26,618,17,172,1.2,447,1.4,221,1.2,123,7,34,47,1,377,28}},{{3,2},{592,.91},{303,1.2,148,26,618,17,621,1.4,221,1.2,123,7,34,425,28}},{{4,1},{370},{2174}}}, - {{{1,1},{2,0,4,8,.5,-4,-5,0,-3,0,76,-76,1,-1,.3,23,0,-23,9,-9,0,1,0,-1,1,-1,.4,78,-78,79,-79,19.3,1,22,20.2,7.2,2.1,13.2,.3,7.4,.6,3.2,81,-81,20.4,.3,87,-87,87,-86,15.2,13.2,88,-88,10.2,82,0,-82,.2,83,-60,21.3,38.2,40.4,.2,41.3,.21,3.2,.62,9.3,.5,4.3,.8,1,.5,8,.2,-8,12.6,.5,12,.2,-12,.92,20.5,4.2,.2,8.4,5,.2,-5,.2,4,.2,-4,12.5,24.7,.8,4,14.3,-4,.8,22,.2,-23,8.2,.5,50.2,19,.2,-14,32.3,46.4,20,.2,-20,.2,3,.2,-3,4.3,48.4,54.4,22.3,.5,8.4,18,.2,-19,18.5,-5,.3,5,79.2,43,-43,1,24.3,-1,.4,3.2,42,-42,23,-22,.2,56,8,-65,0,5,-5,65,5.2,192.4,1,3,-3,64,-64,8,228.3,23,-24,0,3,46,-49,0,98,.99,1,2.1,4.1,49.3,2,-2,0,3.2,2,1.2,-4,5,-4,11.3,2,0,-2,7,-7,7,-4,5,-6,-2,0,1.2,3.2,9,-9,13,-13,15,-1,-12,-2,35.3,17,-17,14.3,-7,.11,27,.5,-11,.11,12,.5,-12,.5,10,.5,-121,.63,244.2,.5,1,-1,.8,263.2,324.2,.2,83,-78,-5,14.2,.43,92,0,-92,96,0,-96,21,-21,.8,126,0,-98,-6,-22,14,-9,-5,5,-5,0,27,-22,6.2,22,0,-27,8.5,14.5,360.4,.2,21,0,77,0,4,269.5,2,.2,-2,.5,4.2,-79,.91,80,253.4,.2,5,221.5,20.3,.2,-77,.91,77,.2,7,.2,-7,4.3,22.4,-6,18.5,79,6.2,.9,9,.4,-9,.4,13,.4,-13,.4,15,.4,-92,16.2,.4,-2,.4,2,4.2,.9,17,.4,-17,.4,-77,.911,-25,255.5,238.5,-1,0,19,0,-19,0,21,0,-21,1,8.2,-20,113.4,4.1,.3,121.4,115.3,289.3,40.3,5,228.3,309.3,21,-20,-1,20,35.2,7.1,58.8,325.3,591,.4,-528,.4,-63,.9,6.2,-591,.4,1,.4,18,.9,52,.9,-71,18.3,12.2,4.2,-541,16.3,5,.4,19,.4,-5,.4,521,.4,-574,.4,22,.4,33,16.3,-25,4.3,-2,.4,544,32.2,.92,8.2,590,38.5,4.1,-590,12.8,.2,591,0,4.1,4.3,.6,12.1,12.11,8.1,0,-590,.2,590,16.1,44.31,32.8,-547,.2,547,4.1,12.5,-586,.2,586,0,-532,.2,532,0,-571,.2,571,68.12,112.61,-533,.2,533,.6,-582,.2,582,32.41,591,.8,3.1,6.1,9.7,1,26,-26,4,15,-20,0,14,-14,1,3,-4,579.4,3,1,-4,714.3,-1,811.3,795.5,100.3,55.4,.5,-591,39.2,335.3,623.2,355.3,23,.5,-23,.71,77,.5,-74,.5,74,.11,17,.5,3,.5,-95,.5,91,.5,-93,.4,541.2,863.6,344.3,382.3,547.2,.2,613.3,78.3,5,-5,82.3,4,523.3,391.3,16.1,32.03,.3,606.2,.2,1,0,11,-7,23.2,10.2,-12,-8,15.1,30.1,0,27,-28,5,-4,16,-16,484.3,.3,1,11.1,22.02,.4,9,-9,5.2,4.2,61.3,13.3,69.2,127.3,8,78.2,20.1,40.1,20.4,22.4,6.1,12.9,0,4,0,-4,590,-528,-63,1,590,367.2,58,-59,0,45.2,591,-532,-4,-5,1,5,0,14,521,-574,22,-39,591,-543,1,-2,544,24.2,-1,415.2,-590,31.2,591,-530,-60,51,1,-53,591,-489,.2,2,.8,-2,708.3,13,.2,-116,0}},{{1,2},{4,.7,83,-83,83,0,3.2,.2,-8,0,-75,83,-1,0,-72,.2,-10,.2,10,.2,-9,.2,9,4.1,12.6,.5,-1,.5,1,.2,-3,.2,2,.2,6.2,18.7,.2,20,.2,-11,32.9,4.2,24.6,6.2,-1,4.2,.8,10.5,.5,62.3,10.5,30.3,.5,34.4,52.4,30.2,88.6,42.6,10,.3,-10,10,0,-10,1,9,-10,0,1,-1,10,11.2,53,-53,-12,65,-63,63,-10,-53,11.2,0,10,-9,9,30,-40,6.2,-11,2,.2,68,-69,83,0,-82,121,0,-122,1,9,56.2,71,.95,-72,.4,30,-30,0,67.2,12,-21,.3,12,-12,107.4,55.2,12.2,-12,12.3,50.2,24.4,75.2,.4,-3,.9,71,.9,-68,.4,-1,.7,69,.8,-34,.5,-35,101.3,34,.2,31,.2,-65,.5,42.3,.5,9,0,-9,-1,149.5,9,73,-83,95.2,0,9,14.3,4.3,10.1,20.91,9,.3,10.3,172.2,1,8.1,16.1,0,-1,246.3,87.4,6.1,12.9,214.6,-9,9,8.2,-9,0,78.2,12.1,24.22,56.4,10,4.1,8.7,.4,35,-35,58,11,-6,-19,-43,59,-28},{1.2,26,1,2,15,19,2,6,10,4,2,25,2,1.2,4,1,-2.3,1,17,6.2,2.1,1.8,4,1.71,10,6.3,13,8.2,1.5,12.3,10.2,1.5,7,4.2,1.02,7,1.71,4.2,10,14.4,1.11,4.1,18,1,3,1.11,-2.2,1.3,-2.2,1.8,3,1.4,2.1,502,42,6,4,9,48,1,12,2,4,10,8,1,33,1.91,182,1.91,41,1.91,45,3,1.6,3,1,3,1,13,1.5,2,1.6,13,1.2,2,1,3,4.1,1,98.2,3,1,36,1.4,11,1.9,91,1.9,21,1.4,16,1.4,26,1.2,8,1.2,28,18.2,2.1,4.3,18,1.2,38.2,4.2,23,6.3,12.2,6.2,38,6.3,77,2,5,-2.2,1,3,-2.3,3,10,57.3,93,9,3,1.3,40.5,6.1,12.01,1.5,5,4,2,1.3,2,1.4,6.1,12.11,1,-2.2,3,3.2,5.1,10.1,1,2,4,2,1,32.2,3,5.3,9.1,18.61,86.4,2.1,4.3,2,4,4.2,20,4,2,5,3}},{{2,1},{79,.2,-75,75,12,0,-3,0,-6,3.2,12,-12,9.2,-66,66,-87,78,-3,0,8,0,4,-85,.2,19,.2,-20,.2,-1,.2,1,.11,4.3,.41,20,.2,-16,.2,-4,.2,26,.2,-6,.3,20.3,6,-5,62,-57,15,-22,6,0,58,-42,-20,74,31,-18,0,21,1.3,-24,28,-7,-34,9,-9,-70,70,43,-9,0,14,0,-48,-76,126,-124,.5,87,.2,-87,.2,74,.2,31,.2,-73,.91,55,.2,-88,.91,109,.4,1,2.1,4.3,-111,.91,87,.4,28,.4,-7,.4,-108,.95,62,.91,-62,.91,20,-19,0,19,-19,-1,1,-1,.21,-1,.9,62,.4,-62,.4,67,.4,-46,.4,-15,.4,-5,.41,63,.9,-43,.9,-20,.7,117.3,.2,66,.2,-46,.2,42,.2,-62,.41,5,.2,-5,12.3,-67,6,-6,10,-9,0,48.3,1,.3,88,0,-14,0,18,.2,-18,9,-6,0,-3,-75,.3,21,44,-63,19,3.1,6.5,3,-4,31,-31,4,4.1,8.7,1,.3,-1,4,16,-20,3.1,6.5,41,5,-46,48,-63,46,-31,-20,62,1.2,-64,160.2},{17,-2.2,8,4,2,6,2,1,6,2,5,-2.3,6,-8.2,15,10.3,8,1,2,48,1.2,25,1.2,16,1.2,4,1.5,10,1.2,34,1.2,7,1.2,22,4.3,8.4,18.2,13,1.8,16,1.5,4,1.2,15,1,3,2,5,2,-3.2,1,4,1,5,1,7,1,407,1,11,5,6,3,1,-2.2,4,3,2,83,13,2,19,37,3,2,1,4,1.4,2,1,17,74.4,51.2,1.5,45,1.22,57.3,1.91,4,1.9,6,1.4,2.1,6,1.91,4.2,11,6.2,1.46,21,1.34,2,1.2,17,1.9,7,3,2,41,13.2,1.41,6,1.9,21,1.4,66,1.4,16,1.92,25.2,41,96.2,1.2,3,2.1,1.2,28,6.1,4.3,53,10.5,23,1.2,18,1.2,73,1,2,1,3,-17.2,-7.2,31,1.3,5,1,7,2,82.2,30,6,1.2,4,11,-16.3,11,-2.2,16,2.1,4.3,12,3,-2.2,6,3.1,6.5,15,-21.3,12,1,3,44.3,3.1,3.1,7,3,1,4,58.3,11,5,1.2,5,20,1.2}},{{1,3},{14,.5,-9,.31,9,-9,62,0,-53,-10,1,0,108,0,-87,.9,-21,.91,21,4.2,.5,9,-9,.3,12,-12,2.1,4.1,.31},{294,1.2,4,1.2,64,1.2,10,1.5,46,8,1,5,6,3,9,5,6,1,2,1,563,48,1,80,1.9,242,1.91,177,1.9,261,1.2,133,1.2,88,140,-16.3,19,7,13,2.1,4.3,71,2,19,2.1,4.3,1,-6.3,19}},{{3,1},{5,.2,62,-57,-5,0,74,.2,-54,.4,-20,.7,62,-36},{303,1.2,148,26,618,17,172,1.2,447,1.4,221,1.2,123,7,34,47,1,377,28}},{{1,4},{5,.4},{381,1.2,46,47}},{{2,2},{5,.2,2.1,-5,.22,26,.91,-26,.91,30,.91,-30,.62,62,.4,-62,.71,62,.2,-62,.2,61,.2,-61,.7,4,.3,58,-62},{414,1.5,37,9,631,116,1.9,93,1.9,56,1.93,21,1.93,6,40,56,1.4,11,1.4,96,1.4,21,1.4,31,1.4,61,1.2,33,1.2,8,1.2,98,1.2,347,-20.3,73,-21.3,16,-6.3,10,20}},{{2,3},{5,.21,26,.91,1,.91,4,.5},{417,1.2,793,1.9,218,1.93,217,1.4,875}},{{3,2},{67},{453}},{{4,1},{5},{2174}}}, - {{{1,1},{595,0,-593,0,1.2,-2,1.2,9,-11,1,592,50,177,-177,10,1,-1,-28,47,-672,0,625,24,0,-24,28,0,-28,24,-24,2.1,28,-28,196,-196,47,-76,48,-48,48,0,37,-34,-647,0,598,49,-49,46,-46,39,0,-39,39,-39,9.2,11.4,13.3,-39,46,25.2,34,1,-682,27.2,23.3,19.2,84,0,-84,28.6,2.1,26.3,-19,19,0,30,-41,41,125,-799,.2,619,-619,637,0,-637,619,0,-619,822,-822,633,.2,-633,662,-662,10.3,633,-633,623,2,-2,0,2,47,-29,10,1,-5,101.2,-55,-598,612,-2,3,-11,-3,6,-3,3.1,6.1,6.5,7,21.8,9.1,12.6,-1,15.5,30.12,15.1,81.42,12.9,18.9,195,-145,146,168.2,600,8.2,-605,.2,602,40.02,12.5,187,-174,24.11,41.2,1,.2,611,140.5,3.1,-613,54.7,154.6,42.3,-184,6.2,-603,.2,610,99.11,6.3,37.2,230.3,42.8,-612,61.4,24.6,64.5,257.8,100.4,28.2,601,-3,6,3,-606,621,16,-28,0,191,-163,-31,34,-3,-13,-18,31,-30,.2,17,-19,16,-12,-600,791,-193,-13,31,-627,626,-18,-606,614,-616,608,-606,605,0,21,159,-160,-616,628,-639,609,26.2,0,32,-638,606,20,-627,608,0,3,73,1.89,-118,20,3.1,6.5,-662,.33,588,-588,2,-2,588,-579,-9,.4,-2,2,0,3.2,3,.5,-5,.14,623,3,-626,619,-3,27,-10,-35,45,3.2,-2,66,-30,-40,-592,596,-4,3.2,-596,18.7,-37,66,-37,493.2,24,-6,10,513.2,0,-74,444.3,498.2,476.3,2.1,39,44,-58,-25,49,-647,430.2,619,55,-51,-621,-2,619,0,-20,-599,64.31,592,-592,0,16.51,625,180,0,-208,232,-212,8,205,-830,662,0,12,-51,2,-6,0,-21,-592,1,592,207,-207,0,-598,598,2.1,5.2,0,831,-831,0,1,832,-235,8.2,14.2,613,-15,6.3,60,-27,-33,33,-33,5.3,65,0,-662,.62,246,4,0,4,.2,59,0,8,.2,2,.2,14,.3,2,0,-339,.32,249,58,0,14,0,15,0,4,0,3,.3,2,2.1,.2,-347,.32,251,61,0,9,.2,3,0,14,4.3,3,.2,1,0,1,0,-346,.21,834,1.3,-242,-595,.4,2,.4,-2,.4,593,0,1,5,-601,256,70,0,18,.2,4,0,5,4.2,.2,2,.3,4,0,-361,.42,24.2,2,.4,254,85,.2,7,.3,7,19.3,6,.3,3,0,-24,9,7.3,7,.2,76,.2,5,32.3,-107,13.21,-125,22,.2,9,.3,6,.2,5,.2,77,13.3,-123,13.21,-92,11,.2,81,.3,7,.3,42,.3,9,.2,5,114,-18,3,56,-41,-18,18,-18,-4,3,0,15,-15,1,0,18,-3,169,-174,4,805.2,-15,15,-14,18,-8,4,-14,14,-4,4.2,3,-3,18,757.2,-18,14,12.2,41.2,-3,14,0,20.3,26.4,-4,-617,606,-606,4,-3,621,169,-194,42.2,-10,10,186,-170,8.4,62.2,186,-186,11,-10,14,68.3,3,31,-15,13,-26,-3,45,4,-69,.4,49,7.4,134,-126,-12,194,-63,-147,17.6,54,-3,26,-1,128,-176,-616,638,-636,791,-189,16,-622,607,-606,655,-49,70,-67,30,-641,.9,640,46.11,7.2,32,23,-38,50,-47,58,-39,-19,56,-662,-4,237.3,655,136,57,1.2,-262,56.4,-27,154,3,-131,-7,127,-779,632,37.3,154,-191,66.4,-151,20.4,-155,2,16,10,-1,-663,.4,587,.4,-16.2,79.3,612,55,-39,168,12,-810,607,39,-645,641,4,-28,22,18,-47,12,73.4,34,33,-10,187,-62,-157,25,-39,18,38,-87,97.8,17,61,-666,664,-662,586,.4,45,21.31,70,-45,26,-51,0,-589,617,60,-88,0,37,-10,12,-39,.6,5.4,15.1,0,66,-49,63,-80,15.5,10.1,0,25,30,-4,55.2,20.01,32,23,12,-67,0,55,-28,40,5.2,70.51,6,1,30,-37,0,17,61,2,35.2,-589,.2,589,0,-586,.2,586,53.6,13.4,122.5,72.5,10.5,27,22,-10,24.2,127.41,57.6,82.01,15.1,-590,613,184,655.2,50.01,55,-55,.8,66,-66,3.1,.8,9.1,68,0,-656,656,-658,658,198,-198,0,-27,-12,-620,632,0,-36,36,-42,-590,0,601,31,-632,632,-36,263,-258,-11,42,-632,11.2,-11,15.3,-11,1,0,5,-5,0,-591,591,.5,5,36,-36,0,36,36.2,-596,40.2,181,47,-860,.5,861,1.5,-52,1.5,-5,1.5,-819,.5,5,.5,-3,.11,9,.5,-11,.71,674,-41,-633,633,-35,84,-57,24,-649,649,548.2,-649,0,593,40,-40,-588,588,54,-54,26,-26,44,-28,-607,601,-4,4,14,34,-649,605,20,-18,-5,-602,615,-2,2,-8,16.1,32.13,-2,14,48,-12,-62,1,-1,2.1,1,-603,1,615,-6,4,14,10,-35,5,-5,11,20.1,40.93,-1,6,87.2,782,-181,14,-6,16,-24,77,-77,49,-49,13.1,26.1,-6.2,20,-24,-2,43,-43,60.2,1,11,2,22,-35,47,156.5,-1,20.1,40.93,44,-33,11,1,-24,23,22,6.1,12.11,-9,-615,0,618,-29,45,-636,620,-29,16,-17,-590,616,252,-234,-634,591,92,128,-186,29,-653,2,-1,589,16,-605,0,4.2,181,-784,587,25,22,175,57,-234,-45,3,-3,13,-13,197,-198,-588,592,2,-5,-589,.71,9,.2,774,-145}},{{1,2},{2,1,-1,593,.6,2,-1,-594,1,0,-1,.3,1,0,672,112,-785,.2,590,-589,0,-1,.5,1,.5,-1,.2,15.3,-75,-598,0,1,.4,14.3,0,-1,0,33.7,18.2,24.3,-1,.4,1,.2,-1,1,.01,-1,0,673,15.2,11.4,0,1,.3,19.3,.9,8.3,-1,.81,15.3,.02,4.3,.8,66.3,.11,593,.2,-592,10.4,4.2,.41,4.3,.62,2,.2,-2,.2,600,.2,-600,.2,30.5,24.6,.8,16.2,-597,22.2,.8,40.2,-593,.8,12.2,32.3,.5,20.3,32.3,599,.2,-599,.2,662,.2,-663,.5,3,50.3,126.3,50.4,.11,26.4,-1,2,-2,132.3,34.3,110.3,6.2,594,-593,.3,-2,2,19.3,33.3,649,-650,8.2,164.4,593,-593,0,592,115.2,242,5,3,2,3,58,3,6,1,2,14,-3.2,1.2,-2.4,2.1,1,73,1,3,1.2,-2.3,1.3,2,1.2,37,2,5,5.2,2,1.3,4,1.7,6,1.6,2,1.82,2,3,1.4,-331,41.1,82.18,-572,2,615,-612,4,-6,0,2,0,4,-9,0,3,6,-7,3,6,-6,0,4,3,1,-6,-2.3,0,-4,-2.3,-6,584,70,-664,672,-78,70,-41,-613,584,-584,6,806,-824,825,-825,2,18,581,48,-19,-37,233,-219,-6,6.3,0,14,-601,1.4,2,-9,.5,19,.5,12,3,-2.2,1,4,-25,.5,66.4,1,2,-19,1,434.7,302.4,.3,306.4,304.3,8.2,436.4,0,2,311.3,.6,9.3,423.5,474.6,8.4,44.4,.21,1,.7,-1,26.4,0,1,-2,464.4,48.6,56.3,.2,566,-311,-252,-2.2,-1,3,5,-10,2,3,1,3,4,-4,2,4,-12,-2.2,-4,-2.2,-2,-3.2,-6,3,5,-14,1.4,2,4,2,4,-14,1.2,-3.2,4,-1,3,7.2,-2.2,-5,1,2,6,-2.2,-10,-3.2,29.2,0,5,4,-9,-2.2,-3,-4.2,-13,54.2,4,5,-13,1,2,619,173,-131,-75,190,17,-157,-34,218,-183,-651,.4,805,34,1.2,2,-248,5,-4,1,-598,808,16.2,-22,57,-651,0,1.2,10,2,-2,-2.2,617,33.4,-779,1.3,-2.2,647,-642,821,-817,763,55,-221,222,-48,-800,.4,678,171,-230,231,-200,-649,.45,1,136.3,2,-1,.51,542.3,-1,.91,1,.91,-1,.9,639.3,.4,1,.41,2,.4,-2,8.2,16.2,.9,3,.4,-4,.9,22.5,.9,14.3,.8,205.5,4.1,621.3,594,1,40,-41,1,2,669.2,581.7,.62,22.5,243.3,3,15.2,-1,1,591,-592,.3,1,605,-604,-2,.7,1,600,-11,733.2,4.3,295.4,-1,620,-620,1,.2,665,.5,-666,.32,631,17,-56,43,.2,-635,.9,776.3,82,-46,.3,-629,.5,33,-3,.3,1,-30,.3,-1,.7,593,5,-597,754.5,-1,.2,2,-2,281.4,6.2,289.3,640.3,14.1,28.72,373.6,592,-589,-3,364.3,80.2,74.4,14.1,28.22,.4,59.4,867.4,.3,69.5,10.1,20.41,897.5,918.6,115.7,16.3,19.1,38.73,524.4,4.1,8.6,142.3,870.5,0,1,.7,2,-2,1030.4,3,-4,0,25.3,221.4,13,2,4,-16,1.2,8,494.2,4,5,494.2,-1,-3.2,598,0,-31,879.2},{918,240,1.91,25,2.1,1.91,34,5,1.91,36,1.911,92,1.4,16,1.4,36,1.4,6,1.4,26,6.3,8.4,2.1,4.1,4,1,4,1,4,1.6,6.1,6.5,4.1,8.1,22.1,34.22,40.9,2,1.8,2.1,4.1,4.1,37,1,2,1,2,1.5,79,1.5,333,4,-8.2,-4.2,6,-2.2,6}},{{2,1},{2,.4,590,.2,-590,.2,4,0,616,-28,-592,.4,620,-23,-597,654,-643,583,-594,596,0,24,-26,-594,0,594,2,.2,-596,2,0,588,6,-6,6,-596,.2,594,.2,-593,.2,-1,.2,2,.2,-2,.2,3,8.3,592,14.3,12.4,10.2,594,.5,10.2,596,.2,-597,.5,1,12.3,1,.5,16.3,40.4,.5,2,.2,1,30.3,593,.2,-586,.2,-8,.5,595,.2,-594,.5,593,7,0,-599,15.2,2,0,72.2,34.2,3,26.3,30.4,46.4,68.3,.8,638,.2,-636,6.2,.5,654,.2,-653,.2,619,.2,-620,.11,18.3,.5,616,.2,-616,.2,147.2,-588,4.3,-589,.2,-3,.9,590,-588,0,588,-589,0,90.3,-586,-6,11,-13,.4,628,-617,-11,.2,607,-13,-592,-2,0,1,-1,13,-13,611,-17,-4,5,-595,1,787,-788,0,8,-8,0,4,-4,1,589,0,4,-594,11,0,579,-579,34.2,594,-590,-4,596,-6,-589,-2,1,11,665,0,-47,36,-665,.2,623,-623,2,6,587,-594,-1,1.2,-2,3,.3,592,6,-601,4,.2,-4,.22,1,.2,252,0,61,0,9,0,3,0,14,145.3,3,.3,1,0,249,1,-597,592,0,2,0,-4,.2,5,0,1,4.3,8.2,1,0,-598,638,-48,5,39,20,-654,.4,11,.9,-8,.91,592,1,5,-4,-597,11,.4,-11,.42,5,.91,3,.91,-8,.93,4,.91,-4,.3,594,-594,1,593,-2,-2,4,-595,593,3.2,-1,2,-3,1,0,2,-1,6,0,1,0,-1,-7,.2,1.2,592,-587,7,-6,-8,0,32.2,13,577,-589,.4,1,.4,592,-4,-589,593,2,-594,592,3,.4,-1,.4,-6,0,5,.2,1,.4,-596,.4,7,.4,600,16,-622,607,-606,643,-3,-640,1.2,-4,.44,1,.4,596,.4,-7,0,6,-591,.2,-5,.2,597,369.2,290.3,595,0,-595,597,0,-597,6.3,.9,1,336.3,-594,336.3,595,.4,231.2,.5,4,.5,6,.2,-11,.8,8.2,596,-586,583,-593,7,-6,-1,0,811,-812,1,0,4,-3,3,-2,-3,0,2,0,-1,1,594,-592,.3,7,0,-9,0,2,.2,-4,1,3,597,-9,-592,595,-593,-2,22.3,589,-589,1,-1,594,10.1,20.91,.4,-1,252.3,7.2,591,-590,8.2,10.1,20.81,1,-2,96.2,104.3,.2,8.1,16.1,593,558.3,-595,258.3,0,53.3,1,13.1,26.1,2.1,-2,2,595,-596,5.1,10.9,-597,32.2,0,2,-596,595,1,-1,423.2,11,159.2,-11,596,24,-609,0,582,-593,2,594,38,-38,414.2},{1.2,15,-2.2,7,1,-2.3,6,2,1,2,4,2,5,-2.6,-4.2,6,-2.3,11,12.3,5,2,1.2,-2.2,21.2,1,17,1.2,4,2.1,1.92,7,1.5,4,1.11,4,1.32,4,1.8,12.3,4.2,1.92,4,1.71,4,1.02,7,16.2,1.83,4,22.2,1.2,3,1,3,1.03,2,1.21,2,1,407,1,11,5,6,3,1,-2.2,4,3,2,52,31,11,-2.3,4,9,4,37,3,2,1.3,2,1.4,2,1,3,2,4,8,89.3,1.3,6,1.2,16,48.2,1.91,22,1.22,7,8.2,1.91,4,1.9,6,1.4,2.1,6,1.91,4.2,11,6.2,1.831,68.3,1,3,1.32,13,1.2,44.3,4.1,1,2,86.2,1.6,6,1.41,6,1.9,11,1.41,66,1.4,16,1.43,42.4,26,18.2,2.1,1.2,8,6.1,6.5,4.1,6.1,56.2,18.6,23,10.3,20.8,18.2,12.2,18,10.5,63,1,82.3,7,2,5,2,1.3,3,-2.3,-3.2,7,94.4,31,1.3,5,1,7,2,7,1.2,30,4,2,1.2,4,1,3,24.2,40.4,6.1,12.01,1.5,-2.2,4.2,191.4,7.1,14.31,1.3,7.2,-2.2,4.1,8.1,311.4,1.7,3,318.5,7.1,14.01,258.4,2.1,2.1,8.2,3,1,2,1.6,2,1,11,4,69.2,-3.2,14,1.2}},{{2,2},{3,-1,.3,1,0,-1,0,593,-1,-592,.7,594,-594,.6,6,-5,.2,-1,1,.4,592,.2,-593,.2,593,.8,7,.2,-7,.5,-592,.2,592,.5,-1,.2,2,.2,-594,.2,1,.2,591,.2,14.3,.2,-590,8.5,4.2,1,41.2,8.3,593,6.3,2,4.3,2.1,1,52.3,594,8.5,44.2,38.2,8,.2,-600,14.3,10.4,48.2,4.2,-2,72.3,590,40.3,8,.2,-8,.5,6.2,37,.2,-630,20.3,7,.2,-598,46.3,599,.2,-599,4.3,-7,10.3,-589,34.3,1,.2,6,56.3,84.2,74.2,32.2,50.2,64.4,620,.2,-28,0,1,-1,-591,591,0,3.1,-590,0,591,-592,592,-1,10.2,592,-593,592,-591,0,592,-594,4,-4,1,0,593,9.2,590,3,-2,0,-593,36.3,12.2,-592,596,0,53,-651,1,624,-624,.3,1,-2,625,46,-670,670,-651,-17,-2,0,13.2,70.2,-594,1,591,-574,0,-16,0,-2,1,-1,592,0,-592,594,-2,2,-4,4,.4,88.2,624,.2,26.2,2,.91,-2,.52,1,.4,-2,.4,805,-15,20,34,-243,189,-196,216,-178,-31,-6,0,44,0,-48,.2,30,0,-25,.2,39,.3,-38,.2,58,-654,.4,593,38,44,-27,-19,-610,.4,-19,.91,594,0,44,.3,26.3,.2,-25,.3,39,.2,-38,-3,0,-1,.3,2,.2,-4,.2,5,.3,1,4.2,-599,.91,-3,.91,595,0,-4,.3,5,.2,1,4.2,.3,21.2,-597,330.2,-591,106.3,4.2,1,175.3,0,592,.4,8,6,-6,-6,-2,.2,2,-2,0,8,0,6,-599,587,-2,9.2,-590,4.2,192.2,589,18.3,.3,2,372.2,0,593,188.2,39.2,2,.9,3,.4,-3,138.3,246.2,2,-4,-589,.9,615,6,-8,-612,666,-44,0,-31,263.2,.9,598,38,-20,6,23,-9,-29,16,-1,23,-47,10.4,-26,-616,638,-636,791,-204,41.2,0,6,0,1,-597,.7,304.2,348.2,2,310.2,0,82.2,7.2,.5,11,.5,594,16,-15,-608,312.2,0,2,363.3,0,2,-2,.2,14,.2,-604,326.3,6,0,-6,-2,0,-2,3,0,204,-205,0,2,12.3,28.5,254.2,593,0,438.3,268.2,-596,606,-14,8,258,-266,340.2,0,2,-1,-3,3,-3,2,-590,590,166.3,-591,662,-32,.2,32,-32,-631,0,867,-267,-8,-592,1,44,-45,.2,3,170.2,1,352.2,592,1,-1,-589,9.1,18.71,1,0,7,91.3,590,14,-14,516.3,15.2,13.1,26.52,395.2,627.3,6,-6,635.3,9.1,18.71,-593,593,95.3,14,-13,-1,1,9.3,21.2,13.1,26.52,146.4,546.2,5.1,10.9,2,0,-3,9,-7,-2,7,-7,.3,595,-583,580,211,-804,0,649,-55,.2,419.2,633,-634,.2},{1.2,15,-2.2,7,1,-2.2,10,1,2,4,2,5,-4.2,2,6,4,6,4,2,11,6,2,1,5,2,1.2,4,1,-2.3,1,17,6.2,2.1,1.92,7,1.5,4,1.11,4,1.32,4,1.8,12.3,4.2,1.92,4,1.71,4,1.02,7,16.2,1.83,4,22.2,1.2,3,1,3,1.03,2,1.21,2,1,407,1,11,5,6,3,72.2,4,3,2,52,31,11,-2.3,4,9,4,37,3,2,1,4,1.4,2,1,3,2,4,8,92.3,1.3,6,1.2,16,48.2,1.91,22,1.2,27,8.2,1.91,4,1.9,6,1.4,2.1,6,1.91,4.2,11,6.2,1.831,68.3,1,3,1.32,13,1.2,44.3,4.1,1,2,86.2,1.6,6,1.41,6,1.9,11,1.41,66,1.4,16,1.43,42.4,26,18.2,2.1,1.2,8,6.1,6.5,4.1,6.1,56.2,18.6,23,10.3,20.8,18.2,12.2,18,10.5,63,1,82.3,7,2,5,2,1.3,3,-2.3,-3.2,7,94.4,31,1.3,5,1,7,2,7,1.2,30,4,226.4,3,24.2,40.4,6.1,12.01,1.5,-2.2,4.2,51.2,2,1.4,7.1,14.31,1.3,7.2,-2.2,4.1,8.1,314.4,1.7,3,2,7.1,14.1,53.3,2.1,4.3,8.2,3,1,2,1.6,2,1,11,4,69.2,-3.2,14,1.2}},{{2,3},{6,-3,-1,.2,6,0,-6,.2,592,-592,592,0,-592,.5,597,-596,.2,1,.2,17.2,2,.2,-3,.2,3,.5,4.2,8.2,12.3,.5,-1,.5,1,.5,21,.2,-20,12.2,.5,-2,.2,5,.2,-4,32.7,641,.2,-640,44.3,619,.2,-620,.2,4,46.4,24.2,.5,8.2,609,.2,-609,46.2,22.3,-5,34.3,6.2,4,.2,87.2,4,.8,24.2,18.2,5,12.3,-7,56.3,613,.2,69,.2,-682,12.3,614,.2,-619,.2,5,96.3,18.4,-609,.2,86.2,618,.5,-620,.4,-1,0,2,3,-4,3,0,5,-6,2,-5,9,-2,-6,1,-1,6,-4,-2,5.2,594,-594,-1,4,0,-3,3,-4,590,-589,3,-2,0,-1,2,0,-4,4,0,-2,-1,0,1,56.2,595,-3,-592,6,586,0,-583,-9,.2,5,3,-1,4,-11,8,94.2,.3,20.2,4,1,2,127,0,82,0,27,.2,1,0,127.3,.3,2,.3,-248,97.3,5,.91,-4,91.2,.8,1,2,.4,4,.9,4.2,-9,.4,620,-30,48,-44,12,-356,0,1,.3,1,161.3,36.3,.2,53,-304,.4,2,26.3,37.2,6.4,234,0,2,.3,3,188.4,31.4,-248,.42,19.4,-6,1,-3,4,0,-1,610,-611,0,6,-7,2,-3,.2,8,-5,1,-1,2.1,4.1,8.1,.2,3,-6,6,-2,0,-4,.2,8,-8,.3,3.2,1,2,5,-7,2,-4,3,6,.41,613,35,-655,609,30,-630,.4,-2,.4,-10,.4,632,44,-83,43,-41,0,44,-43,1,216,-808,.41,1,.4,-3,.4,168.3,.2,588,.2,-584,292.3,590,-4,6,-4,.5,2,.2,-4,0,6,-593,374.5,4,122.3,73.2,587,.2,-585,.2,-2,326.5,312.4,16.2,592,1,63,-657,13.3,301.3,1,-2,1,2,260.3,-2,3,.3,-4,4,-5,0,5,-5,2,-1,.3,2.1,6,-6,0,-2.2,-4,9,118.3,4,-4,9.1,18.71,-3,.3,8,-5,0,1,-4,-1,1.2,7,166.3,10.1,20.71,-6,-1,2,5,-5,5,-2,-7,0,3,9.1,18.71,2,-1,0,613,-610,393.3,-3,1,-2,9,0,-7,13.1,26.52,-8,-1,-2.2,0,-3,4.1,8.7,5,0,-8,6,607,-20,-591,-1,636,-48,-571,-20,3,1,2,-2,6,-4,0,-1,234.2},{1.2,26,1,2,12,1,2,19,2,6,10,4,2,11,14,2,1.2,7,2,20,1.2,4,2.1,1.92,10,4.2,1.5,8.3,1.32,4.3,16.4,1.8,18.2,4,1.71,4,1.02,7,1.11,4,1.83,24.2,9,1,3,1.91,2,1.9,3,1.7,46.2,2,408,12,5,6,3,1,-4.2,5,52,42,2,-4.2,9,4,42,1,10,1,3,2,4,8,2,4,2,1.3,6,1.2,16,77.2,1.91,22,1.2,27,8.2,1.91,4,1.9,16,1.4,6,1.91,6,1.4,21,1.421,2,1,57.3,1,3,1,3,1.32,13,61.2,1,3,4.1,1,71.2,3,1.6,28.2,2.1,6,1.9,21,1.4,66,1.4,46.2,11,12.4,1.4,26,22.2,2.1,1.2,8,6.1,6.5,8.1,58.2,8.6,23,10.3,24.6,26.4,12.2,18,10.5,63,1,84.3,7,2,5,2,1.3,3,-2.3,-3.2,7,96.4,31,1.3,134.2,34,2,7,3,17.2,33.4,6.1,12.01,230.3,3,44.2,2,1.4,7.1,14.31,1.3,-2.2,1.2,-2.2,4.1,8.1,1,2,4,2,1.7,3,2,7.1,14.1,53.3,2.1,4.3,8.2,4,2,1.6,14,4,91.2,2,-3.2,14,1.2}},{{1,3},{5,-3,.5,9,.2,-9,-1,3,592,0,-594,.8,594,0,-2,.2,-591,.2,611,-2,3,-610,.5,609,5.2,-612,10.4,-612,.5,5,.2,606,7.2,187,-145,146,-802,.2,613,8.2,-6,-13,-2,-591,606,-605,2,-2,598,-597,-4,651,-649,.991,-2,0,597,-2,-592,5.2,-1,593,0,3,-593,.2,588,0,3,-3,-590,19,-14,590,-5,-589,18,.11,-18,.5,788,-196,38,44,0,-27,2,177,-24,25,-204,180,-184,-25,1,5,-4,-597,670,-77,38,17,-19,-37,1,41.2,610,-16,-594,0,3,0,-3,-1,0,595,61,0,135,-135,0,178,-223,180,5.2,8.2,-654,0,649,13,-70,-1,2,-4,6,.2,-594,.2,-2,.5,650,12.2,1,-4,5,-593,146.2,1,-597,595,1,0,-1,1,0,-596,.4,19,.4,-19,596,0,5,0,-4,23,-25,0,39,-38,-596,0,-1,0,1,0,627,-29,10,-607,.2,1,.2,-1,0,-1,.41,592,.4,2,.4,-595,.9,637,25,-43,27,13,3,-45,30,-1,13,-658,.4,616,.4,-23,.4,-589,.4,589,.4,-593,.4,593,.4,27,191,43,-251,20,-622,.5,-1,607,39,-646,.5,594,0,1,.2,1,260,-176,-679,593,-588,-2,592,-594,-1,.5,75,.5,-76,594,10,11,20,-31,3.1,6.5,-634,0,628,-628,591,-591,5.1,10.9,-592,603,-603,0,3.1,6.5,593,31,-623,614,-23,1,5.1,10.9,3,.3,22,0,-606,-11,.2,596,-2,0,26,-25,-595,616,-23,-593,624,-28,-587,587,-3,1,-4,0,4,-4,5,250.3,3,-8,2,211.2},{3,1.9,3,10,12,2,15,17,9,2,9,-2.3,1,4,7,2,78,1.2,19,1.2,61,1.2,4,1.2,40,1.5,28,1.5,10,8.3,2.1,7,1.2,13,6.5,5,4,14,7,3,2,8,-2.2,4,3,1,203,1.991,4,2,3,2,1.2,2,1,-2.2,2.1,1.3,3,1,3,2,3,1,2,6,2,1.11,7,1.92,38,17,2,4,1,2,36,1,2,1,2,12,5.4,24.3,1.2,4.3,3,1,8,1,12,69.5,21,1.5,4,2.1,1.2,27,12.2,1.11,24,1.2,11,1.4,6,1.4,10,21,5.3,155,1,68.3,1,32,90.4,3.1,7,1,13,1.4,26,1.91,21,1.42,6,1.43,206,60.2,1.2,8,4.3,2.1,53,8.3,80,2,1,-3.2,6,1,31,41,1.5,25,1.5,12,16,4,6,-5.2,2.1,4.3,5,8,6,1,6,1,-6.2,4.1,8.7,3,-2.2,9,2.1,4.1,4,9,2,-3.2,4.1,8.1,-6.4,1,3,6,-3.2,1.6,2,1,78.2,12,2,1,6,1.8,136.2}},{{1,4},{11,.5,-10,4,-2,599,-599,-1,0,596,-6,4,1,0,1,-584,0,623,-635,0,4,.2,-4,.2,1,.2,591,.2,-592,.2,606,.2,-605,.2,-1,.2,592,.2,-591,6.2,1,2.1,-1,1.2,0,-2,624,-624,0,1,19.3,2,0,-2,2,-3,1,650,-648,7.2,.6,1,.5,-2,.71,1,.6,592,1,42,57.2,635,0,-634,0,602,228,-237,-593,0,44.3,.2,3.2,.3,606,0,-606,73.3,2.1,-2,.2,593,7,-8,-592,.5,57.3,.8,2,.8,-3,.4,1,.4,2,.9,592,2,-2,1,-1,0,-594,.2,595,-1,2,-1,3.2,-2,2,27,5,17,33,116,-793,.91,-2,.4,10,.4,-9,.71,596,0,-596,8,.2,-7,0,675,-676,592,53.2,594,-594,.21,592,-593,1,594,-2,4.1,8.7,-4,-590,590,2.1,4.3,27.2,2.1,4.1,161.2,2,-592,2,-4,.2,597,-597,2,.3,-1,.5,-1,.2,664,-14,0},{4,1.8,3,22,2,15,17,9,2,9,-2.3,1,4,7,2,99,1.2,61,1.2,49,1.2,28,1.5,10,1.2,19,1.2,13,1.2,4,1.2,7,1.2,5,4,24,21,407,2,3,2,1.2,2,1,-2.2,2.1,1.3,3,1,3,2,3,1,2,6,2,1.11,7,2.1,1.11,38,17,2,4,1,2,36,1,2,1,2,12,25.6,1.2,4.3,3,1,8,1,12,61.5,21,1.5,4,2.1,1.2,27,12.2,1.11,24,1.2,11,1.4,6,1.4,31,4.3,155,1,68.3,1,32,-2.2,4,3,1,3.1,7,1,13,1.4,26,1.91,21,1.91,41,1.4,221,1.2,8,1.2,53,1.2,90,2,1,13,31,41,1.5,42,16,4,6,-5.2,2.1,4.3,5,8,6,1,6,7,4.1,8.7,4,2,11,2.1,4.3,24,2,19,2.1,4.3,30,1,3,9,5,1.3,9,12,2,1,6,1.8,110.2}},{{3,1},{594,2,-1,-591,.2,-1,.2,4,.2,-2,.8,6.2,1,.2,-3,.2,8,.2,-8,8.2,0,1,9,-6,-3,5,-7,0,1,-1,11,2,596,-14,1,-595,589,-581,-9,2,-2,.2,9,-7,.01,-1,.9,38.2,7,.9,-7,.91,595,.2,1,.3,5,.2,-4,6.3,-598,.2,6,.91,-5,.91,255,0,70,.3,18,70.3,5,.3,4.2,2,-354,.91,-3,-2,5,-4,4,.4,23.2,8,.4,-8,.41,2,.7,58.2,2,.5,3,.2,589,0,1,-593,.2,-2,9,-7,-1,2,3,0,-4,-2,2,2.1,4.3,5,589,-594,3.1,6.1,.8,5,54.3,3.1,6.5,3,0,-3,3.1,6.1,.3,13,-5,-8},{29,88,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,10,1.2,19,4.2,8,1,2,1,2,6,3,1,-3.2,25.2,1,6,12.3,3,560,48,1,8,1,17,54,1.9,35,1.9,65,1.2,26,1.9,36,1.911,6,2,36,2,56,1.4,11,1.9,2.1,71,1.4,16,6.2,4.2,1.4,61,1.2,33,1.2,8,1.2,18,1.2,73,1.2,3,1.2,53,1.2,63,7,18,16,7,40,1,76,1,15,2.1,4.1,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,1.2,4,2.1,4.1,7,3,1,3,16,5}},{{3,2},{3,.2,630,.2,-38,.2,77,.2,-76,.2,-1,.2,13,.2,-12,.2,12,4.3,-580,.2,578,.5,1,13,-13,1,-2,-592,593,-593,593,2,-594,-1,0,593,-592,649,-54,-2,-578,0,578,-2,2,37.2,-1,.3,2,0,1,-1,0,-4,.3,5,.2,1,-596,.2,594,.2,9.3,.5,1,13.3,-4,.2,6.2,-598,.22,595,6.3,12.7,.2,606,.2,-16,.3,44,.2,-33,.2,182,.3,-783,.2,5,.4,2,.9,2,.4,585,46.4,.3,1,.2,4.2,-4,0,-5,1,7,-8,-2,.3,6,-596,.3,1,668,-39,-19,56,-662,588,.4,13,.4,18,.4,-31,.9,5,38,-20,6,23,-55,0,6,0,1,-5,0,-2,-590,.2,592,0,2,-2,3.1,0,2,11.2,588,8.4,8,-8,2,37,0,-38,-591,591,2.1,4.3,592,-587,585,2,3.1,6.5,1,-1,2.1,4.1,2,-1,3.1,6.1,-1,0,1,21,-22,3.1,6.5,-613,0,589,10,269,-869},{29,88,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,10,1.2,19,4.2,8,1,2,1,2,6,3,1,-3.2,25.2,1,6,12.3,3,560,48,1,8,1,17,54,1.9,35,1.9,65,1.2,26,1.9,36,1.911,6,2,36,2,56,1.4,11,1.9,2.1,71,1.4,16,6.2,4.2,1.4,61,1.2,33,1.2,8,1.2,18,1.2,73,1.2,3,1.2,53,1.2,63,7,18,16,7,40,1,76,1,15,2.1,4.1,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,1.2,4,2.1,4.1,7,3,1,3,16,5}},{{3,3},{2,.5,1,.2,4,.2,636,.2,-639,.2,3,.5,616,.8,-614,2,-4,0,4,-2,-6,2,-1,2,-2,.2,-1,0,1,-3,6,4,-4,.2,3,0,-1,.4,2,.4,-4,.4,4,.4,-2,8.5,2,.9,6.1,12.1,6.2,-10,.91,6,14.6,-2,4,2,18.2,42.2,6,.9,-10,.4,10,.9,10.2,-1,72.2,.2,1,.2,3,.2,-2,.5,-3,0,-2,5,0,-4,0,8,.7,-5,5,0,3.1,6.1,5,-7,7,2.1,4.3,-3,20.11,-5,.7,-1,0,2,-6,6},{29,88,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,31,1.5,10,8,1,3,2,6,3,1,-3.2,1.2,5,6,1,2,1,3,560,48,1,8,1,17,54,1.9,35,1.9,93,1.9,36,1.911,6,2,36,2,56,1.4,11,1.4,16,1.9,71,4.3,31,1.4,61,1.2,33,1.2,8,1.2,18,1.2,73,1.2,58,1.2,63,7,18,16,7,40,1,76,1,15,2.1,4.1,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,96.2,1,5,1,5,1,11,3,4,16,5}},{{2,4},{2,.8,4,.5,-1,.2,1,.2,4.3,8.2,.8,-2,.5,2,12.3,-3,.2,3,16.3,4,.2,-4,12.7,4.2,2,.71,16.2,2.1,2,32.2,4.2,.5,32.8,28.9,22.3,3,60.2,1,-1,-3,4,-4,4,10,-15,6,4,-9,9,0,-6,0,24.2,15,-16,2,37.2,3,-4,0,4,-3,3,6,-9,3,58.3,20.3,5,.4,2,.9,2,.4,-9,.4,15,.4,-14,.91,-2,.4,6,14.6,.93,22.7,.91,1,79.3,.7,-1,0,3,.3,-3,2,-2,3,0,-1,2,.8,1,.4,-3,2.1,.4,2,.41,592,.9,-590,.4,47.2,163.4,8,.2,-9,.5,4,123.3,-4,.2,2,.2,-2,14.3,5,.2,-11,.5,-3,193.3,4,.2,6,.2,-6,.5,617,-618,-2,4,0,-1,-2,2,0,3.2,5.3,1,0,-1,0,-3,.8,171.3,1,.6,3.1,6.5,68.2,1,28.3,18.2,7,-6,0,10.1,20.91,40.3,3.1,6.1,.5,6,-7,1,.6,4.1,8.7,35.3,3.1,6.1,0,2,-1,590,-593,8.2,1,593,-587,-3,-2,592},{43,1,29,14,2,27,1.2,9,20,1.2,10,1.8,4,1.5,4,1.8,19,1.2,4,1.2,7,4.2,12.2,8.3,4.1,6.5,24.2,2.1,24.4,34.4,1.41,32.4,2.1,12.3,36.5,10.2,12,1,3,1,2,1,2,1,3,2,1.2,-2.2,3,6,-3.2,1,6,8.2,410,26,1,13,52,44,-4.2,9,46,1,10,1,5,4,8,2,4,2,1.3,24,42.2,1.91,92,1.9,26,1.91,31,1.48,21,1.91,7,10,1,3,4,1.81,4,14,1.2,-3.2,1.2,3,11,32,1.9,21,1.4,66,1.4,16,1.91,11,1.4,6,1.4,41,16.2,1.2,13,4.3,8,4.3,2.1,12.4,18,12.7,23,24.5,22.6,12.2,22.2,8.4,64,-3.2,7,2,5,9.3,-2.3,3,10,2,1,3,32,1.3,22,1.2,34,2,10,1.3,3,2,3,1,4,6.1,12.01,1.5,4,1,4,2,42.2,1.4,7.1,14.31,1,4,3,1,-2.2,5.1,10.1,3,4,206.3,2,57.3,8.1,16.51,54.2,240.4,3.1,1,3,11,1,2,1.3,14,6,11.3,3}},{{2,5},{3,.6,-1,.2,9,-8,0,-1,0,2,.4,1,.9,1,.4,-4,.11,1,.2,6.2,10.4,-2,6.5,-3,.4,8,.21,-5,.2,5,.5,-7,.5,1,.2,-3,.2,4,4.2,591,.3,-591,1,3,0,-6},{73,14,2,27,1.2,9,785,1,13,52,48,4,55,1,72,1.91,92,1.9,76,1.42,41,1.91,157,1.4,116,1.9,81,1.2,18,1.2,8,1.2,3,2.1,4.3,53,1.2,23,1.2,78,1.2,220,80,-20.3,182,1,3,1,22}},{{1,5},{8,-6,0,592,0,-588,-4,.2,592,-591,-1,0,1,0,594,-595,1,7.3,-1,1,.6,-2,.11,7,-2,591,6,-602,0,3,-1,-1,3,1,-4,.5,594,-4,5,-594,.8,595,5,-4,-597,.2,1,.2,-1,.7,1,.4,4.3,-1,1,3,.4,5,.41,583,.4,8,0,197,0,-191,-14,.2,14,-12,-594,.5,60.3,-2.2,590,12,-12,0,43.2},{80,2,13,2,1,4,783,3,2,1,6,2,1,-2.2,1.3,4,3,6,2,6,20,1.11,7,1.5,61,6,39,1,2,1,23,4,1,3,6,28,1.2,7,1.2,21,1.2,16,1.2,27,1.2,4,1.11,24,1.2,11,1.4,41,1.4,6,1.4,163,1,43,1,7,1,21,1.4,36,1.9,21,1.91,276,1.2,53,1.2,90,3,132,328,14,1.3,23,7,1.8}},{{1,6},{2,.2,595,2,-597,2,-2,1,-1,8.2,-1,-593,-1,.9,1.2,0,1,0,1,-4,7,0,-4,0,589,.4,-592,.2,2,.2,23.2,25.3,4.3,-593,4.2,0,1,3.1,-1,.3,6.4,.2,2.1,2,-2,2,.01,-4,.9,2,.2,-3,.2,593,-590,-2,.5,1,-1,.5},{80,2,13,2,1,787,3,2,1,6,2,1,-2.2,1,2,4,9,2,26,1.5,13,1.5,61,45,1,2,1,23,4,1,3,6,28,1.2,7,1.2,21,1.2,16,1.2,27,1.2,4,1.5,4,1.2,24,1.2,56,1.4,6,1.4,163,1,43,1,7,1,61,1.9,31,1.9,276,1.2,53,1.2,90,3,132,344,1,23,7,1.8}},{{1,7},{1,0,93,-92,6,-6,131,-39,39,-39,524,169,-784,825,-212,-612,-2,0,11,0,81,.2,-86,.2,-6,.2,131,.2,-39,.2,39,.4,-39,.4,-90,.11,593,-503,.2},{97,1,790,2,1,14,2,4,9,2,26,1.5,124,1,2,1,74,1.2,21,1.2,54,1.2,4,1.2,24,1.2,56,1.4,6,1.4,317,1.9,902,1,23,7,1.2}},{{1,8},{1,0,1.2,-2,.3,1,.2,2.1,-1,.11},{97,1,793,14,172,1,2,1,97,1.2,54,1.2,419,1.9,902,1}},{{1,9},{1,.3},{97,1,979,1}},{{3,4},{2,0,3,.2,1,.2,-4,4.2,.5,2,.5,-2,.2,-1,2.1,.2,4,.2,-2,2,-1,7,-6,-4,3,17,-19,-1,4,-4,0,2,-1,0,1,.93,-1,.91,3,.91,-3,.91,1,30.2,.9,1,.02,2,.2,-3,.2,3,36.2,-1,4,-3,0,-1,0,3,.3,6.2,3,3.1,6.1,-2,.7,-1,3,0,-3,3.1,6.4,71.3,2.1,4.3,1,-2},{117,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,31,1.5,10,8,1,3,2,6,3,-4.2,1,12,-3.2,560,48,1,8,1,17,98,1.9,93,1.9,36,1.91,21,1.93,21,1.91,6,38,2,56,1.4,111,1.4,16,1.9,31,1.4,61,1.2,43,1.2,18,1.2,73,1.2,58,1.2,63,7,18,16,7,40,1,76,-16.4,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,1.2,5,1,5,1,5,1,45.2}},{{3,5},{3,0},{117,1}},{{4,1},{3,.2,-1,.2,2,-2,2,5,-2,-3,.9,593,.2,1,.3,5,.2,-4,6.3,-598,4.2,.9,2,.9,-1,599,.4,-593,.5,608,.3,-15},{381,1.2,34,1.2,10,24,3,9,11,736,1.9,218,1.93,46,171,1.4,21,1.4,450,352,-6.3,30}},{{4,2},{608,.5,-14,-592,593,1,-1,1,0,-4,.3,5,.2,1,-597,.91,1,.91,592,14,.3,-6,.5,31,-631,.3,593},{381,1.2,34,1.2,10,24,3,9,11,736,1.9,218,1.93,46,171,1.4,21,1.4,450,352,-6.3,30}},{{4,3},{623,.5,-614,-3,-2,5,-4,2,.4,4,.4,-4,.4,2,.9,8.2,6.5,.51,-8,1,.3,7},{381,1.2,34,1.2,10,24,3,9,11,736,1.9,218,1.93,46,171,1.4,21,1.4,450,352,-6.3,30}},{{4,4},{3,.5,2,0,-1,-2,1,.9,1,.91,-1,-1,.5},{381,1.2,34,1.2,10,27,9,11,736,1.9,238,1.91,46,196,1.4,450}},{{2,6},{596,-590,634,-48,30,-25,1,-592,.81,-3,.3,1,0,-2},{913,65,296,1.4,437,1.9,81,1.2,28,1.2,3,1.2,470,-20.3,186,1,22}},{{2,7},{2,.5,2,.3,4},{913,361,1.4,1034,-20.3,209}},{{1,10},{1,0},{1077,1}},{{2,8},{594,.3,1},{2312,-20.3,209}},{{2,9},{3,.3,-1},{2312,-20.3,209}}}, - {353,.62,2,-276,.91,51,.91,1,2.1,4.1,8.1,.91,215,.14,10,-10,.95,14,.35,-12,.531,-2,.21}, - {{{1,1},{1,.5162}},{{1,2},{139,1.11,0,1.2,2.1,2,6.2,1.01,0,1.22,0,1.4,0,1.41,0,2,1.9,17.3,1.4,.2,11.2,1.6,0,-82,1,-24,3,1,11,-1,-9,58,1,-124,.99,51,.99,1,2.1,.99,268,-2.51,-194,4,-79,26,2,-30,52,-28,30,2,23,4,-57,-28,6,46,-57,80,-29,-26,-27,47,27,-84,94,-53,14,10,-38,50,-26,-36,-3,70,-92,.11,-51,.5,52,.5,1,.5,-53,6.3,-52,.5,304,1,96.4,4.1,8.7,-15,1,-1,1,15,1.7,0,1.42,0,-238,0,191,51,0,-51,2,0,-160,0,158,.5,-191,12.7,-2,-158,13.2,.4,49,51.4,1.4,0,-126,1,-165,161,0,-110,118,0,-239,0,321,.2,2,2.1,4.1,8.1,.2,6,10.9,-194,.2,4,.2,-79,.2,-2,.2,52,.2,-28,.2,30,16.3,23,16.3,-57,.2,24,4.2,.4,80,.4,-29,.4,-26,.4,-27,.4,47,.4,27,.4,10,.4,-53,.4,14,6.3,-38,.4,50,20.3,-189,.4,2,.4,1,.4,-1,.882,567,15,1,-258,169.3,2.1,4.1,4.3,.11,10.8,-120,1,19,1,-38,1,-50,1,83,1,-82,1,66,1,9,1,-68,1,5,1,56,1,-3,1,190,97.3,-233,4.3,-32,129.3,-23,.2,450,1},{1.31,128,1.833,499,1,60,4,52,1.33,30,1.91,25,2.1,1.91,39,1.91,36,1.502,6,1.4,16,1.4,36,1.4,6.2,26,6.3,8.4,2.1,4.1,4,1,4,1,4,1.6,6.1,6.5,4.1,8.1,22.1,34.22,40.9,2,1.8,2.1,4.1,4.3,1.41,2,1.05,99,1.253}},{{2,1},{578,0,-1,.2,-576,583,0,-4,.2,2,.2,-3,0,2,0,2,.5,6.2},{20,1,3,1.2,3,11,1.4,9,1.2,24,1,21,1,13,1.3,2113,1.3}},{{2,2},{145,163,-159,160,0,-157,12,148,1.2,0,-138,139,0,-115,118,-2.2,-89,91,.2,-91,91,-11,1},{20,1,3,1.2,3,11,1.4,9,1.2,24,1,21,1,13,1.3,2113,1.3}},{{3,1},{585,0},{101,1}},{{3,2},{321,2},{101,1}}}, + {{{1,1},{527,0,-158,146,.2,12,.2,-12,-49,-97,158,-28,-33,33,0,7,-4,2,0,-127,2,147,-20,0,20,-27,0,27,-20,20,2.1,-27,5,-18,40,0,-20,-27,27,.2,-6,0,-123,-8,157,8.2,-20,-2,.2,22,.2,7.2,9.3,29.2,-2,0,22,-20,-6,0,-1,-33,-89,25.2,.3,17.2,-60,0,38,.2,-2,24,27.4,.2,-20,-31,31,0,-7,.2,24.4,.8,-60,60,-27,.2,53.5,23.2,-57,57,-46,0,46,0,88.2,7,0,-2,-4,26,-60,3,.2,58,.71,-61,.2,61,.5,4.3,.8,-61,.5,61,.2,12.7,.11,-58,24.2,.32,20.5,4.2,20.5,-54,.2,54,.5,-13,.2,13,12.4,20.4,.5,-49,172.2,10.3,18.5,.8,-97,.2,158,6.2,60.3,-52,.2,52,60.4,36.4,4.3,22.2,97,.2,48,50.6,18.6,94.6,38.3,-9,58.3,-25,25,0,-25,-36,61,4.1,-25,.3,4.2,249.3,.3,9.2,25,32.2,61,0,35.3,-61,-97,97,12,-12,0,11.3,4.2,-25,13,-49,8.3,.99,-97,.99,97,4.3,130,7,-37,5,0,32,0,20,-52,0,-5,0,30,-25,-5,5,32,-7,-7,14,-5,-2,.2,-25,32,-3,-34,37,0,-32,25,-14,-13,35,-40,1.2,-24,21,33,0,-33,12,-6,-4,0,-2,17,-17,48,.5,24,.5,-63,.5,-7,.5,70,.5,-60,.5,60,.5,-39,.5,39,.5,-36,.5,-19,.2,1,0,1,42,-58,57,317.2,.2,3,.2,4,.2,-40,25.2,10.4,0,4,362.3,288.2,-7,-30,57,.5,-20,.2,20,.5,-27,8.2,294.2,16.2,0,8.2,-2,59,.2,-59,3.2,34.2,1,.2,6,44.2,.3,44.4,10.6,9,1,0,30,4,0,16,-56,23,1.2,4,44.2,-30,1,-1,-11,-101,83,2,-2,14,-14,.01,8,-8,.01,-1,186.3,-52,52,189.3,33,.2,7,.2,-37,.2,5,.5,32,.5,20,245.3,-8,.91,3,.2,30,172.2,.2,-5,.2,5,.2,32,.2,-7,2.1,.2,-26,.91,33,263.2,12.3,-3,.2,-34,.2,37,84.2,14.2,.2,-14,.4,-13,.4,35,.4,-40,.4,2,1.2,-5,0,4,0,1,0,1,-27,.4,21,23.2,.9,-33,.4,12,0,1,49.2,.4,-4,.9,-2,.001,4,.81,32,311.5,36,2.1,8.2,303.2,81.2,25,-25,0,11.3,.2,298.2,7.2,16.2,20.3,18.2,15.2,25,25.2,11.3,36,.2,-36,1,-1,24.4,36,3.2,0,24.3,6.2,38.3,47.4,7.5,36.3,.4,3.1,66,.4,-91,.4,25,.9,6.2,-66,13.2,.4,36,.4,-36,.4,18.2,-58,.4,58,22.3,16.2,26.3,.9,26.2,-49,.4,115,34.4,.91,30.2,44.4,-66,.92,8.2,127,28.5,4.1,-127,12.7,-91,.2,91,0,-66,.2,66,4.1,.6,8.7,12.9,28.8,8.1,-127,.2,127,16.9,4.1,16.7,56.9,16.4,24.4,-126,.2,126,4.1,76.8,44.9,52.11,28.31,112.51,136.21,36.6,91,.8,-66,66,3.1,.8,9.1,-126,1,-1,-1,3.2,0,1,14,46,-61,49,12,0,267.2,-60,-98,158,5.2,704.2,61,-151,-7,160,-3,-150,4.3,67,56.2,59.3,66,.5,-66,1,-1,-61,16,0,-15,103,-104,0,13,21,-123,.5,98,.5,25,.5,-2,.5,-30,1.3,-5,0,21,0,2,1.2,0,-42,-80,.5,1,-1,2,-2,3,-3,4,-4,.11,97,8.2,6.2,.71,41,.01,-19,.01,11,1,26,905.3,60,880.2,2,926.2,-129,943.3,7,0,-7,0,27,.3,1,101.3,3.2,406.3,440.3,-58,6,-9,12.3,15.1,30.82,434.3,456.2,810.2,0,15.3,0,-25,-33,-3,7.3,18.1,36.53,850.3,541.4,796.2,16.6,13.1,26.42,0,58,938.5,25,-58,33,-36,9,-9,3,-3,148.5,3,20.1,40.93,2,0,9,-11,36,25,-59,6.1,12.11,241.4,127,-66,4.1,728.3,3.2,66,7.3,19.3,3,63,-91,25,0,12.4,4.1,.2,66,-127,30.2,25.5,36,91,-119,843.3,37,847.5,-32,.2,-8,.2,60,0}},{{1,2},{592,.637,5,1,6,-5,-7,.9,7,.4,-7,.43,47,.4,-47,.711,5,.2,-595,.2,590,.2,6.2,-5,.344},{14,1.621,340,1.515,3,1.85,2,1.2,2,1.05,35,1.82,21,1.32,2.1,21,1.73,21,1.43,212,1.4,16,1.4,36,1.4,6,1.4,26,6.3,8.4,2.1,4.1,4,1,4,1,4,1.6,6.1,6.5,4.1,8.1,22.1,34.22,40.9,2,1.8,2.1,4.1,4.1,7,30,1,2,1,2,1.5,11,1.131,309,4,-8.2,-4.2,6,-2.2,6,1.32}},{{2,1},{369,145,0,-12,-12.2,3.2,0,-64,64,0,12,-12,12,9.2,12,-27,15,.2,14.2,24,-10,.2,-147,.5,157,.2,6.3,.2,6,.2,-6,.2,97,.2,48,.8,-48,4.2,.5,-132,.2,132,.5,-144,.2,50.2,-1,1,0,-82,81,-145,146,-146,97,-35,0,-61,7,5,-12,.3,113,-114,8,69,-67,-9,98,-1,-85,120,.5,-19,.2,1,0,1,29,.2,-83,83,-138,118,1.3,-123,111,-101,131,0,74,-74,-146,0,1,.2,12,85.2,.5,-1,.91,8.2,97,.4,1,2.1,4.3,13,.4,-114,.4,8,24.3,68,.4,-67,1.2,-12,.12,1,.4,98,1.4,-5,.4,-84,.4,-14,.99,8,-8,8,0,56,0,-64,1,63,4.2,95.2,64,4.1,82,-1,-48,.4,36,48.3,-49,.4,-89,.4,-8,.4,146,.9,-133,.9,133,.4,-82,.4,82,.4,-138,.4,138,8.2,.2,33,.2,49,.2,-138,.5,-8,.2,64,.2,-51,.2,1,158.2,.8,-30,.2,-116,.2,97,49,-49,1,48,0,-49,49,-48,-98,.51,99,2,-12,.7,56,0,-145,81,64,-48,.3,-97,145,8.2,3.1,6.4,.32,-138,138,0,3.1,6.4,139,-138,-8,100,46,.3,106.4,-145,.2},{17,-2.2,8,4,2,6,2,1,6,2,5,-2.3,6,-8.2,15,10.3,8,1,2,48,1.2,25,1.2,16,1.2,4,1.5,10,1.2,34,1.2,7,1.2,22,4.3,8.4,18.2,13,1.8,16,1.5,4,1.2,15,1,3,2,5,2,-3.2,1,4,1,5,1,7,1,407,1,11,5,6,3,1,2,47.2,3,1.2,58,1.11,32,13,2,19,37,3,2,1,4,1.4,2,1,17,77.4,54.2,1.5,45,1.22,60.3,1.91,4,1.9,6,1.41,6,1.91,6,1.4,11,1.47,21,1.34,45.2,17,1.9,7,3,2,41,1.4,19.3,1.9,21,1.4,66,1.4,16,1.92,11,1.4,41,95.2,1.2,67.2,2.1,28,6.1,4.3,53,10.5,23,1.2,18,1.2,73,1,2,1,3,-17.2,-7.2,43,1.4,-2.4,5,1.6,7,2,17,1.7,23,6,1.2,4,11,-16.3,11,-2.2,16,2.1,4.3,12,3,-2.2,6,3.1,6.5,15,-21.3,12,1,3,45.3,3.1,3.1,7,3,1,4,59.3,11,5,1.2,5,20,1.2}},{{2,2},{592,.444},{168,1.2,25,1.2,16,1.2,4,1.5,10,1.2,34,1.2,7,1.2,22,4.3,8.4,18.2,13,1.8,16,1.5,4,1.2,15,1,3,2,5,2,-3.2,1,4,1,5,1,7,1,582,53,1,17,6,2,1,79,1.91,25,1.91,39,1.91,36,1.95,21,1.34,2,1.2,17,1.9,7,3,2,41,1.4,6,1.41,6,1.9,21,1.4,66,1.4,16,1.92,11,1.4,41,60.2,1.2,3,2.1,1.2,28,6.1,4.3,53,10.5,23,1.2,18,1.2,73,1,2,1,3,-17.2,-7.2,145,-16.3,11,-2.2,16,2.1,4.3,12,3,-2.2,6,3.1,6.5,15,-21.3,12,1,3,32.3,3.1,3.1,7,3,1,4,46.3,11,5,1.2,5}},{{3,1},{515,.2,-146,13,133,2,-135,0,1,-6,.7,211,-73,0,-146,.6,64,82},{303,1.2,148,26,636,17,172,1.2,447,1.4,221,1.2,123,7,34,59,1.2,-2.4,390,28}},{{3,2},{592,.91},{303,1.2,148,26,636,17,621,1.4,221,1.2,123,7,34,459,28}},{{4,1},{369,.5},{2204,1,-2.4}}}, + {{{1,1},{2,0,4,8,.5,-4,-5,0,-3,125,-49,-76,1,124,.3,-102,0,102,-116,-9,125,0,-124,124,0,-125,.4,78,-78,79,46,.3,-125,13.2,20.2,-23,26.2,.2,-46,-79,.2,11.2,-125,1,-1,.5,6.3,81,-81,1,22,21.2,.3,87,-87,87,-86,51.2,-125,.2,15.2,88,37,-38,-87,82,0,43,.2,-42,-60,64.2,.3,42.2,79,-79,43.4,.2,-1,1,-1,.6,9.3,.3,7.2,.62,13.3,.5,4.3,.8,1,.5,8,.2,-8,12.6,.5,12,.2,-12,.92,20.5,4.2,.2,8.4,5,.2,-5,.2,4,.2,-4,12.5,24.7,.8,4,14.3,-4,.8,22,.2,-23,8.2,.5,50.2,19,.2,-14,32.3,46.4,20,.2,-20,.2,3,.2,-3,4.3,48.4,54.4,22.3,.5,8.4,18,.2,-19,18.5,-5,.3,5,79.2,43,-43,1,24.3,-1,.4,3.2,42,-42,23,-22,.2,56,8,-65,0,5,-5,65,5.2,1,155.3,1,3,-3,64,-64,8,-9,0,1,23,-24,0,3,46,-49,0,98,.99,1,2.1,4.1,49.3,2,-2,0,3.2,2,1.2,-4,5,-4,11.3,2,0,-2,7,-7,7,-4,5,-6,-2,0,1.2,3.2,9,-9,.2,15,-1,-12,-2,2,-2,.4,9,-9,-7,.11,26,.5,-10,.11,11,.5,-11,.5,9,.5,-25,.5,26,.11,-121,.63,250.2,.5,1,-1,.8,281.2,76,-76,.2,83,-78,-5,14.2,.33,125,-33,0,33,-29,0,-96,21,104,264.2,125,.7,-97,-6,-22,14,-9,-5,5,-5,0,27,-22,6.2,22,0,-27,8.5,14.5,0,1,0,-1,.2,21,0,77,0,4,271.5,2,.2,-2,.5,4.2,-79,.91,80,255.4,.2,5,223.5,20.3,.2,-77,.91,77,.2,7,.2,-7,4.3,22.4,-6,18.5,79,6.2,.9,9,.4,-9,.41,15,.4,-92,12.2,.4,-2,.4,2,4.2,.91,-77,.911,-25,249.5,232.5,-1,0,19,0,-19,0,21,0,-21,1,8.2,-20,105.4,4.1,.3,113.4,107.3,283.3,40.3,5,222.3,303.3,21,-20,-1,20,35.2,7.1,58.8,319.3,591,.4,-528,.4,-63,.9,6.2,-591,.4,1,.4,18,.9,52,.9,-71,18.3,12.2,4.2,-541,16.3,5,.4,19,.4,-5,.4,521,.4,-574,.4,22,.4,33,16.3,-25,4.3,-2,.4,544,32.2,.92,8.2,590,38.5,4.1,-590,12.8,.2,591,0,4.1,4.3,.6,12.1,12.11,8.1,0,-590,.2,590,16.1,44.31,32.8,-547,.2,547,4.1,12.5,-586,.2,586,0,-532,.2,532,0,-571,.2,571,68.12,112.61,-533,.2,533,.6,-582,.2,582,32.41,591,.8,3.1,6.1,9.7,1,26,-26,4,15,-20,0,14,-14,1,3,-4,573.4,3,1,-4,708.3,-1,23,794.3,777.3,1,100.3,55.4,.5,-591,39.2,335.3,617.2,355.3,23,.5,-23,.71,2,.5,91,.5,-16,.41,-74,.01,74,.12,17,.01,3,.01,-97,.4,535.2,1,-1,.3,52.4,386.5,541.2,.2,607.3,78.3,5,-5,82.3,4,515.3,391.3,16.1,32.03,.3,21,-21,.2,1,0,11,-7,23.2,10.2,-12,-8,15.1,30.1,0,27,-28,5,-4,16,-16,484.3,.3,1,11.1,22.02,745.3,5.2,759.3,180.3,8.2,69.2,127.3,8,78.2,20.1,40.1,20.4,22.4,6.1,12.9,0,4,0,-4,590,-528,-63,1,590,367.2,58,-59,0,45.2,591,-532,-4,-5,1,5,0,14,521,-574,22,-39,591,-543,1,-2,544,24.2,-1,415.2,-590,31.2,591,-530,-60,51,1,-53,591,-489,.2,2,.8,-2,708.3,13,.2,-116,0}},{{1,2},{4,.7,83,-83,83,0,3.2,.2,-8,0,-75,83,-1,0,-72,.2,-10,.2,10,.2,-9,.2,9,4.1,12.6,.5,-1,.5,1,.2,-3,.2,2,.2,6.2,18.7,.2,20,.2,-11,32.9,4.2,24.6,6.2,-1,4.2,.8,10.5,.5,62.3,10.5,30.3,.5,34.4,52.4,30.2,88.6,42.6,10,.3,-10,10,0,-10,1,9,-10,0,1,-1,10,11.2,53,-53,-12,65,-63,63,-10,-53,11.2,0,10,-9,9,30,-40,6.2,-11,2,.2,68,-69,83,0,-82,120,0,-121,1,9,56.2,71,.95,-72,.4,30,-30,0,67.2,12,-21,.3,12,-12,107.4,55.2,12.2,-12,12.3,50.2,24.4,75.2,.4,-3,.9,71,.9,-68,.4,-1,.7,69,.8,-34,.5,-35,101.3,34,.2,31,.2,-65,.5,42.3,.5,9,0,-9,-1,149.5,9,73,-83,95.2,0,9,14.3,4.3,10.1,20.91,9,.3,10.3,172.2,1,8.1,16.1,0,-1,246.3,87.4,6.1,12.9,214.6,-9,9,8.2,-9,0,78.2,12.1,24.22,56.4,10,4.1,8.7,.4,35,-35,58,11,-6,-19,-43,59,-28},{1.2,26,1,2,15,19,2,6,10,4,2,25,2,1.2,4,1,-2.3,1,17,6.2,2.1,1.8,4,1.71,10,6.3,13,8.2,1.5,12.3,10.2,1.5,7,4.2,1.02,7,1.71,4.2,10,14.4,1.11,4.1,18,1,3,1.11,-2.2,1.3,-2.2,1.8,3,1.4,2.1,520,42,6,4,9,48,1,12,2,4,10,8,1,33,1.91,182,1.91,41,1.91,45,3,1.6,3,1,3,1,13,1.5,2,1.6,13,1.2,2,1,3,4.1,1,98.2,3,1,36,1.4,11,1.9,91,1.9,21,1.4,16,1.4,26,1.2,8,1.2,28,18.2,2.1,4.3,18,1.2,38.2,4.2,23,6.3,12.2,6.2,38,6.3,77,2,5,-2.2,1,3,-2.3,3,10,57.3,127,9,3,1.3,40.5,6.1,12.01,1.5,5,4,2,1.3,2,1.4,6.1,12.11,1,-2.2,3,3.2,5.1,10.1,1,2,4,2,1,32.2,3,5.3,9.1,18.61,86.4,2.1,4.3,2,4,4.2,20,4,2,5,3}},{{2,1},{79,.2,-75,75,12,0,-3,0,-6,3.2,12,-12,9.2,-66,66,-87,78,-3,0,8,0,4,-85,.2,19,.2,-20,.2,-1,.2,1,.11,4.3,.41,20,.2,-16,.2,-4,.2,26,.2,-6,.3,20.3,6,-5,62,-57,15,-22,6,0,58,-42,-20,74,31,-18,0,21,1.2,2,-1,-24,28,9,-16,-109,.11,75,9,-9,-70,70,42,-8,0,13,0,-47,-76,125,-123,.5,87,.2,-87,.2,74,.2,31,.2,-73,.91,55,.2,-88,.91,109,.4,1,2.1,.4,2,.4,-1,.4,-111,.91,87,.4,28,.4,9,.4,-16,.4,-108,.95,62,.91,-62,.91,20,-19,0,19,-19,-1,1,-1,.21,-1,.9,62,.4,-62,.4,67,.4,-46,.4,-15,.4,-5,.41,63,.9,-43,.9,-20,.7,126.3,.2,66,.2,-46,.2,42,.2,-62,.41,5,.2,-5,12.3,-67,6,-6,10,-9,0,48.3,1,.8,88,.6,-14,0,18,.7,-18,9,-6,0,-3,-75,.3,21,44,-63,19,3.1,6.5,3,-4,31,-31,4,4.1,8.7,1,.3,-1,4,16,-20,3.1,6.5,41,5,-46,48,-63,46,-31,-20,62,1.2,-64,164.2},{17,-2.2,8,4,2,6,2,1,6,2,5,-2.3,6,-8.2,15,10.3,8,1,2,48,1.2,25,1.2,16,1.2,4,1.5,10,1.2,34,1.2,7,1.2,22,4.3,8.4,18.2,13,1.8,16,1.5,4,1.2,15,1,3,2,5,2,-3.2,1,4,1,5,1,7,1,407,1,11,5,6,3,1,2,47.2,3,1.2,58,1.11,32,13,2,19,37,3,2,1,4,1.4,2,1,17,77.4,54.2,1.5,45,1.22,60.3,1.91,4,1.9,6,1.41,6,1.91,6,1.4,11,1.47,21,1.34,45.2,17,1.9,7,3,2,41,1.4,19.3,1.9,21,1.4,66,1.4,16,1.92,11,1.4,41,95.2,1.2,67.2,2.1,28,6.1,4.3,53,10.5,23,1.2,18,1.2,73,1,2,1,3,-17.2,-7.2,43,1.4,-2.4,5,1.6,7,2,17,1.7,23,6,1.2,4,11,-16.3,11,-2.2,16,2.1,4.3,12,3,-2.2,6,3.1,6.5,15,-21.3,12,1,3,45.3,3.1,3.1,7,3,1,4,59.3,11,5,1.2,5,20,1.2}},{{1,3},{14,.5,-9,.31,9,-9,62,0,-53,-10,1,0,108,0,-87,.9,-21,.91,21,4.2,.5,9,-9,.3,12,-12,2.1,4.1,.31},{294,1.2,4,1.2,64,1.2,10,1.5,46,8,1,5,6,3,9,5,6,1,2,1,581,48,1,80,1.9,242,1.91,177,1.9,261,1.2,133,1.2,88,174,-16.3,19,7,13,2.1,4.3,71,2,19,2.1,4.3,1,-6.3,19}},{{3,1},{5,.2,62,-57,-5,0,74,.2,-54,.4,-20,.21,62,-36},{303,1.2,148,26,636,17,172,1.2,447,1.4,221,1.2,123,7,34,59,1.2,-2.4,390,28}},{{1,4},{5,.4},{381,1.2,46,47}},{{2,2},{5,.2,2.1,-5,.22,26,.91,-26,.91,30,.91,-30,.62,62,.4,-62,.71,62,.2,-62,.2,61,.2,-61,.7,4,.3,58,-62},{414,1.5,37,9,649,116,1.9,93,1.9,56,1.93,21,1.93,6,40,56,1.4,11,1.4,96,1.4,21,1.4,31,1.4,61,1.2,33,1.2,8,1.2,98,1.2,381,-20.3,73,-21.3,16,-6.3,10,20}},{{2,3},{5,.21,26,.91,1,.91,4,.5},{417,1.2,811,1.9,218,1.93,217,1.4,909}},{{3,2},{67},{453}},{{4,1},{5,.5},{2204,1,-2.4}}}, + {{{1,1},{595,0,-593,0,1.2,-2,1.2,9,-11,1,592,48,187,-187,12,1,-1,-27,48,-674,0,626,23,0,-23,27,0,-27,23,-23,2.1,27,-27,203,-203,48,-78,48,-48,48,0,38,-32,-650,0,600,50,-50,44,-44,38,0,-38,38,-38,9.2,11.4,13.3,-38,44,25.2,32,1,-683,27.2,23.3,19.2,83,0,-83,28.6,2.1,26.3,-18,18,0,32,-41,41,113,-789,.2,621,-621,638,0,-638,621,0,-621,830,-830,635,.2,-635,662,-662,10.3,635,-635,627,-1,1,0,-1,48,-33,12,1,-5,101.2,-53,-600,612,-2,3,-10,-5,8,-3,3.1,6.1,6.5,6,21.8,9.1,12.6,-1,15.5,30.12,15.1,81.42,12.9,18.9,197,-148,149,-802,.2,601,8.2,-606,.2,603,40.02,12.5,192,-178,24.11,41.2,1,.2,611,140.5,3.1,-613,54.7,154.6,42.3,-187,6.2,-604,.2,610,99.11,6.3,37.2,230.3,42.8,-612,61.4,24.6,64.5,257.8,100.4,28.2,602,-5,8,2,-606,625,12,-28,0,194,-166,-31,35,-4,-10,-21,31,-30,.2,20,-22,20,-16,-600,794,-196,-13,34,-630,629,-21,-606,614,-616,608,-606,605,0,24,160,-161,-619,628,-639,609,26.2,0,32,-638,606,23,-630,608,0,3,74,1.89,-119,21,3.1,6.5,-662,.33,588,-588,.2,588,-579,-9,.7,-2,2,3,.5,-5,.14,9,.5,-9,.11,627,2,-629,621,-5,25,-6,-35,41,3.2,-4,66,-28,-42,-592,596,-4,3.2,-596,18.7,-39,66,-36,493.2,23,-8,12,513.2,0,-74,444.3,498.2,476.3,2.1,38,44,-55,-27,50,-650,430.2,621,55,-49,-625,-2,621,0,-23,-598,64.31,592,-592,0,16.51,626,184,0,-213,238,-216,7,210,-836,662,0,14,-49,-1,-5,0,-21,-594,1,591,213,-213,0,-597,597,2.1,5.2,0,837,-837,0,1,838,-242,8.2,14.2,613,-16,6.3,61,-25,-36,36,-36,5.3,66,0,-662,.62,246,4,0,4,.2,58,0,8,.2,2,.2,14,.3,2,0,-338,.32,249,57,0,14,0,15,0,4,0,3,.3,2,2.1,.2,-346,.32,251,60,0,9,.2,3,0,14,4.3,3,.2,1,0,1,0,-345,.21,840,1.3,-248,-595,.41,593,0,1,6,-602,256,69,0,18,.2,4,0,5,4.2,.2,2,.3,4,0,-360,.43,254,84,.2,7,.3,7,15.3,6,.3,3,0,-24,9,7.3,7,.2,82,.2,5,28.3,-113,13.21,-131,22,.2,9,.3,6,.2,5,.2,83,13.3,-129,13.21,-98,11,.2,87,.3,7,.3,37,.3,9,.2,5,117,-21,3,56,-38,-21,21,-21,-3,2,0,18,-18,1,0,21,-2,168,-178,8,-25,25,735.2,-17,21,-12,8,-17,17,-8,4.2,3,-3,21,-22,22,-21,17,12.2,-20,2,-2,12,0,20.3,26.4,-8,-616,606,-606,4,-3,625,168,-195,42.2,-10,10,189,-169,8.4,62.2,189,-189,10,-9,17,68.3,3,32,-13,10,-26,-3,45,4,-69,.4,49,7.4,137,-129,-12,198,-63,-151,17.6,56,-4,25,-1,131,-177,-618,639,-637,794,-192,20,-626,607,-606,655,-49,71,-68,31,-642,.9,640,46.11,7.2,36,21,-40,50,-47,58,-37,-21,56,-662,-4,.4,2,.4,655,139,58,1.2,-266,56.4,-26,156,3,-134,-7,131,-783,632,37.3,162,-197,66.4,-152,20.4,-158,3,15,10,-1,-663,.4,587,.4,16,80.4,612,55,-37,169,17,-818,607,41,-647,642,5,-31,23,18,-47,16,74.4,36,32,-11,191,-63,-159,24,-36,15,39,-88,98.8,17,61,-666,664,-662,586,.4,46,21.31,70,-45,27,-52,0,-589,619,59,-89,0,40,-14,15,-41,.6,5.4,15.1,0,66,-49,65,-82,15.5,10.1,0,25,32,-5,55.2,20.01,36,21,10,-67,0,57,-31,41,5.2,70.51,6,3,31,-40,0,17,61,4,35.2,-589,.2,589,0,-586,.2,586,53.6,13.4,122.5,72.5,10.5,26,23,-8,24.2,127.41,57.6,82.01,15.1,-590,613,187,-210,50.11,57,-57,.8,66,-66,3.1,.8,9.1,68,0,-656,656,-658,658,202,-202,0,-25,-14,-620,634,1252.3,-44,-590,0,602,32,-634,634,-38,267,-261,-12,44,-634,11.2,-12,15.3,-12,1,0,5,-5,0,-591,591,.5,5,794.2,0,1265.3,-596,40.2,187,43,-864,.5,865,1.5,-48,1.5,-5,1.5,-827,.62,5,.01,-3,.12,9,.01,-11,.01,676,-41,-635,635,-35,83,-57,23,-649,649,-23,4.2,0,593,42,-42,-588,588,102.2,28,-28,45,-29,-607,602,-6,6,15,27,-644,605,23,-21,-4,-603,617,-4,4,-10,16.1,32.13,-4,3,54,-7,-61,1,-1,2.1,1,-604,1,617,-8,4,3,21,-34,4,-4,10,20.1,40.93,-1,5,87.2,785,-183,15,-8,19,-26,77,-77,48,-48,13.1,26.1,5,6,8,-12,-2,43,-43,61.2,1,10,4,20,-34,41,157.5,-1,21.1,42.14,40,-30,14,1,-26,25,16,6.1,12.11,-10,-617,0,618,-29,46,-637,620,-29,16,-17,-590,616,256,-236,-636,591,93,135,-193,28,-653,2,-1,589,16,-605,0,4.2,185,-788,587,25,17,188,53,-237,-46,3,-3,14,-14,201,-202,-588,592,2,-5,-589,.71,9,.2,777,-148}},{{1,2},{2,1,-1,593,.6,2,-1,-594,1,0,-1,.3,1,0,674,113,-788,.2,590,-589,0,-1,.5,1,.5,-1,.2,15.3,-75,-600,0,1,.4,14.3,0,-1,0,33.7,18.2,24.3,-1,.4,1,.2,-1,1,.01,-1,0,675,15.2,11.4,0,1,.3,19.3,.9,8.3,-1,.81,15.3,.02,4.3,.8,66.3,.11,593,.2,-592,10.4,4.2,.41,4.3,.62,2,.2,-2,.2,599,.2,-599,.2,30.5,24.6,.8,16.2,-596,22.2,.8,40.2,-593,.8,12.2,32.3,.5,20.3,32.3,598,.2,-598,.2,662,.2,-663,.5,3,50.3,126.3,50.4,.11,26.4,-1,2,-2,132.3,34.3,110.3,6.2,594,-593,.3,-2,2,19.3,33.3,650,-651,8.2,164.4,593,-593,0,592,115.2,242,5,3,2,3,57,3,6,1,2,14,-3.2,1.2,-2.4,2.1,1,79,1,3,1.2,-2.3,1.3,2,1.2,32,2,5,5.2,2,1.3,4,1.7,6,1.6,2,1.82,2,3,1.4,-331,41.1,82.18,-572,2,617,-614,4,-6,0,2,0,4,-9,0,3,6,-7,3,6,-6,0,4,3,1,-6,-2.3,0,-4,-2.3,-6,584,70,-664,674,131,-141,-37,-617,584,-584,6,789,1,0,-808,2,18,580,46,-27,-26,239,-230,-2,6.3,0,9,-596,1.4,2,-9,.5,19,.5,12,3,-2.2,1,4,-25,.5,66.4,1,2,574,29,23,-53,9,-7,-580,1.5,-5,1.5,-19,1,444.7,312.4,.3,316.4,314.3,8.2,446.4,0,2,321.3,.6,9.3,433.5,484.6,8.4,44.4,.21,1,.7,-1,26.4,0,1,-2,474.4,48.6,56.3,.2,566,-311,-252,-2.2,-1,3,5,-10,2,3,1,3,4,-4,2,4,-12,-2.2,-4,-2.2,-2,-3.2,-6,3,5,-14,1.4,2,4,2,4,-14,1.2,-3.2,4,-1,3,7.2,-2.2,-5,1,2,6,-2.2,-10,-3.2,29.2,0,5,4,-9,-2.2,-3,-4.2,-13,54.2,4,5,-13,1,2,621,176,-134,-76,182,-107,-31,-27,222,-189,-651,.4,810,35,1.2,2,-66,30,-188,189,-26,-112,16.2,-24,57,-651,0,1.2,10,2,-2,-2.2,619,33.4,-772,1.3,-2.2,647,-642,828,-824,756,29.4,-117,144,-199,200,-168,23,5.4,-649,.45,1,139.3,2,-1,.51,555.3,-1,.91,1,.91,-1,.9,652.3,.4,1,.41,2,.4,-2,8.2,16.2,.9,3,.4,-4,.9,22.5,.9,14.3,.8,208.5,4.1,634.3,594,1,41,-42,1,4,682.2,594.7,.62,22.5,246.3,3,15.2,-1,1,591,-592,.3,1,600,-599,-2,.7,1,601,-12,746.2,4.3,298.4,-1,620,-620,1,.2,665,.5,-666,.71,33,-3,.3,1,-31,.31,1,621,336.2,31,.7,-623,.9,128.4,4.1,4.1,593,78,-53,.8,-618,.01,276.3,.7,593,7,-599,780.5,-1,.2,2,-2,297.4,6.2,305.3,666.3,14.1,28.72,389.6,592,-589,-3,380.3,80.2,74.4,14.1,28.22,.4,59.4,893.4,.3,69.5,10.1,20.41,923.5,944.6,115.7,16.3,19.1,38.73,540.4,4.1,8.6,142.3,896.5,0,1,.7,2,-2,1056.4,3,-4,0,25.3,221.4,13,2,4,-16,1.2,8,510.2,4,5,510.2,-1,-3.2,602,0,-35,905.2},{918,258,1.91,25,2.1,1.91,34,5,1.91,36,1.911,92,1.4,16,1.4,36,1.4,6,1.4,26,6.3,8.4,2.1,4.1,4,1,4,1,4,1.6,6.1,6.5,4.1,8.1,22.1,34.22,40.9,2,1.8,2.1,4.1,4.1,37,1,2,1,2,1.5,43,1.5,403,4,-8.2,-4.2,6,-2.2,6}},{{2,1},{2,.4,590,.2,-590,.2,4,0,616,-28,-592,.4,620,-23,-597,654,-643,583,-594,596,0,24,-26,-594,0,594,2,.2,-596,2,0,588,6,-6,6,-596,.2,594,.2,-593,.2,-1,.2,2,.2,-2,.2,3,8.3,592,14.3,12.4,10.2,594,.5,10.2,596,.2,-597,.5,1,12.3,1,.5,16.3,40.4,.5,2,.2,1,30.3,593,.2,-586,.2,-8,.5,595,.2,-594,.5,593,8,0,-600,15.2,2,0,72.2,34.2,3,26.3,30.4,46.4,68.3,.8,633,.2,-631,6.2,.5,654,.2,-653,.2,619,.2,-620,.11,18.3,.5,616,.2,-616,.2,147.2,-588,4.3,-589,.2,-3,.9,590,-588,0,588,-589,0,90.3,-586,-6,11,-13,.4,631,-620,-11,.2,607,-13,-592,-2,0,1,-1,13,-13,611,-17,-4,5,-595,1,791,-792,0,8,-8,0,4,-4,1,589,0,4,-594,11,-7,7,579,-579,582,-593,601,-7,39,44,-31,-26,-19,6.5,-620,0,594,-590,-4,596,-6,-589,-2,1,11,667,0,-60,47,-665,.2,627,-627,2,6,587,-594,-1,1.2,-2,3,.3,592,7,-602,4,.2,-4,.22,1,.2,252,0,60,0,9,0,3,0,14,160.3,3,.3,1,0,250,1,-597,592,0,2,0,-4,.2,5,0,1,.2,6,0,-5,.2,3,194.2,633,-43,5,41,18,-654,.4,11,.4,-7,.4,7,.4,-8,.91,592,1,6,-5,-597,13.2,660,-53,167,68,-252,-601,.42,5,.91,3,.91,-8,.93,4,.91,-4,.3,594,-594,1,593,-2,-2,4,-595,593,3.2,-1,2,-3,1,0,2,-1,6,0,1,0,-1,-7,.2,1.2,592,-587,7,-6,-8,0,32.2,13,577,-589,.4,1,.4,592,-4,-589,593,2,-594,592,3,.4,-1,.4,-6,0,5,.2,1,.4,-596,87.3,600,20,-626,607,-606,645,-4,-641,1.2,-4,.44,1,.4,596,.4,-7,0,6,-591,.2,-5,.2,597,393.2,314.3,595,0,-595,597,0,-597,6.3,.9,1,360.3,-594,360.3,595,.4,255.2,.5,4,.5,6,.2,-11,.8,8.2,596,-586,583,-593,7,-6,-1,0,819,-820,1,0,4,-3,3,-2,-3,0,2,0,-1,1,594,-592,.8,7,.6,-9,0,2,.7,-4,1,3,598,-10,-592,595,-593,-2,22.3,589,-589,1,-1,594,10.1,20.91,.4,-1,261.3,7.2,591,-590,8.2,10.1,20.81,1,-2,96.2,104.3,.2,8.1,16.1,593,582.3,-595,258.3,0,53.3,1,13.1,26.1,2.1,-2,2,595,-596,5.1,10.9,-597,32.2,0,2,-596,595,1,-1,432.2,11,588,-588,-11,596,24,-609,0,485.2,2,594,40,-40,423.2},{1.2,15,-2.2,7,1,-2.3,6,2,1,2,4,2,5,-2.6,-4.2,6,-2.3,11,12.3,5,2,1.2,-2.2,21.2,1,17,1.2,4,2.1,1.92,7,1.5,4,1.11,4,1.32,4,1.8,12.3,4.2,1.92,4,1.71,4,1.02,7,16.2,1.83,4,22.2,1.2,3,1,3,1.03,2,1.21,2,1,407,1,11,5,6,3,1,53.2,4,3,1.2,58,1.21,31,11,-2.3,4,9,4,37,3,2,1.3,2,1.4,2,1,3,2,4,8,91.3,1.3,6,1.2,16,50.2,1.91,22,1.22,7,8.2,1.91,4,1.9,6,1.41,6,1.91,6,1.4,11,1.841,66.3,1,3,1.32,13,1.2,40.3,4.1,67.3,3,1.6,28.3,1.9,11,1.41,66,1.4,16,1.43,34.2,2.1,26,18.2,2.1,1.2,8,6.1,6.5,4.1,6.1,56.2,18.6,23,10.3,20.8,18.2,12.2,18,10.5,63,1,82.3,7,2,5,2,1.3,3,-2.3,-3.2,7,94.4,43,1.4,-2.4,5,1.6,7,2,17,1.7,23,4,172.3,1,3,25.2,41.4,6.1,12.01,1.5,-2.2,4.2,188.4,7.1,14.31,1.3,7.2,-2.2,4.1,8.1,310.4,1.7,3,317.5,7.1,14.01,255.4,2.1,2.1,8.2,3,1,2,1.6,2,1,11,4,69.2,-3.2,14,1.2}},{{2,2},{3,-1,.3,1,0,-1,0,593,-1,-592,.7,594,-594,.6,6,-5,.2,-1,1,.4,592,.2,-593,.2,593,.8,6,.2,-6,.5,-592,.2,592,.5,-1,.2,2,.2,-594,.2,1,.2,591,.2,14.3,.2,-590,8.5,4.2,1,41.2,8.3,593,6.3,2,4.3,2.1,1,52.3,594,8.5,44.2,38.2,7,.2,-599,14.3,10.4,48.2,4.2,-2,72.3,590,40.3,7,.2,-7,.5,6.2,28,.2,-621,20.3,6,.2,-597,46.3,598,.2,-598,4.3,-6,10.3,-589,34.3,1,.2,5,56.3,84.2,74.2,32.2,50.2,64.4,620,.2,-28,0,1,-1,-591,591,0,3.1,-590,0,591,-592,592,-1,10.2,592,-593,592,-591,0,592,-594,4,-4,1,0,593,9.2,590,3,-2,0,-593,36.3,12.2,-592,596,0,54,-652,1,628,-628,.3,1,-2,629,-34,76,-670,670,-651,-18,.5,-1,.5,2,-2,0,18.2,75.2,-594,1,591,-574,0,-16,0,-2,1,-1,592,0,-592,594,-2,2,-4,4,.4,93.2,628,.2,26.2,2,.91,-2,.52,1,.4,-2,.4,810,-16,20,36,-250,34,44,174,-210,-46,198,-200,220,-191,-23,-5,0,39,0,-43,.2,30,0,-25,.2,41,.3,-40,.2,58,-654,.4,593,29,49,-26,-27,-599,.4,-19,.91,594,0,39,.3,26.3,.2,-25,.3,41,.2,-40,-3,0,-1,.3,2,.2,-4,.2,5,.3,1,.2,6,-600,.91,-3,.91,595,0,-4,.3,5,.2,1,.3,6,.3,-5,224.2,340.2,-591,111.3,4.2,1,185.3,0,592,.4,7,2,-2,-5,-2,.2,145.3,7,0,2,-594,587,-2,9.2,-590,4.2,202.2,589,18.3,.3,2,382.2,0,593,198.2,39.2,2,.9,3,.4,-3,143.3,256.2,2,-4,-589,.9,615,9,-11,-612,666,-40,0,-35,273.2,.9,600,37,-21,9,22,-10,-30,20,-2,22,-47,10.4,-26,-618,639,-637,794,-207,41.2,0,6,0,1,-597,.7,314.2,358.2,2,320.2,0,82.2,7.2,.5,11,.5,594,20,-19,-608,322.2,0,2,373.3,0,2,-2,.2,9,340.3,80.2,5,0,-5,-2,0,-2,3,0,207,-208,0,2,12.3,28.5,259.2,593,0,448.3,273.2,-596,601,-9,7,263,-270,350.2,0,2,-1,-3,3,-3,2,-590,590,166.3,-591,662,-41,.2,-23,19,167,-162,179,-139,-41,.5,-622,0,871,-272,-7,453.2,1,44,-45,.2,3,177.2,1,369.2,592,1,-1,-589,9.1,18.71,1,0,6,98.3,590,9,-9,533.3,15.2,13.1,26.52,407.2,644.3,8,-8,652.3,9.1,18.71,-593,593,95.3,9,-8,-1,1,9.3,21.2,13.1,26.52,146.4,563.2,5.1,10.9,2,0,-3,9,-7,-2,7,-7,.3,595,-583,580,216,-809,0,646,-52,.2,426.2,635,-636,.2},{1.2,15,-2.2,7,1,-2.2,10,1,2,4,2,5,-4.2,2,6,4,6,4,2,11,6,2,1,5,2,1.2,4,1,-2.3,1,17,6.2,2.1,1.92,7,1.5,4,1.11,4,1.32,4,1.8,12.3,4.2,1.92,4,1.71,4,1.02,7,16.2,1.83,4,22.2,1.2,3,1,3,1.03,2,1.21,2,1,407,1,11,5,6,3,1,53.3,3,2,58,1.21,31,11,-2.3,4,9,4,37,3,2,1,4,1.4,2,1,3,2,4,8,94.3,1.3,6,1.2,16,50.2,1.91,22,1.2,27,8.2,1.91,4,1.9,6,1.41,6,1.91,6,1.4,11,1.4,6,1.831,68.3,1,3,1.32,13,1.2,42.3,4.1,69.3,3,1.6,30.3,1.9,11,1.41,66,1.4,16,1.43,36.2,2.1,26,18.2,2.1,1.2,8,6.1,6.5,4.1,6.1,56.2,18.6,23,10.3,20.8,18.2,12.2,18,10.5,63,1,82.3,7,2,5,2,1.3,3,-2.3,-3.2,7,94.4,43,1.4,-2.4,5,1.6,7,2,17,1.7,23,4,227.4,3,25.2,41.4,6.1,12.01,1.5,-2.2,4.2,52.2,2,1.4,7.1,14.31,1.3,7.2,-2.2,4.1,8.1,315.4,1.7,3,2,7.1,14.1,53.3,2.1,4.3,8.2,3,1,2,1.6,2,1,11,4,69.2,-3.2,14,1.2}},{{2,3},{6,-3,-1,.2,6,0,-6,.2,592,-592,592,0,-592,.5,597,-596,.2,1,.2,17.2,2,.2,-3,.2,3,.5,4.2,8.2,12.3,.5,-1,.5,1,.5,21,.2,-20,12.2,.5,-2,.2,5,.2,-4,32.7,642,.2,-641,44.3,622,.2,-623,.2,4,46.4,24.2,.5,8.2,609,.2,-609,46.2,22.3,-5,34.3,6.2,4,.2,87.2,4,.8,24.2,18.2,5,12.3,-7,56.3,613,.2,70,.2,-683,12.3,616,.2,-621,.2,5,96.3,18.4,-609,.2,86.2,621,.5,-623,.4,-1,0,2,3,-4,3,0,5,-6,2,-5,9,-2,-6,1,-1,6,-4,-2,5.2,594,-594,-1,4,0,-3,3,-4,590,-589,3,-2,0,-1,2,0,-4,4,0,-2,-1,0,1,-1,.3,595,-595,.11,178.2,6,586,0,-583,-9,.2,5,3,-1,4,-11,8,96.2,.3,78.2,4,1,2,127,0,82,0,27,.2,1,0,129.3,.3,2,.3,-248,99.3,5,.91,-4,93.2,.31,1,2,.4,4,.9,4.2,-9,.4,620,-30,43,-39,7,-351,0,1,.3,1,163.3,36.3,.2,52,-303,.4,2,26.3,37.2,6.4,234,0,2,.3,3,190.4,31.4,-248,.42,19.4,-6,1,-3,4,0,-1,610,-611,0,6,-7,2,-3,.2,8,-5,1,-1,2.1,4.1,8.1,.2,3,-6,6,-2,0,-4,.2,8,-8,.3,3.2,1,2,5,-7,2,-4,3,6,.41,616,32,-655,609,31,-631,.4,-2,.4,-10,.4,623,49,-79,31,-29,0,39,-38,1,224,-816,.41,1,.4,-3,.4,168.3,.2,588,.2,-584,294.3,590,-4,6,-4,.5,2,.2,-4,0,6,-593,376.5,4,122.3,73.2,587,.2,-585,.2,-2,328.5,314.4,16.2,592,3,61,-657,13.3,303.3,1,-2,1,2,262.3,-2,3,.3,-4,4,-5,0,5,-5,2,-1,.8,2.1,6,-6,0,-2.2,-4,9,118.3,4,-4,9.1,18.71,-3,.3,8,-5,0,1,-4,-1,1.2,7,166.3,10.1,20.71,-6,-1,2,5,-5,5,-2,-7,0,3,9.1,18.71,2,-1,0,613,-610,395.3,-3,1,-2,9,0,-7,13.1,26.52,-8,-1,-2.2,0,-3,4.1,8.7,5,0,-8,6,607,-20,-591,-1,631,-43,-571,-20,3,1,2,-2,6,-4,0,-1,234.2},{1.2,26,1,2,12,1,2,19,2,6,10,4,2,11,14,2,1.2,7,2,20,1.2,4,2.1,1.92,10,4.2,1.5,8.3,1.32,4.3,16.4,1.8,18.2,4,1.71,4,1.02,7,1.11,4,1.83,24.2,9,1,3,1.91,2,1.9,3,1.7,46.2,2,408,12,5,6,3,1,3,1,4,5,58,1.21,42,2,-4.2,9,4,42,1,10,1,3,2,4,8,2,4,2,1.3,6,1.2,16,80.2,1.91,22,1.2,27,8.2,1.91,4,1.9,11,1.9,6,1.91,6,1.4,21,1.421,2,1,60.3,51.3,3,1.32,13,64.2,1,3,4.1,1,74.2,3,1.6,28.2,2.1,6,1.9,21,1.4,66,1.4,46.2,11,12.4,1.4,26,22.2,2.1,1.2,8,6.1,6.5,8.1,58.2,8.6,23,10.3,24.6,26.4,12.2,18,10.5,63,1,84.3,7,2,5,2,1.3,3,-2.3,-3.2,7,96.4,43,1.4,-2.4,37,1.7,27,2,7,3,18.2,34.4,6.1,12.01,234.3,3,45.2,2,1.4,7.1,14.31,1.3,-2.2,1.2,-2.2,4.1,8.1,1,2,4,2,1.7,3,2,7.1,14.1,53.3,2.1,4.3,8.2,4,2,1.6,14,4,91.2,2,-3.2,14,1.2}},{{1,3},{5,-3,.5,9,.2,-9,-1,3,592,0,-594,.8,594,0,-2,.2,-591,.2,611,-2,3,-610,.5,609,5.2,-612,10.4,-612,.5,5,.2,606,7.2,190,-148,149,-805,.2,613,8.2,-6,-13,-2,-591,606,-605,2,-2,597,-596,-4,652,-650,.991,-2,0,597,-2,-592,5.2,-1,593,0,3,-593,.2,588,0,3,-3,-590,5,590,-5,-589,18,.11,-18,.5,792,-200,29,49,0,-26,6,182,-25,26,-206,181,-189,-25,1,6,-5,-597,670,-77,29,23,-27,-26,-592,.5,593,42.2,610,-16,-594,0,3,0,-3,-1,0,595,61,0,139,-139,0,184,-229,184,5.2,8.2,-654,0,650,12,-70,-1,2,-4,6,.2,-594,.2,-2,.5,651,12.2,1,-4,5,-593,147.2,1,-597,595,1,0,-1,1,0,-596,.5,596,0,6,0,-5,23,-25,0,41,-40,-596,0,-1,0,1,0,630,-30,8,-607,.2,1,.2,-1,0,-1,.41,592,.4,2,.4,-595,.9,638,24,-44,30,11,3,-45,32,-1,11,-658,.4,616,.4,-23,.4,-589,.4,589,.4,-593,.4,593,.4,27,199,39,-254,23,-626,.5,-1,607,41,-648,.5,594,0,1,.2,1,264,-179,-680,593,-588,-2,592,-594,74,.5,-75,.01,-1,594,11,10,8,-18,3.1,6.5,-622,0,617,-617,591,-591,5.1,10.9,-592,604,-604,0,3.1,6.5,593,35,-627,614,-23,1,5.1,10.9,3,.3,24,0,-608,-11,.2,596,-2,0,26,-25,-595,616,-23,-593,628,-32,-587,587,-3,1,-4,0,4,-4,5,249.3,2,-7,2,208.2},{3,1.9,3,10,12,2,15,17,9,2,9,-2.3,1,4,7,2,78,1.2,19,1.2,61,1.2,4,1.2,40,1.5,28,1.5,10,8.3,2.1,7,1.2,13,6.5,5,4,14,7,3,2,8,-2.2,4,3,1,203,1.991,4,2,3,2,1.2,2,1,-2.2,2.1,1.3,3,1,3,5,1,2,6,2,1.11,7,1.53,50,17,2,4,1,2,36,1,2,1,2,12,5.4,3,1,37.2,4.3,3,1,8,1,12,68.5,21,1.5,4,2.1,1.2,27,12.2,1.11,24,1.2,11,1.4,20,21,1.4,6,1.4,155,1,65.3,1,32,87.4,3.1,7,1,13,1.4,26,1.91,21,1.42,6,1.43,206,58.2,1.2,8,4.3,2.1,53,8.3,80,2,1,-3.2,6,1,31,35,1.5,22,1.01,50,16,4,6,-5.2,2.1,4.3,5,8,6,1,6,1,-6.2,4.1,8.7,3,-2.2,9,2.1,4.1,4,9,2,-3.2,4.1,8.1,-6.4,1,3,6,-3.2,1.6,2,1,78.2,12,2,1,6,1.8,134.2}},{{1,4},{11,.5,-10,4,-2,598,-598,-1,0,596,-6,4,1,0,1,-584,0,611,-623,0,4,.2,-4,.2,1,.2,591,.2,-592,.2,601,.2,-600,.2,-1,.2,592,.2,-591,6.2,1,2.1,-1,1.2,0,-2,628,-628,0,1,19.3,2,0,-2,2,-3,652,-649,6.2,.6,1,.5,-2,.71,1,.21,592,1,30,56.2,623,0,-622,0,603,233,-243,-593,0,43.3,.2,3.2,.3,601,0,-601,72.3,2.1,-2,.2,593,6,-7,-592,.5,56.3,.8,2,.8,-3,.4,3,.9,592,2,-2,1,-1,0,-594,.2,595,-1,2,-1,3.2,-2,2,31,4,16,32,118,-796,.91,-2,.4,10,.4,-9,.71,596,0,-596,8,.2,-7,0,677,-678,592,-592,.01,594,-594,90.2,-593,1,594,-2,4.1,8.7,-4,-590,590,2.1,4.3,27.2,2.1,4.1,158.2,2,-592,2,-4,.2,597,-597,2,.3,-1,.5,-1,.2,664,-13,0},{4,1.8,3,22,2,15,17,9,2,9,-2.3,1,4,7,2,99,1.2,61,1.2,49,1.2,28,1.5,10,1.2,19,1.2,13,1.2,4,1.2,7,1.2,5,4,24,21,407,2,3,2,1.2,2,1,-2.2,2.1,1.3,3,1,3,5,1,2,6,2,1.11,7,2.1,1.71,50,17,2,4,1,2,36,1,2,1,2,12,1,3,2,3,1,38.2,4.3,3,1,8,1,12,60.5,21,1.5,4,2.1,1.2,27,12.2,1.11,24,1.2,11,1.4,41,1.4,6,1.4,155,1,65.3,1,32,-2.2,4,3,1,3.1,7,1,13,1.4,26,1.91,21,1.91,26.2,221,1.2,8,1.2,53,1.2,90,2,1,13,31,62,1.01,50,16,4,6,-5.2,2.1,4.3,5,8,6,1,6,7,4.1,8.7,4,2,11,2.1,4.3,24,2,19,2.1,4.3,30,1,3,9,5,1.3,9,12,2,1,6,1.8,108.2}},{{3,1},{594,2,-1,-591,.2,-1,.2,4,.2,-2,.8,6.2,1,.2,-3,.2,8,.2,-8,8.2,0,1,9,-6,-3,5,-7,0,1,-1,11,2,596,-14,1,-595,589,-581,-9,2,-2,.2,9,-7,.01,-1,.9,38.2,7,.9,-7,.91,595,.2,1,.3,6,.2,-5,.2,3,.3,-600,.2,6,.91,-5,.91,255,0,69,.3,18,70.3,5,.3,4.2,2,-353,.91,-3,-2,5,-4,4,.4,23.2,8,.4,-8,.41,2,.7,58.2,2,.5,3,.2,589,0,1,-593,.2,-2,9,-7,-1,2,3,.6,-4,-2,2,2.1,4.3,5,589,-594,3.1,6.1,.8,5,54.3,3.1,6.5,3,0,-3,3.1,6.1,.3,13,-5,-8},{29,88,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,10,1.2,19,4.2,8,1,2,1,2,6,3,1,-3.2,25.2,1,6,12.3,3,578,48,1,8,1,17,54,1.9,35,1.9,65,1.2,26,1.9,36,1.911,6,2,36,2,56,1.4,11,1.9,2.1,71,1.4,16,6.2,4.2,1.4,61,1.2,33,1.2,8,1.2,18,1.2,73,1.2,3,1.2,53,1.2,63,7,18,16,7,52,1.2,-2.4,89,1,15,2.1,4.1,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,1.2,4,2.1,4.1,7,3,1,3,16,5}},{{3,2},{3,.2,621,.2,-29,.2,77,.2,-76,.2,-1,.2,8,.2,-7,.2,7,4.3,-580,.2,578,.5,1,8,-8,1,-2,-592,593,-593,593,2,-594,-1,0,593,-592,650,-55,-2,-578,0,578,-2,2,37.2,-1,.3,2,0,1,-1,0,-4,.3,5,.2,1,-596,.2,594,.2,9.3,.5,1,.3,6,.2,-5,.2,3,.3,-600,.22,595,.2,12.9,.2,601,.2,-11,.3,46,.2,-34,.2,184,.3,-786,.2,5,.4,2,.9,2,.4,585,46.4,.3,1,.2,6,.3,-5,0,-5,1,6,-7,-2,.3,6,-596,.3,1,668,-37,-21,56,-662,588,.4,8,.4,27,.4,-35,.9,7,37,-21,9,22,-57,0,6,0,1,-5,0,-2,-590,.2,592,0,2,-2,3.1,0,2,11.2,588,8.4,7,-7,2,28,0,-23,19,167,-162,179,-209,-591,591,2.1,4.3,592,-587,585,2,3.1,6.5,1,-1,2.1,4.1,2,-1,3.1,6.1,-1,0,1,21,-22,3.1,6.5,-613,0,589,9,274,-873},{29,88,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,10,1.2,19,4.2,8,1,2,1,2,6,3,1,-3.2,25.2,1,6,12.3,3,578,48,1,8,1,17,54,1.9,35,1.9,65,1.2,26,1.9,36,1.911,6,2,36,2,56,1.4,11,1.9,2.1,71,1.4,16,6.2,4.2,1.4,61,1.2,33,1.2,8,1.2,18,1.2,73,1.2,3,1.2,53,1.2,63,7,18,16,7,52,1.2,-2.4,89,1,15,2.1,4.1,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,1.2,4,2.1,4.1,7,3,1,3,16,5}},{{3,3},{2,.5,1,.2,4,.2,637,.2,-640,.2,3,.5,619,.8,-617,2,-4,0,4,-2,-6,2,-1,2,-2,.2,-1,0,1,-3,6,4,-4,.2,3,0,-1,.4,2,.4,-4,.4,4,.4,-2,8.5,2,.9,6.1,12.1,6.2,-10,.91,6,14.6,-2,4,2,18.2,42.2,6,.9,-10,.4,10,.9,10.2,-1,72.2,.2,1,.2,3,.2,-2,.5,-3,0,-2,5,0,-4,.6,8,.7,-5,5,0,3.1,6.1,5,-7,7,2.1,4.3,-3,20.11,-5,.7,-1,0,2,-6,6},{29,88,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,31,1.5,10,8,1,3,2,6,3,1,-3.2,1.2,5,6,1,2,1,3,578,48,1,8,1,17,54,1.9,35,1.9,93,1.9,36,1.911,6,2,36,2,56,1.4,11,1.4,16,1.9,71,4.3,31,1.4,61,1.2,33,1.2,8,1.2,18,1.2,73,1.2,58,1.2,63,7,18,16,7,52,1.2,-2.4,89,1,15,2.1,4.1,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,97.2,1,5,1,5,1,11,3,4,16,5}},{{2,4},{2,.8,4,.5,-1,.2,1,.2,4.3,8.2,.8,-2,.5,2,12.3,-3,.2,3,16.3,4,.2,-4,12.7,4.2,2,.71,16.2,2.1,2,32.2,4.2,.5,32.8,28.9,22.3,3,60.2,1,-1,-3,4,-4,4,10,-15,6,4,-9,9,0,-6,0,24.2,15,-15,-1,2,38.2,3,-4,0,4,-3,3,6,-9,3,59.3,21.3,5,.4,2,.9,2,.4,-9,.4,15,.4,-15,.4,1,.91,-2,.4,6,16.6,.93,24.7,.91,1,82.3,.7,-1,0,3,.3,-3,2,-2,3,0,-1,2,.8,1,.4,-3,2.1,.4,2,.41,592,.9,-590,.4,47.2,166.4,8,.2,-9,.5,4,126.3,-4,.2,2,.2,-2,14.3,5,.2,-11,.5,-3,196.3,4,.2,6,.2,-6,.5,617,-618,-2,4,0,-1,-2,2,0,3.2,5.3,1,0,-1,0,-3,.81,174.3,1,.6,3.1,6.5,68.2,1,28.3,18.2,7,-6,0,10.1,20.91,40.3,3.1,6.1,.5,6,-7,1,.6,4.1,8.7,35.3,3.1,6.1,0,2,-1,590,-593,8.2,1,593,-587,-3,-2,592},{43,1,29,14,2,27,1.2,9,20,1.2,10,1.8,4,1.5,4,1.8,19,1.2,4,1.2,7,4.2,12.2,8.3,4.1,6.5,24.2,2.1,24.4,34.4,1.41,32.4,2.1,12.3,36.5,10.2,12,1,3,1,2,1,2,1,3,2,1.2,-2.2,3,6,-3.2,1,6,8.2,410,26,1,3,10,70,44,-4.2,9,46,1,10,1,5,4,8,2,4,2,1.3,24,43.2,1.91,92,1.9,11,1.4,11,1.91,31,1.48,21,1.91,7,10,1,3,4,1.81,4,14,1.2,-3.2,1.2,3,11,32,1.9,21,1.4,66,1.4,16,1.91,29.2,6,1.4,41,16.2,1.2,13,4.3,8,4.3,2.1,12.4,18,12.7,23,24.5,22.6,12.2,22.2,8.4,64,-3.2,7,2,5,9.3,-2.3,3,10,2,1,3,44,1.4,-2.4,37,1.7,27,2,10,1.3,3,2,3,1,4,6.1,12.01,1.5,4,1,4,2,43.2,1.4,7.1,14.31,1,4,3,1,-2.2,5.1,10.1,3,4,210.3,2,57.3,8.1,16.51,54.2,244.4,3.1,1,3,11,1,2,1.3,14,6,11.3,3}},{{2,5},{3,.6,-1,.2,9,-8,0,-1,0,2,.4,1,.9,1,.4,-4,.11,1,.2,6.2,10.4,-2,6.5,-3,.4,8,.21,-5,.2,5,.5,-7,.5,1,.2,-3,.2,4,4.2,591,.3,-591,1,3,0,-6},{73,14,2,27,1.2,9,785,1,13,70,48,4,55,1,72,1.91,92,1.9,76,1.42,41,1.91,157,1.4,116,1.9,81,1.2,18,1.2,8,1.2,3,2.1,4.3,53,1.2,23,1.2,78,1.2,254,80,-20.3,182,1,3,1,22}},{{1,5},{8,-6,0,592,0,-588,-4,.2,592,-591,-1,0,1,0,594,-595,1,7.3,-1,1,.6,-2,.11,7,-2,591,7,-603,0,3,-1,-1,3,1,-4,.5,594,-4,5,-594,.8,595,6,-5,-597,.2,1,.2,-1,.7,1,.4,4.3,-1,1,3,.4,5,.41,583,.4,7,0,201,0,-199,-9,.2,9,-7,-594,.5,60.3,-2.2,590,7,-7,0,43.2},{80,2,13,2,1,4,783,3,2,1,6,2,1,-2.2,1.3,4,3,6,2,6,20,1.11,7,1.5,79,6,39,1,2,1,23,4,1,3,6,28,1.2,7,1.2,21,1.2,16,1.2,27,1.2,4,1.11,24,1.2,11,1.4,41,1.4,6,1.4,163,1,43,1,7,1,21,1.4,36,1.9,21,1.91,276,1.2,53,1.2,90,3,166,328,14,1.3,23,7,1.8}},{{1,6},{2,.2,595,2,-597,2,-2,1,-1,8.2,-1,-593,-1,.9,1.2,0,1,0,1,-4,7,0,-4,0,589,.4,-592,.2,2,.2,23.2,25.3,4.3,-593,4.2,0,1,3.1,-1,.3,6.4,.2,2.1,2,-2,2,.01,-4,.9,2,.2,-3,.2,593,-590,-2,.5,1,-1,.5},{80,2,13,2,1,787,3,2,1,6,2,1,-2.2,1,2,4,9,2,26,1.5,13,1.5,79,45,1,2,1,23,4,1,3,6,28,1.2,7,1.2,21,1.2,16,1.2,27,1.2,4,1.5,4,1.2,24,1.2,56,1.4,6,1.4,163,1,43,1,7,1,61,1.9,31,1.9,276,1.2,53,1.2,90,3,166,344,1,23,7,1.8}},{{1,7},{1,0,93,-92,6,-6,131,-39,39,-39,524,172,-787,831,-218,-612,-2,0,11,0,81,.2,-86,.2,-6,.2,131,.2,-39,.2,39,.4,-39,.4,-90,.11,593,-503,.2},{97,1,790,2,1,14,2,4,9,2,26,1.5,142,1,2,1,74,1.2,21,1.2,54,1.2,4,1.2,24,1.2,56,1.4,6,1.4,317,1.9,936,1,23,7,1.2}},{{1,8},{1,0,1.2,-2,.3,1,.2,2.1,-1,.11},{97,1,793,14,190,1,2,1,97,1.2,54,1.2,419,1.9,936,1}},{{1,9},{1,.3},{97,1,997,1}},{{3,4},{2,0,3,.2,1,.2,-4,4.2,.5,2,.5,-2,.2,-1,2.1,.2,4,.2,-2,2,-1,7,-6,-4,3,17,-19,-1,4,-4,0,2,-1,0,1,.93,-1,.91,3,.91,-3,.91,1,30.2,.9,1,.02,2,.2,-3,.2,3,36.2,-1,4,-3,0,-1,.6,3,.3,6.2,3,3.1,6.1,-2,.7,-1,3,0,-3,3.1,6.4,71.3,2.1,4.3,1,-2},{117,1,176,1.2,4,1.5,7,1.2,34,1.2,16,1.2,10,1.5,31,1.5,10,8,1,3,2,6,3,-4.2,1,12,-3.2,578,48,1,8,1,17,98,1.9,93,1.9,36,1.91,21,1.93,21,1.91,6,38,2,56,1.4,111,1.4,16,1.9,31,1.4,61,1.2,43,1.2,18,1.2,73,1.2,58,1.2,63,7,18,16,7,52,1.2,-2.4,89,-16.4,3,7,10,3.1,6.5,5,4,9,4,9,4.3,15,8,2,11,3.1,6.5,1.2,5,1,5,1,5,1,46.2}},{{3,5},{3,0},{117,1}},{{4,1},{3,.2,-1,.2,2,-2,2,5,-2,-3,.9,593,.2,1,.3,6,.2,-5,.2,3,.3,-600,.2,1,.9,2,.9,-1,600,.4,-594,.01,608,.3,-14},{381,1.2,34,1.2,10,24,3,9,11,754,1.9,218,1.93,46,171,1.4,21,1.4,462,1,-2.4,365,-6.3,30}},{{4,2},{603,.5,-9,-592,593,1,-1,1,0,-4,.3,5,.2,1,-597,.91,1,.91,592,9,.3,-2,.5,23,-23,19,167,-162,179,-802,.3,593},{381,1.2,34,1.2,10,24,3,9,11,754,1.9,218,1.93,46,171,1.4,21,1.4,462,1,-2.4,365,-6.3,30}},{{4,3},{626,.5,-617,-3,-2,5,-4,2,.4,4,.4,-4,.4,2,.9,8.2,6.5,.51,-8,.5,1,.3,7},{381,1.2,34,1.2,10,24,3,9,11,754,1.9,218,1.93,46,171,1.4,21,1.4,462,1,-2.4,365,-6.3,30}},{{4,4},{3,.5,2,0,-1,-2,1,.9,1,.91,-1,-1,.01},{381,1.2,34,1.2,10,27,9,11,754,1.9,238,1.91,46,196,1.4,462,1,-2.4}},{{2,6},{596,-590,629,-43,30,-25,1,-592,.81,-3,.3,1,0,-2},{913,83,296,1.4,437,1.9,81,1.2,28,1.2,3,1.2,504,-20.3,186,1,22}},{{2,7},{2,.5,2,.3,4},{913,379,1.4,1068,-20.3,209}},{{1,10},{1,0},{1095,1}},{{2,8},{594,.3,1},{2364,-20.3,209}},{{2,9},{3,.3,-1},{2364,-20.3,209}}}, + {352,.62,2,-275,.91,51,.91,1,2.1,4.1,8.1,.91,214,.14,10,-10,.95,14,.35,-12,.531,-2,.21}, + {{{1,1},{1,.7662}},{{1,2},{139,1.11,0,1.2,2.1,2,6.2,1.01,0,1.22,0,1.4,0,1.41,0,2,1.9,17.3,1.4,.2,11.2,1.6,0,-82,1,-24,3,1,11,-1,-9,58,1,-124,.99,51,.99,1,2.1,.99,270,-2.51,-196,4,-79,26,2,-30,52,-28,30,2,23,4,-57,-28,6,46,-57,80,-29,-26,-27,47,27,-84,94,-53,14,10,-38,50,-26,-36,-3,70,-92,.11,-51,.5,52,.5,1,.5,-53,6.3,-52,.5,51,.5,-51,.11,306,1,100.4,4.1,8.7,-15,1,-1,1,15,1.7,0,1.42,0,-240,0,193,51,0,-51,2,0,-162,0,160,.5,-193,12.7,-2,-160,13.2,.4,49,51.4,1.4,0,-129,1,129,1.2,-244,117,0,-238,0,323,.2,2,2.1,4.1,8.1,.2,6,10.9,-196,.2,4,.2,-79,.2,-2,.2,52,.2,-28,.2,30,16.3,23,16.3,-57,.2,24,4.2,.4,80,.4,-29,.4,-26,.4,-27,.4,47,.4,27,.4,10,.4,-53,.4,14,6.3,-38,.4,50,20.3,-189,.4,2,.4,1,.4,-1,.882,567,15,1,-259,172.3,2.1,2.1,6,4.3,-6,.41,1,.01,1,.12,4.3,.01,-117,1,19,1,-38,1,-50,1,83,1,-82,1,66,1,9,1,-68,1,5,1,56,1,-3,1,192,97.3,-235,4.3,-32,129.3,-23,.2,450,1},{1.31,128,1.833,517,1,60,4,52,1.33,30,1.91,25,2.1,1.91,39,1.91,36,1.502,6,1.4,16,1.4,36,1.4,6.2,26,6.3,8.4,2.1,4.1,4,1,4,1,4,1.6,6.1,6.5,4.1,8.1,22.1,34.22,40.9,2,1.8,2.1,4.1,4.3,1.41,2,1.05,133,1.253}},{{2,1},{578,0,-1,.2,-576,583,0,-4,2,-3,0,2,0,2,.5,6.2},{20,1,3,1.2,3,11,1,3.2,24,1,21,1,13,1.3,2165,1.3}},{{2,2},{145,163,-159,160,0,-157,12,147,2,1,-114,117,-2.2,-88,90,.2,-90,90,-11,1},{20,1,3,1.2,3,11,1,3.2,24,1,21,1,13,1.3,2165,1.3}},{{3,1},{585,0},{101,1}},{{3,2},{320,2},{101,1}}}, {290,1.51,-35,2,1.5,2.1,3,1.2,-28,-3.2,11,-19,1,9,-7,24,-23,2,1,2,17,22,-1,-14,-21,19,.2,1,2.1,4.1,8.1,.2,3,10.9,-35,.2,2,16.7,8.4,22.8,5,.2,-28,.4,3,2.1,.4,11,.4,-19,.4,1,.4,9,.4,17,.4,-23,.4,2,10.3,4.2,10.2,22,.4,-8,34.3,-26,4.3,12,8.5} }, __refPoss = { nil, nil, nil, - {427,-2.62,500,179,1.91,25,2.1,1.91,39,1.91,36,1.911,-2.34,16,1.4,2.1,6,2.1,1.4,26,4.3,10.6,6.1,56,1.2,18,2.1,1.2,8,2.1,4.1,10.1,16.9,18.4,220,-2.63,-3.2,-2.7,2.1,4.3,-2.2,3,-2.5,2.1,4.1,7,-2.7,2.1,4.3,-2.91,7,4,-2.2,2.1,-4.3,2,8,2}, + {427,-2.62,518,179,1.91,25,2.1,1.91,39,1.91,36,1.911,-2.34,16,1.4,2.1,6,2.1,1.4,26,4.3,10.6,6.1,56,1.2,18,2.1,1.2,8,2.1,4.1,10.1,16.9,18.4,254,-2.63,-3.2,-2.7,2.1,4.3,-2.2,3,-2.5,2.1,4.1,7,-2.7,2.1,4.3,-2.91,7,4,-2.2,2.1,-4.3,2,8,2}, nil, - {880,1.94,202,1.62,21,1.32,2.1,21,1.73,21,1.43,1236,1.02} + {880,1.94,220,1.62,21,1.32,2.1,21,1.73,21,1.43,1270,1.02} }, } return SkillLogicConfig \ No newline at end of file diff --git a/luafight/Modules/Battle/Data/ConfigData.lua b/luafight/Modules/Battle/Data/ConfigData.lua index 040bfe37a..6ebb0e1fc 100644 --- a/luafight/Modules/Battle/Data/ConfigData.lua +++ b/luafight/Modules/Battle/Data/ConfigData.lua @@ -184,7 +184,6 @@ ConfigName = { Tips = "TipsConfig", Hongmeng = "Hongmeng", HongmengUp = "HongmengUp", - NewHeroConfig = "NewHeroConfig", MainLevelBossConfig = "MainLevelBoss", ActivityGroups = "ActivityGroups", ArroGantFly = "ArroGantFly", diff --git a/luafight/Modules/Battle/Logic/Base/Effect.lua b/luafight/Modules/Battle/Logic/Base/Effect.lua index 1b24d9fd0..cf4dddaa7 100644 --- a/luafight/Modules/Battle/Logic/Base/Effect.lua +++ b/luafight/Modules/Battle/Logic/Base/Effect.lua @@ -54,6 +54,7 @@ end --效果表 local effectList = { + --造成[a]%的[b]伤害 --a[float],b[伤害类型] [1] = function(caster, target, args, interval, skill) @@ -62,6 +63,7 @@ local effectList = { caster.Event:DispatchEvent(BattleEventName.RoleViewBullet, skill, target) BattleLogic.WaitForTrigger(interval, function () BattleUtil.CalDamage(skill, caster, target, dt, f1) + -- LogError("造成伤害"..os:clock()); end) end, --造成[a]%的[b]伤害【AOE】 @@ -180,7 +182,7 @@ local effectList = { caster.Event:DispatchEvent(BattleEventName.RoleViewBullet, skill, target) BattleLogic.WaitForTrigger(interval, function () local dmg = BattleUtil.CalDamage(skill, caster, target, dt, f1) - if f2==0 then + if f2==0 or dmg==nil then return end BattleUtil.CalTreat(caster, caster, floor(dmg * f2),1,skill) @@ -3137,6 +3139,49 @@ local effectList = { target:AddBuff(Buff.Create(caster, BuffName.Control, round, ctrType)) end) end, + --近战造成[a]次,[b]%的[C]伤害 + --a[int],b[float],C[伤害类型] + [160] = function(caster, target, args, interval, skill) + local f1 = args[1] + local dt = args[2] + + caster.Event:DispatchEvent(BattleEventName.RoleViewBullet, skill, target) + local skillNumberTime=skill.skillnumberTime or nil + if skillNumberTime and skillNumberTime[1][1]~=0 then + for i = 1, #skillNumberTime do + local index=i + BattleLogic.WaitForTrigger(skillNumberTime[index][2]/1000, function () + BattleUtil.CalDamage(skill, caster, target, dt, f1) + -- LogError("触发"..index.."次"..skillNumberTime[index][2].."|"..interval) + --LogError("attackdamage"..os.date()) + --LogError("currentframe"..BattleLogic.CurFrame()) + + end) + + end + + else + + BattleLogic.WaitForTrigger(interval, function () + BattleUtil.CalDamage(skill, caster, target, dt, f1) + --LogError("attackdamage"..os.date()) + end) + end + + end, + --远程造成[a]次,[b]%的[C]伤害 + --a[int],b[float],C[伤害类型] + [161] = function(caster, target, args, interval, skill) + local f1 = args[1] + local dt = args[2] + caster.Event:DispatchEvent(BattleEventName.RoleViewBullet, skill, target) + BattleLogic.WaitForTrigger(interval, function () + BattleUtil.CalDamage(skill, caster, target, dt, f1) + + end) + end, + + -- --己方场上人数 < 地方人数,对[a]目标选择[b]属性[c]%的法术伤害并附加逆风效果,不低于对[d]目标选择[e]属性[f]%的御甲并附加乘风效果。 -- [160] = function(caster, target, args, interval, skill) -- local c1 = args[1]--持续回合数 @@ -3162,7 +3207,8 @@ local effectList = { --添加一个[a]印记,持续[b]回合 --a[int]:7逆风风 8:顺风风 - [160] = function(caster, target, args, interval, skill) + [162] = function(caster, target, args, interval, skill) + local type = args[1] local round= args[2] BattleLogic.WaitForTrigger(interval, function () @@ -3175,9 +3221,53 @@ local effectList = { target:AddBuff(Buff.Create(caster, BuffName.BreakArmor, round,type)) end) end, - --为目标添加[a]属性[b]%的御甲 + + --近战造成[a]次,[b]%的[C]伤害 + --a[int],b[float],C[伤害类型] + [163] = function(caster, target, args, interval, skill) + local f1 = args[1] + local dt = args[2] + + caster.Event:DispatchEvent(BattleEventName.RoleViewBullet, skill, target) + local skillNumberTime=skill.skillnumberTime or nil + if skillNumberTime and skillNumberTime[1][1]~=0 then + for i = 1, #skillNumberTime do + local index=i + BattleLogic.WaitForTrigger(skillNumberTime[index][2]/1000, function () + BattleUtil.CalDamage(skill, caster, target, dt, f1) + -- LogError("触发"..index.."次"..skillNumberTime[index][2].."|"..interval) + --LogError("attackdamage"..os.date()) + --LogError("currentframe"..BattleLogic.CurFrame()) + + end) + + end + + else + + BattleLogic.WaitForTrigger(interval, function () + BattleUtil.CalDamage(skill, caster, target, dt, f1) + --LogError("attackdamage"..os.date()) + end) + end + + end, + --远程造成[a]次,[b]%的[C]伤害 + --a[int],b[float],C[伤害类型] + [164] = function(caster, target, args, interval, skill) + local f1 = args[1] + local dt = args[2] + caster.Event:DispatchEvent(BattleEventName.RoleViewBullet, skill, target) + BattleLogic.WaitForTrigger(interval, function () + BattleUtil.CalDamage(skill, caster, target, dt, f1) + + end) + end, + --为目标添加[a]属性[b]%的御甲 --a[int],b[float] - [161] = function(caster, target, args, interval, skill) + + [165] = function(caster, target, args, interval, skill) + local pro = args[1] local v1 = args[2] BattleLogic.WaitForTrigger(interval, function () @@ -3187,6 +3277,20 @@ local effectList = { end) end, + --如果目标生命百分比小于等于[a]%,直接斩杀剩余所有血量(御甲无效) + --a[float] + [166] = function(caster, target, args, interval, skill) + local prop = args[1] + local isBoss=BattleUtil.CheckIsBoss(target) + if isBoss then + return + end + local curProp=BattleUtil.GetHPPencent(target) + if curProp>prop then + return + end + BattleUtil.Seckill(skill,caster,target) + end, } return effectList \ No newline at end of file diff --git a/luafight/Modules/Battle/Logic/Base/EffectCaster.lua b/luafight/Modules/Battle/Logic/Base/EffectCaster.lua index c92c11e6c..b05719466 100644 --- a/luafight/Modules/Battle/Logic/Base/EffectCaster.lua +++ b/luafight/Modules/Battle/Logic/Base/EffectCaster.lua @@ -71,6 +71,7 @@ function EffectCaster:DoEffect(caster, target, eff, duration, skill) -- if Effect[e.type] then Effect[e.type](caster, target, e.args, duration, skill) + -- LogError("Ч"..os.date()) end end @@ -135,13 +136,16 @@ function EffectCaster:Cast() local arr = self.effectTargets[i] if arr and #arr > 0 then -- Чӳ1֡Ч + -- LogError("עeffect"..os.date()) BattleLogic.WaitForTrigger(BattleLogic.GameDeltaTime, function() + local effects = effectGroup.effects local weight = math.floor(chooseId % 10000 / 100) local count = math.min(chooseId % 10, #arr) if count == 0 then count = #arr end + -- LogError("ִeffect1"..os.date()) table.sort(arr, function(a, b) return a.position < b.position end) @@ -152,6 +156,7 @@ function EffectCaster:Cast() if i == 1 then self.targetIsHit[arr[j]] = BattleUtil.CheckIsHit(self.skill.owner, arr[j],self.skill) end + --LogError("ִeffect2"..os.date()) self:takeEffect(self.skill.owner, arr[j], effects, i, self.skill.hitTime, self.skill) end end diff --git a/luafight/Modules/Battle/Logic/Base/Passivity.lua b/luafight/Modules/Battle/Logic/Base/Passivity.lua index 64729efe9..93031e91d 100644 --- a/luafight/Modules/Battle/Logic/Base/Passivity.lua +++ b/luafight/Modules/Battle/Logic/Base/Passivity.lua @@ -12720,5 +12720,78 @@ local passivityList = { end BattleLogic.Event:AddEvent(BattleEventName.BattleRoundChange, onBattleRoundChange,nil,nil,role) end, + --回合结束时,再次释放一次技能 + --a[int] + [480]=function(role,args,id,judge) + local num=args[1] + local onRoundChange=function(round) + if round<1 then + return + end + role:AddSkill(BattleSkillType.Special, false,true, nil,true) + end + BattleLogic.Event:AddEvent(BattleEventName.BattleRoundEndBefore, onRoundChange,nil,nil,role) + end, + --释放技能如果造成减怒,对目标造成 减除怒气*属性[a][b]%的伤害,每回合最多触发[c]次 + --a[int],b[float],c[int] + [481]=function(role,args,id,judge) + local f1=args[1] + local v1 =args[2] + local num=args[3] + local triggerNum=0 + local isTrigger=false + local curRound=0 + local onRageChange=function(caster, target, deltaRage,type,value) + if triggerNum>=num then + return + end + if caster~=role then + return + end + if type~=CountTypeName.Sub then + return + end + if (f1==12 or f1==13) and BattleUtil.CheckIsBoss(target) then + return + end + local val = floor(BattleUtil.FP_Mul(v1*value, target:GetRoleData(BattlePropList[f1]))) + BattleUtil.FinalDamageCountShield(nil,role,target,val) + isTrigger=true + end + + + local onSkillCastEnd=function(_skill) + if _skill and not _skill.isTriggerJudge and judge==1 then + return + end + if _skill.owner==role and (_skill.type==BattleSkillType.Special or _skill.type==BattleSkillType.Extra) then + role.Event:AddEvent(BattleEventName.RecordRageChange,onRageChange,nil,nil,role) + end + + end + role.Event:AddEvent(BattleEventName.SkillCast,onSkillCastEnd,nil,nil,role) + + + local onRoleTurn=function(_skill) + if _skill and not _skill.isTriggerJudge and judge==1 then + return + end + if isTrigger then + triggerNum=triggerNum+1 + isTrigger=false + end + role.Event:RemoveEvent(BattleEventName.RecordRageChange,onRageChange,nil,nil,role) + + end + role.Event:AddEvent(BattleEventName.SkillCastBefore,onRoleTurn,nil,nil,role) + + local onRoundChange=function(round) + BattleLogic.WaitForTrigger(2,function() + triggerNum=0 + end) + curRound=round + end + BattleLogic.Event:AddEvent(BattleEventName.BattleRoundStart, onRoundChange,nil,nil,role) + end, } return passivityList diff --git a/luafight/Modules/Battle/Logic/BattleLogic.lua b/luafight/Modules/Battle/Logic/BattleLogic.lua index 6d0c13120..dcc84ec9b 100644 --- a/luafight/Modules/Battle/Logic/BattleLogic.lua +++ b/luafight/Modules/Battle/Logic/BattleLogic.lua @@ -286,6 +286,7 @@ function BattleLogic.TurnRound(debugTurn) return else -- 上一轮结束 + BattleLogic.Event:DispatchEvent(BattleEventName.BattleRoundEndBefore, CurRound) BattleLogic.Event:DispatchEvent(BattleEventName.BattleRoundEnd, CurRound) end end @@ -430,6 +431,7 @@ function BattleLogic.CheckBattleLogic() end -- 释放技能后,递归交换阵营 + --RoleLogic SkillRole:CastSkill() end @@ -492,7 +494,9 @@ end function BattleLogic.WaitForTrigger(delayTime, action) + delayTime = BattleUtil.ErrorCorrection(delayTime) + local delayFrame = floor(delayTime * BattleLogic.GameFrameRate + 0.5) if delayFrame == 0 then --0延迟的回调直接调用 action() @@ -500,6 +504,7 @@ function BattleLogic.WaitForTrigger(delayTime, action) end local item = actionPool:Get() item[1] = curFrame + delayFrame + --LogError("curFrame"..curFrame+delayFrame) item[2] = action tbActionList:Add(item) end @@ -563,6 +568,7 @@ function BattleLogic.Update() local action = tbActionList.buffer[index] if action[1] <= curFrame then action[2]() + -- LogError("执行帧位"..action[1]) actionPool:Put(action) tbActionList:Remove(index) else diff --git a/luafight/Modules/Battle/Logic/Misc/BattleDefine.lua b/luafight/Modules/Battle/Logic/Misc/BattleDefine.lua index d58d89875..24fc5332e 100644 --- a/luafight/Modules/Battle/Logic/Misc/BattleDefine.lua +++ b/luafight/Modules/Battle/Logic/Misc/BattleDefine.lua @@ -54,7 +54,7 @@ BattleEventName = { BattleRoundStart = indexAdd(), BattleRoundChange = indexAdd(), BattleRoundEnd = indexAdd(), - + BattleRoundEndBefore = indexAdd(), RoleBeDamaged = indexAdd(), RoleDamage = indexAdd(), RoleBeDamagedBefore = indexAdd(), @@ -242,6 +242,7 @@ RoleDataName = { InitRage = indexAdd(), --初始怒气值 KongBonus = indexAdd(), --时空系伤害加成 KongReduce = indexAdd(), --时空系伤害减免 + PlayerAddSkill = indexAdd(),--主角连击 } -- 战斗表属性id对应战斗中属性数据 diff --git a/luafight/Modules/Battle/Logic/Monster/MonsterSkill/MSkill.lua b/luafight/Modules/Battle/Logic/Monster/MonsterSkill/MSkill.lua index 8799c1b77..b69d15f3d 100644 --- a/luafight/Modules/Battle/Logic/Monster/MonsterSkill/MSkill.lua +++ b/luafight/Modules/Battle/Logic/Monster/MonsterSkill/MSkill.lua @@ -47,7 +47,7 @@ function MSkill:Init(owner, group, index, skillData,playerSkillIndex) self.attackCount = effectData[4] -- 伤害持续时间内伤害次数 -- 初始化 local effects = {} - for i=5, #effectData do + for i=7, #effectData do table.insert(effects, effectData[i]) end self.effectCaster = EffectCaster:New() diff --git a/luafight/Modules/Battle/Logic/Role/RoleLogic.lua b/luafight/Modules/Battle/Logic/Role/RoleLogic.lua index c737bfd3a..6ec7f6d09 100644 --- a/luafight/Modules/Battle/Logic/Role/RoleLogic.lua +++ b/luafight/Modules/Battle/Logic/Role/RoleLogic.lua @@ -190,6 +190,7 @@ function RoleLogic:Init(uid, data, position) end -- 初始怒气值放在被动之后计算,使被动对初始怒气的影响生效 self.Rage = self.Rage + self:GetRoleData(RoleDataName.InitRage)-- 当前怒气值 + --self.readyAction=data.readAction or (ConfigManager.TryGetConfigData(ConfigName.RoleConfig,self.roleId).ReadyAction or 0) end @@ -562,15 +563,17 @@ function RoleLogic:AddSkill(type, isRage, isAdd, targets,isTrigger,isLoop) if self.ctrl_chaos then type=BattleSkillType.ChaosNormal --混乱普攻使用普攻特效 - effectData={self.skill[1],self.skill[2],self.skill[3],self.skill[4],{100001,{1,1,1}}} + -- effectData={self.skill[1],self.skill[2],self.skill[3],self.skill[4],{100001,{1,1,1}},self.skill[5],self.skill[6]} + effectData={self.skill[1],self.skill[2],self.skill[3],self.skill[4], self.skill[5] , self.skill[6] ,{200221,{1,1,1}}} isTriggerJudge=false end if self.ctrl_lock then type=BattleSkillType.ChaosNormal --嘲讽普攻使用普攻特效 - effectData={self.skill[1],self.skill[2],self.skill[3],self.skill[4],{200221,{1,1,1}}} + --effectData={self.skill[1],self.skill[2],self.skill[3],self.skill[4],{200221,{1,1,1}},self.skill[5],self.skill[6]} isTriggerJudge=false + effectData={self.skill[1],self.skill[2],self.skill[3],self.skill[4],self.skill[5] , self.skill[6] ,{200221,{1,1,1}}} end SkillManager.AddSkill(self, effectData, type, targets, isAdd, isRage,isTriggerJudge,isLoop) diff --git a/luafight/Modules/Battle/Logic/Role/Skill.lua b/luafight/Modules/Battle/Logic/Role/Skill.lua index 0058f43a2..332333f13 100644 --- a/luafight/Modules/Battle/Logic/Role/Skill.lua +++ b/luafight/Modules/Battle/Logic/Role/Skill.lua @@ -9,15 +9,17 @@ function Skill:New() return o end -function Skill:Init(role, effectData, type, targets, isAdd, isRage,isTriggerJudge) --type 0 异妖 1 点技 2 滑技 +function Skill:Init(role, effectData, type, targets, isAdd, isRage,isTriggerJudge,isSpuer) --type 0 异妖 1 点技 2 滑技 self.type = type --skill = {技能ID, 命中时间, 持续时间, 伤害次数, {目标id1, 效果1, 效果2, ...},{目标id2, 效果3, 效果4, ...}, ...} --效果 = {效果类型id, 效果参数1, 效果参数2, ...} self.owner = role self.id = effectData[1] -- 技能ID - self.hitTime = effectData[2] -- 效果命中需要的时间 - self.continueTime = effectData[3] -- 命中后伤害持续时间 - self.attackCount = effectData[4] -- 伤害持续时间内伤害次数 + self.hitTime = effectData[2] -- 效果命中需要的时间a EffectCombat.KeyFrame + self.continueTime = effectData[3] -- 命中后伤害持续时间 EffectCombat.SkillDuration + self.attackCount = effectData[4] -- 伤害持续时间内伤害次数 EffectCombat.SkillNumber + self.skillnumberTime = effectData[5] -- 多段伤害的每段触发时间 + self.AttackDisplaceOffset = effectData[6] -- 位移終點 self.isTriggePassivity = false -- 是否一个技能只触发一次被动 true:每次释放技能只会触发一次 self.triggerPassivityId={} self.isKill = false --是否技能击杀目标 @@ -33,9 +35,10 @@ function Skill:Init(role, effectData, type, targets, isAdd, isRage,isTriggerJudg else self.isTriggerJudge = true end + self.isSpuer=isSpuer -- 初始化 local effects = {} - for i=5, #effectData do + for i=7, #effectData do table.insert(effects, effectData[i]) end self.effectCaster = EffectCaster:New() @@ -63,6 +66,7 @@ end -- 释放技能 -- func 技能释放完成回调 function Skill:Cast(func) + --基本是自身的dispose加回合切换的检测 self.castDoneFunc = func self.isTriggePassivity=false self.triggerPassivityId={} @@ -79,10 +83,14 @@ function Skill:Cast(func) return end --end + --具体effect的触发,注册延迟造成伤害事件 self.effectCaster:Cast() + --LogError(self.id.."釋放完成"..os:clock()) end self.owner.Event:DispatchEvent(BattleEventName.SkillCastBefore, self) -- 释放技能开始 + --playview的技能表现层通过这个触发,具体的在skillcaster里面的skillcast函数 + --LogError("timestart"..os.date()) self.owner.Event:DispatchEvent(BattleEventName.SkillCast, self) BattleLogic.Event:DispatchEvent(BattleEventName.SkillCast, self) -- 只对效果1的目标发送事件,效果1是技能的直接伤害目标 @@ -90,13 +98,14 @@ function Skill:Cast(func) role.Event:DispatchEvent(BattleEventName.BeSkillCast, self) end) --技能的施法时间计算,根据当前目标id关联的持续时间,取其中时间最长的一个 - local duration = self.hitTime + self.continueTime + --local duration = self.hitTime + self.continueTime+(self.skillnumberTime[1][1]==0 and 0 or self.skillnumberTime[#self.skillnumberTime][2]/1000) + local duration = self.continueTime -- 结算时间向后延长0.2秒,避免在效果结算完成前就结束了技能释放 local time=1.2 -- if self.id==1282 then -- time=1 -- end - BattleLogic.WaitForTrigger(duration + time, function() + BattleLogic.WaitForTrigger(duration + time+((tonumber(self.skillnumberTime)==nil or self.skillnumberTime[1][1]==0) and 0 or self.skillnumberTime[#self.skillnumberTime][2])/1000, function() self.owner.Event:DispatchEvent(BattleEventName.SkillCastEnd, self) BattleLogic.Event:DispatchEvent(BattleEventName.SkillCastEnd, self) @@ -106,6 +115,7 @@ function Skill:Cast(func) end) -- 技能结束 self:EndSkill() + --LogError("end"..os.date()) --技能消息发送完后 iskill 设置为false self.isKill=false end) diff --git a/luafight/Modules/Battle/Logic/SkillManager.lua b/luafight/Modules/Battle/Logic/SkillManager.lua index d06053333..78d4ad856 100644 --- a/luafight/Modules/Battle/Logic/SkillManager.lua +++ b/luafight/Modules/Battle/Logic/SkillManager.lua @@ -46,6 +46,22 @@ function this.AddMonsterSkill(skill) "pos", skill.owner.position, "type", BattleSkillType.Monster ) + --判断主角连击属性 + local addPro=skill.owner:GetRoleData(RoleDataName.Speed) + if skill.owner.position==100 then + BattleUtil.RandomAction(addPro,function() + if skill.type == BattleSkillType.Monster then + local addSkill=skill + table.insert(this.MonsterSkillList, addSkill) + BattleLogManager.Log( + "Add Monster continue Skill", + "camp", skill.owner.camp, + "pos", skill.owner.position, + "type", BattleSkillType.Monster + ) + end + end) + end return skill end @@ -211,7 +227,7 @@ function this.Update() return end - + if this.MonsterSkillList and #this.MonsterSkillList > 0 then local skill = this.MonsterSkillList[1] table.remove(this.MonsterSkillList, 1) diff --git a/luafight/Modules/Battle/Readme.txt b/luafight/Modules/Battle/Readme.txt index 6cd0d406b..b66d53811 100644 --- a/luafight/Modules/Battle/Readme.txt +++ b/luafight/Modules/Battle/Readme.txt @@ -1,4 +1,10 @@ -v1.0.138 +v1.0.141 + 1.同步战斗提jiao +v1.0.140 + 1.同步战斗提jiao +v1.0.139 + 1.同步战斗提jiao +v1.0.138 1.同步战斗提jiao v1.0.137 1.同步战斗提交 diff --git a/serverlogic/src/main/java/com/ljsd/jieling/util/FightDataUtil.java b/serverlogic/src/main/java/com/ljsd/jieling/util/FightDataUtil.java index b4fbd5ecc..aef4d4ad4 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/util/FightDataUtil.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/util/FightDataUtil.java @@ -575,8 +575,11 @@ public class FightDataUtil { } private static LuaValue getEffectArgs(float[] effects) { - int sizeX = effects.length; LuaValue effectValue = new LuaTable(); + if (effects == null){ + return effectValue; + } + int sizeX = effects.length; for (int j = 0; j < sizeX; j++) { effectValue.rawset(j + 1, LuaValue.valueOf(effects[j])); } @@ -585,16 +588,20 @@ public class FightDataUtil { private static List getEffectArgs(int[][] effects) { List effectValueList = new ArrayList<>(); + if (effects == null){ + return effectValueList; + } int sizeY = effects.length; - if (sizeY > 0) { - for (int[] effect : effects) { - int sizeX = effect.length; - LuaValue effectValue = new LuaTable(); - for (int j = 0; j < sizeX; j++) { - effectValue.rawset(j + 1, LuaValue.valueOf(effect[j])); - } - effectValueList.add(effectValue); + if (sizeY == 0) { + return effectValueList; + } + for (int[] effect : effects) { + int sizeX = effect.length; + LuaValue effectValue = new LuaTable(); + for (int j = 0; j < sizeX; j++) { + effectValue.rawset(j + 1, LuaValue.valueOf(effect[j])); } + effectValueList.add(effectValue); } return effectValueList; }