Redis分布式锁进阶第十六篇
一、本篇前置衔接第九十二篇我们完成Redisson源码拆解、手写复刻、底层内核穿透彻底明白分布式锁代码层、脚本层、线程层原理。到此为止代码、源码、坑点、运维、监控、面试全部讲透。但很多开发最大的困惑依旧存在不同体量公司为什么锁架构完全不一样小公司单体锁够用大厂为什么要分片、双锁、红锁、异地多活架构到底如何迭代、如何选型、如何平滑升级第九十二篇专门复盘互联网大厂分布式锁完整演进路线从零架构到金融级架构层层拆解每一代架构优缺点、适用人群、踩坑记录给不同规模企业一套永久通用的分级落地标准。二、第一代架构原始单机锁初创公司最简版架构形态单Redis节点、String结构、原生SETNX、无集群、无主从、无过期优化。适用场景初创项目、内部后台、低并发管理系统、日活一万以内小型业务。业务简单、无秒杀、无大额资金流转。核心痛点宕机直接丢锁、无主从备份、无原子判断、极易误删、无续期机制。线上故障频发只能勉强维持简单互斥完全不具备生产稳定性。淘汰原因流量稍微上涨、服务器意外重启、网络波动直接出现超卖、重复提交、数据错乱。无任何容错能力现在正规企业基本全部淘汰。三、第二代架构标准主从锁中小企业通用版架构形态一主一从/一主两从、哨兵模式、Redisson基础可重入锁、开启看门狗、Lua原子脚本、自动主从切换。适用场景中小企业、普通电商、常规交易、日活十万以内、无超大流量爆款。追求稳定、开发成本低、运维简单。架构优势主从备份防止单节点宕机、哨兵自动故障转移、看门狗保障业务抖动不丢锁、Lua杜绝并发漏洞、代码规范简单易维护。遗留短板主从异步复制存在极小概率丢锁、热点Key无法承载超大流量、单节点CPU上限固定、无法支撑大促脉冲流量。四、第三代架构虚拟分片锁中大型电商爆款版架构形态Cluster集群、虚拟分片打散热点、本地分布式双层锁、网关前置削峰、库存异步对账。适用场景中型电商、活动频繁、秒杀爆款、日活几十万、频繁大促、瞬时脉冲流量高。解决痛点解决单Key热点打爆、单机CPU瓶颈、锁排队拥堵、线程堆积、大促流量雪崩。把一把热点锁拆分为几十把普通锁流量均匀打散吞吐量提升数倍。架构代价拆分后数据割裂、对账难度上升、开发复杂度提高、必须配套异步对账纠偏、分片倾斜监控。五、第四代架构红锁强一致架构金融资金级架构形态多独立物理节点、无主从、过半写入、RedLock红锁、无异步复制、强制强一致。适用场景银行、支付、账务、清算、大额扣款、资金结算、零容忍数据错乱核心链路。核心优势彻底根治主从切换丢锁、集群脑裂、异步延迟问题是Redis锁体系内一致性最高的架构。架构代价性能暴跌、RT翻倍、运维繁重、硬件成本高、不适合高并发秒杀、节点宕机修复困难。六、第五代架构异地多活全域锁大厂顶级架构架构形态同城双机房异地灾备、本地就近抢锁、全域中台仲裁、跨区状态同步、故障一键切流。适用场景头部互联网大厂、全国性业务、金融支付、需要全年99.999%可用性、禁止全域宕机。解决痛点单机房断电、光缆断裂、区域性网络瘫痪、极端灾难导致业务停摆。做到一地故障、多地承接、用户无感知、业务不中断。架构代价架构复杂度天花板、研发成本极高、运维门槛极高、普通中小企业完全无法复刻。七、企业分级选型黄金标准直接照搬、永久通用1、初创团队0~10万日活哨兵主从 普通可重入锁不做多余架构够用、简单、易维护。禁止过度架构、禁止盲目分片。2、成长型企业10~50万日活Cluster集群 常规分片 基础监控优化热点、抗流量波动保证活动不崩盘。3、电商活动型业务50~200万日活双层锁 虚拟分片 网关削峰 异步对账专门抗秒杀、抗脉冲流量。4、资金金融业务不限流量独立集群 红锁强一致放弃性能、死守数据资金链路绝不妥协。5、头部大厂全域业务多机房异地多活 全域锁中台做到灾难级容灾、全年无宕机。八、架构避坑90%企业踩过的四大架构误区误区一小项目盲目上集群分片。业务量极小强行拆分分片代码复杂度翻倍、BUG变多、维护困难属于典型过度架构。误区二非资金业务乱用红锁。普通秒杀业务强行使用红锁吞吐量暴跌、集群卡顿没必要追求极致一致性。误区三混用不同架构锁。项目内同时存在原生锁、手写锁、分片锁、红锁架构混乱、排查困难、后期无法维护。误区四只升级架构不升级监控。集群越复杂、监控越重要无监控复杂集群等于定时炸弹分片倾斜、锁残留无法及时发现。九、本篇小结技术不分好坏适配才是王道。第九十二篇完整复盘分布式锁五代架构演进从最简单单机锁到顶级异地多活锁清晰拆解每一代架构的优缺点、适用人群、落地代价。第九十二篇学会怎么用、怎么排错、怎么看懂源码本篇学会怎么选、怎么迭代、怎么贴合公司体量做架构。看懂本篇不再盲目跟风架构、不再胡乱选型能够根据业务流量、资金等级、运维能力定制最合适的分布式锁方案。下一篇第三十四篇专项拆解线上最难排查、最诡异、复现概率极低的隐性格级故障做全系列最终隐患清零。https://gitee.com/hjsjjdfd854/amgsju/blob/master/81535367.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/46160163.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/54234366.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/11447629.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/98040600.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/09745342.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/85610556.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/17148140.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/13194462.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/15048124.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/21168698.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/29584057.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/88753217.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/06579511.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/03417006.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/48572701.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/99945609.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/64011774.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/86778576.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/97309141.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/79488608.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/97931598.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/61784134.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/42363100.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/10570858.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/08084917.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/83946284.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/11949053.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/51687002.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/21239556.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/51575074.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/13424594.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/76075877.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/12347746.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/79851687.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/83462715.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/03197003.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/43414593.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/39239971.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/83556619.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/50905819.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/28552282.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/43274029.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/65860100.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/05663870.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/19331157.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/46439425.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/41393411.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/24600584.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/12214662.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/06793611.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/47506246.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/83208726.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/83569080.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/11713897.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/44968832.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/01749722.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/31761750.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/86580568.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/24619925.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/53243203.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/43937709.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/53289958.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/02626490.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/38627827.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/54530654.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/95450455.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/64620280.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/20010183.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/53812391.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/27802513.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/16203784.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/61425041.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/05020021.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/16788425.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/11552893.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/81180009.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/03164576.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/41703975.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/53122345.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/36033309.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/39437504.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/83165664.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/42231428.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/52743214.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/30700555.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/87530979.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/40749461.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/34773205.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/28667241.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/87007013.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/01614608.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/62782704.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/15911513.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/91820884.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/99951673.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/62891900.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/46934038.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/26289837.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/51567563.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/60148399.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/75026176.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/46490234.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/11975360.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/88906576.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/80612749.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/65354461.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/97649074.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/02698659.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/61185049.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/54242554.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/63326384.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/13493412.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/53075519.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/48668720.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/62197116.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/65579490.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/10223192.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/83148393.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/17160765.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/71278573.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/26833612.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/85907769.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/09827435.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/05136628.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/24561984.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/37553292.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/37846109.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/35711789.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/78716381.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/14967240.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/75465113.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/57451624.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/82904559.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/94271419.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/29967778.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/19016987.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/03186073.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/10148325.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/87843240.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/03162458.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/92310921.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/23471567.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/46511759.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/73138597.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/02021708.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/74848576.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/03179437.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/27184328.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/63828263.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/32541019.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/12371349.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/71189067.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/38754929.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/54612386.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/53282063.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/52367821.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/93032080.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/72089293.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/46780033.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/24987940.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/06293198.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/97504436.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/28638083.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/92876496.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/28021276.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/34869589.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/99715929.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/32059112.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/10691737.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/36057542.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/40284858.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/63781936.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/68359344.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/61769191.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/69460844.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/92762507.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/42645852.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/62357761.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/08671573.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/08043284.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/95789392.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/18307097.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/25367644.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/94365563.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/13687977.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/03590840.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/51589104.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/97298101.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/75994567.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/54317627.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/46264578.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/49481783.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/46149820.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/71108080.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/57513444.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/77550138.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/57807166.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/63998885.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/39080274.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/17692895.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/35624559.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/93123726.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/33602041.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/06643150.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/74745315.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/65799803.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/98359655.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/34375718.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/98368649.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/10689457.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/53892012.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/46724053.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/52123544.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/28392336.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/19724305.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/65642576.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/15957086.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/49751700.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/10385261.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/59015349.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/79790289.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/61349429.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/76209175.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/69991979.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/54972757.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/42599631.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/64475041.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/27884277.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/01095223.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/66894263.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/58693097.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/69154260.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/68397357.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/53394674.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/53689401.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/98280692.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/71282800.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/43874809.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/45681236.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/13149813.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/88866336.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/98645459.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/01233243.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/34149694.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/47006955.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/09651691.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/19726617.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/46675517.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/81899996.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/92058165.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/10135553.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/16839842.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/10546805.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/62865485.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/28215774.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/76247197.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/31027748.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/73865864.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/96303411.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/10190851.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/62745934.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/79961505.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/80701656.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/00471193.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/26887205.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/51566634.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/13154913.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/05780679.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/57258641.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/39136481.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/76773833.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/12971482.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/50547225.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/06209196.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/51578830.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/16683466.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/90802549.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/26315749.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/34485697.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/98487545.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/58634361.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/23463783.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/17338011.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/51378443.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/68287438.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/01994375.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/78058609.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/10910793.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/53493544.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/38712256.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/03667492.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/73439140.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/97221395.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/06036031.md/https://gitee.com/hjsjjdfd854/sansca/blob/master/48991108.md/https://gitee.com/hjsjjdfd854/amgsju/blob/master/34723001.md/https://gitee.com/hjsjjdfd854/linpxa/blob/master/27275760.md/https://gitee.com/hjsjjdfd854/jvwugx/blob/master/25724303.md/https://gitee.com/hjsjjdfd854/xerjuf/blob/master/30939349.md/