diff --git a/DOC/bugs.json b/DOC/bugs.json index a3fd8ff4b..472be5ca8 100644 --- a/DOC/bugs.json +++ b/DOC/bugs.json @@ -1,5 +1,5 @@ { - "nextId": 317, + "nextId": 318, "bugs": [ { "id": 2, @@ -3139,12 +3139,12 @@ "id": 312, "title": "@天火人雪糕 青蛙子丢蛇会打断和平奇观", "description": "", - "status": "open", + "status": "fixed", "priority": "medium", "module": "", "longTerm": false, "createdAt": 1780589231908, - "updatedAt": 1780589231908 + "updatedAt": 1780760899491 }, { "id": 313, @@ -3189,6 +3189,17 @@ "longTerm": false, "createdAt": 1780654816747, "updatedAt": 1780654816747 + }, + { + "id": 317, + "title": "船乘风可以跨过陆地到对面水体", + "description": "", + "status": "open", + "priority": "medium", + "module": "", + "longTerm": false, + "createdAt": 1780759209548, + "updatedAt": 1780759209548 } ] } \ No newline at end of file diff --git a/Unity/Assets/Resources/DataAssets/SkillDataAssets.asset b/Unity/Assets/Resources/DataAssets/SkillDataAssets.asset index 3dfdca811..3bc206ba7 100644 --- a/Unity/Assets/Resources/DataAssets/SkillDataAssets.asset +++ b/Unity/Assets/Resources/DataAssets/SkillDataAssets.asset @@ -358,7 +358,7 @@ MonoBehaviour: - SkillType: 19 SkillViewType: 0 SkillName: "\u79FB\u52A8\u6E85\u5C04" - SkillDesc: "\u79FB\u52A8\u65F6\uFF0C\u5BF9\u5468\u56F41\u683C\u8303\u56F4\u9020\u6210\u6E85\u5C04\u4F24\u5BB3\u3002" + SkillDesc: "**<\u4E3B\u52A8\u79FB\u52A8>**\u6216**<\u653B\u51FB\u79FB\u52A8>**\u65F6\uFF0C\u5BF9\u5468\u56F41\u683C\u8303\u56F4\u9020\u6210\u6E85\u5C04\u4F24\u5BB3\u3002" NotShow: 0 ShowOnUnitMono: 0 SkillIcon: {fileID: 21300000, guid: ef51b976984920b4e8601f0f548cd729, type: 3} diff --git a/Unity/Assets/Scripts/TH1_Data/MapData.cs b/Unity/Assets/Scripts/TH1_Data/MapData.cs index f75ec9c8c..d65393c19 100644 --- a/Unity/Assets/Scripts/TH1_Data/MapData.cs +++ b/Unity/Assets/Scripts/TH1_Data/MapData.cs @@ -1791,32 +1791,36 @@ namespace RuntimeData // collect 调用 CollectManager.Instance.OnAddUnitCollect(this, newUnit); - - if (waitTime > 0f) + + if (IsCurrentShowMap()) { - var tmpUnit = newUnit; - Timer.Instance.TimerRegister(this, () => + if (waitTime > 0f) + { + var tmpUnit = newUnit; + MapRenderer.Instance?.RenderUpdateUnitMap(showoffNewUnit: false); + Timer.Instance.TimerRegister(this, () => + { + //新增renderer + MapRenderer.Instance?.RenderUpdateUnitMap(); + //看情况是否显示,是否播放雾效 + if(tmpUnit.Renderer(this)?.InstantUpdateUnit(true)??false) + tmpUnit.Grid(Main.MapData)?.Renderer(Main.MapData)?.PlayVFXInSight(new GridVFXParams(GridVFXType.Fog)); + //刷新所属城市的CityInfo(人口数变化) + if (CityMap.GetCityById(cid, out var cityData)) + cityData.CityInfoRenderer(this)?.InstantUpdateCityInfo(); + },waitTime,"REISEN ILLUSION ADDUNITDATA"); + } + else { //新增renderer - MapRenderer.Instance.RenderUpdateUnitMap(); + MapRenderer.Instance?.RenderUpdateUnitMap(); //看情况是否显示,是否播放雾效 - if(tmpUnit.Renderer(this)?.InstantUpdateUnit(true)??false) - tmpUnit.Grid(Main.MapData)?.Renderer(Main.MapData)?.PlayVFXInSight(new GridVFXParams(GridVFXType.Fog)); + if(newUnit.Renderer(this)?.InstantUpdateUnit(true)??false) + newUnit.Grid(Main.MapData)?.Renderer(Main.MapData)?.PlayVFXInSight(new GridVFXParams(GridVFXType.Fog)); //刷新所属城市的CityInfo(人口数变化) if (CityMap.GetCityById(cid, out var cityData)) cityData.CityInfoRenderer(this)?.InstantUpdateCityInfo(); - },waitTime,"REISEN ILLUSION ADDUNITDATA"); - } - else - { - //新增renderer - MapRenderer.Instance.RenderUpdateUnitMap(); - //看情况是否显示,是否播放雾效 - if(newUnit.Renderer(this)?.InstantUpdateUnit(true)??false) - newUnit.Grid(Main.MapData)?.Renderer(Main.MapData)?.PlayVFXInSight(new GridVFXParams(GridVFXType.Fog)); - //刷新所属城市的CityInfo(人口数变化) - if (CityMap.GetCityById(cid, out var cityData)) - cityData.CityInfoRenderer(this)?.InstantUpdateCityInfo(); + } } if (GetPlayerDataByUnitId(newUnit.Id, out var playerData)) diff --git a/Unity/Assets/Scripts/TH1_Logic/Action/ActionLogic.cs b/Unity/Assets/Scripts/TH1_Logic/Action/ActionLogic.cs index 79c25ff92..1a3061f95 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Action/ActionLogic.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Action/ActionLogic.cs @@ -1062,8 +1062,15 @@ namespace Logic.Action actionParams.PlayerData.SpendCoin(GetCost(actionParams)); actionParams.CityData.CityWall = true; + var cityGrid = actionParams.CityData.Grid(actionParams.MapData); actionParams.CityData.SetCityRenderer(actionParams.MapData); - actionParams.CityData.Grid(actionParams.MapData)?.Renderer(actionParams.MapData)?.InstantUpdateGrid(true); + cityGrid?.Renderer(actionParams.MapData)?.InstantUpdateGrid(true); + if (actionParams.MapData == Main.MapData + && (cityGrid?.InMainSight() ?? false) + && cityGrid.MainSelfPlayerVisibleUnit(out var unit)) + { + unit.Renderer(actionParams.MapData)?.RenderUpdateUnitDefense(); + } return true; } @@ -2319,11 +2326,17 @@ namespace Logic.Action internal static class ActiveAttackActionRecorder { + public static void MarkStarted(MapData mapData, PlayerData player) + { + if (mapData == null || player == null) return; + player.TurnNoAttack = 0; + } + public static void MarkStarted(MapData mapData, UnitData unit) { if (mapData == null || unit == null) return; var player = unit.Player(mapData); - if (player != null) player.TurnNoAttack = 0; + MarkStarted(mapData, player); } } @@ -2556,23 +2569,40 @@ namespace Logic.Action //Step #1 处理所有攻击友军的逻辑 UnitData unit1 = actionParams.UnitData; - ActiveAttackActionRecorder.MarkStarted(actionParams.MapData, unit1); //UnitData unit2 = actionParams.TargetUnitData; CityData city1 = unit1.City(actionParams.MapData); //MapData mapData = actionParams.MapData; SkillType animSkillData = SkillType.NONE; UnitData suwakoUnit = null; + bool hasSuwakoAttack = unit1.GetSkill(SkillType.SUWAKOATTACK, out var _); + + if (unit1.GetSkill(SkillType.INFILTRATE, out _) + && targetGrid.Resource == ResourceType.CityCenter + && targetGrid.RealUnit(actionParams.MapData, out var hiddenTargetUnit)) + { + var actingPlayer = actionParams.PlayerData; + if (actingPlayer == null) + unit1.Player(actionParams.MapData, out actingPlayer); + if (hiddenTargetUnit.IsHideAndCantSee(actionParams.MapData, actingPlayer)) + { + hiddenTargetUnit.OnBeInteractTarget(actionParams.MapData, unit1, targetGrid); + return true; + } + } + //处理SUWAKO的地面攻击 - if (unit1.GetSkill(SkillType.SUWAKOATTACK, out var _)) + if (hasSuwakoAttack) { animSkillData = SkillType.SUWAKOATTACK; if (targetGrid.RealUnit(actionParams.MapData, out var targetGridUnit)) { + ActiveAttackActionRecorder.MarkStarted(actionParams.MapData, unit1); targetGridUnit.OnBeInteractTarget(actionParams.MapData, unit1, targetGrid); return true; } + // Suwako 对空地生成白蛇不是攻击,不能重置和平奇观的无攻击回合计数。 unit1.ClearActionPoint(); var fullType = new UnitFullType() { UnitType = UnitType.MoriyaHebi, GiantType = GiantType.None, UnitLevel = 1 }; @@ -2581,12 +2611,18 @@ namespace Logic.Action if (!actionParams.MapData.AddUnitData(targetGrid.Id, city1.Id, fullType, out suwakoUnit, 0.2f)) return false; } + else + { + ActiveAttackActionRecorder.MarkStarted(actionParams.MapData, unit1); + } //处理 INFILTRATE 的地面攻击:渗透单位攻击敌方空城心 → 直接偷金 + 自杀 + 生叛军,跳过远程攻击(Bomb)动画 bool infiltrateConsumed = false; if (unit1.GetSkill(SkillType.INFILTRATE, out var infSkillBase) && infSkillBase is InfiltrateSkill infSkill) { infiltrateConsumed = infSkill.PerformInfiltrateOnAttackGround(actionParams.MapData, unit1, targetGrid); + if (infiltrateConsumed) + ActiveAttackActionRecorder.MarkStarted(actionParams.MapData, actionParams.PlayerData); } //Step #3 处理动画 diff --git a/Unity/Assets/Scripts/TH1_Logic/Input/InputLogic.cs b/Unity/Assets/Scripts/TH1_Logic/Input/InputLogic.cs index 68ff6a973..1239e8430 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Input/InputLogic.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Input/InputLogic.cs @@ -84,6 +84,28 @@ namespace Logic { inputLock = false; } + + private bool IsCancelShortcutDown() + { + return Input.GetKeyDown(KeyCode.Escape) || Input.GetMouseButtonDown(1); + } + + private bool TryHandleCancelShortcut(bool allowPresentationClose) + { + if (HeroHintPanel.IsPinned) + { + EventManager.Publish(new HideHeroHintPanelEvent { Force = true }); + return true; + } + + if (UIManager.Instance?.UIInfoManager != null && + UIManager.Instance.UIInfoManager.TryHandleCurTaskByEsc()) + { + return true; + } + + return allowPresentationClose && PresentationManager.TryCloseCurrentByEsc(); + } public void Update() { @@ -94,7 +116,7 @@ namespace Logic { UIChatAreaMono.SendOrClose(); } - else if (Input.GetKeyDown(KeyCode.Escape) || Input.GetMouseButtonDown(1)) + else if (IsCancelShortcutDown()) { UIChatAreaMono.HideInputArea(); } @@ -128,17 +150,9 @@ namespace Logic } //允许Esc/右键关闭已打开的信息面板 - if (Input.GetKeyDown(KeyCode.Escape) || Input.GetMouseButtonDown(1)) + if (IsCancelShortcutDown()) { - if (HeroHintPanel.IsPinned) - { - EventManager.Publish(new HideHeroHintPanelEvent { Force = true }); - return; - } - if (UIManager.Instance?.UIInfoManager != null) - { - UIManager.Instance.UIInfoManager.TryCloseCurTaskByEsc(); - } + TryHandleCancelShortcut(false); } return; @@ -147,9 +161,9 @@ namespace Logic //如果PresentationManager正在播放,则只考虑相应UI Esc 和右键交互 if (PresentationManager.Busy) { - if (Input.GetKeyDown(KeyCode.Escape) || Input.GetMouseButtonDown(1)) + if (IsCancelShortcutDown()) { - if (PresentationManager.TryCloseCurrentByEsc()) + if (TryHandleCancelShortcut(true)) { return; } @@ -354,21 +368,11 @@ namespace Logic return; } - if (Input.GetKeyDown(KeyCode.Escape) || Input.GetMouseButtonDown(1)) + if (IsCancelShortcutDown()) { - // 优先关闭固定的HeroHintPanel - if (HeroHintPanel.IsPinned) + if (TryHandleCancelShortcut(false)) { - EventManager.Publish(new HideHeroHintPanelEvent { Force = true }); - return; - } - // 优先检查UIInfoManager是否有可关闭的界面 - if (UIManager.Instance?.UIInfoManager != null) - { - if (UIManager.Instance.UIInfoManager.TryCloseCurTaskByEsc()) - { - return; // 成功关闭UI,不再执行其他Escape逻辑 - } + return; // 成功关闭UI,不再执行其他Escape逻辑 } } diff --git a/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/AssaultFortressSkill.cs b/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/AssaultFortressSkill.cs index 1445200ad..f1052b85a 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/AssaultFortressSkill.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/AssaultFortressSkill.cs @@ -28,7 +28,13 @@ namespace Logic.Skill if (!mapData.GetGridDataByUnitId(self.Id, out var grid)) return 1f; if (mapData.GetCityDataByGid(grid.Id, out var city)) - return city.CityWall ? 4f : 1.5f; + { + if (!city.CityWall) return 1.5f; + if (!mapData.GetPlayerDataByCityId(city.Id, out var cityPlayer) || + !mapData.GetPlayerDataByUnitId(self.Id, out var unitPlayer)) + return 1.5f; + return mapData.SameUnion(cityPlayer.Id, unitPlayer.Id) ? 4f : 1.5f; + } if (grid.Resource == ResourceType.NavalBase || grid.Resource == ResourceType.Military || grid.Resource == ResourceType.RemiliaMilitary) return 1.5f; diff --git a/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/StompSkill.cs b/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/StompSkill.cs index 3badda842..e0cc3ab22 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/StompSkill.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/StompSkill.cs @@ -38,6 +38,7 @@ namespace Logic.Skill public override void OnMove(UnitData self, GridData grid, MapData mapData, MoveType moveType, List path = null) { if (mapData == null || self == null || grid == null) return; + if (moveType == MoveType.PassiveMove) return; if (!self.IsValidOnMap(mapData, grid)) return; if (!mapData.GetPlayerDataByUnitId(self.Id, out var selfPlayer)) return; diff --git a/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/YuugiPushSkill.cs b/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/YuugiPushSkill.cs index ee4e4942a..56594bddf 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/YuugiPushSkill.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/YuugiPushSkill.cs @@ -147,7 +147,7 @@ namespace Logic.Skill outPushed = false; outAttackDmg = actualDmg; var cDmg = Table.Instance.CalcCounterDamage(map, self, target); - bool canCounter = Main.UnitLogic.CanCounter(map, self, target); + bool canCounter = Main.UnitLogic.CanCounterByRules(map, self, target); Main.UnitLogic.DamageSettlement(map, self, target, actualDmg, DamageType.PushAttack); if (target.IsAlive() && self.IsAlive() && canCounter) { @@ -197,6 +197,10 @@ namespace Logic.Skill } } } + else if (!target.IsAlive()) + { + outFragmentType = FragmentType.NotMoveKill; + } } return true; } diff --git a/Unity/Assets/Scripts/TH1_Logic/Unit/UnitLogic.cs b/Unity/Assets/Scripts/TH1_Logic/Unit/UnitLogic.cs index 153a8f8dd..cf2122861 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Unit/UnitLogic.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Unit/UnitLogic.cs @@ -280,16 +280,14 @@ namespace Logic return true; } - //返回unit2是否能反击unit1 - public bool CanCounter(MapData mapData, UnitData unit1, UnitData unit2) + //返回unit2是否满足反击unit1的基础规则,不包含"本次攻击是否会杀死unit2"的预判。 + public bool CanCounterByRules(MapData mapData, UnitData unit1, UnitData unit2) { if (!unit2.CanAttackAll(mapData) && mapData.IsLeagueUnitByUnit(unit1.Id, unit2.Id)) return false; if (!mapData.GetPlayerDataByUnitId(unit1.Id, out var player1)) return false; if (!mapData.GetPlayerDataByUnitId(unit2.Id, out var player2)) return false; if (!mapData.GetGridDataByUnitId(unit1.Id, out var grid1)) return false; if (!mapData.GetGridDataByUnitId(unit2.Id, out var grid2)) return false; - // 计算攻击伤害 - int dmg1 = Table.Instance.CalcDamage(mapData, unit1, unit2); //设置unit1 attackendermark和相关参数 @@ -313,10 +311,20 @@ namespace Logic if (Table.Instance.CalcDistance(new Vector2Int(grid1.Pos.X,grid1.Pos.Y),new Vector2Int(grid2.Pos.X,grid2.Pos.Y)) > unit2.GetAttackRange(mapData)) canCounter = false; + return canCounter; + } + + //返回unit2是否能反击unit1。对外查询保留致死预判,真实攻击执行会在结算后按存活状态决定。 + public bool CanCounter(MapData mapData, UnitData unit1, UnitData unit2) + { + if (!CanCounterByRules(mapData, unit1, unit2)) return false; + + // 计算攻击伤害 + int dmg1 = Table.Instance.CalcDamage(mapData, unit1, unit2); if (dmg1 >= unit2.Health) //如果伤害直接够杀死对方 - canCounter = false; - return canCounter; + return false; + return true; } public void Attack(MapData mapData, UnitData unit1, UnitData unit2, out int attackDmg,out int counterDmg,out FragmentType fragmentType) @@ -380,7 +388,7 @@ namespace Logic attackDmg += dmg1; //判断对方能否反击的参数 //TODO 之后还是要把这些放到后面逻辑里去写,不要在最开头判断,一定判断不出来的 - bool canCounter = CanCounter(mapData,unit1,unit2); + bool canCounter = CanCounterByRules(mapData,unit1,unit2); if(unit1.UnitFullType.UnitType == UnitType.Minder)canCounter = false; //攻击会消耗所有类别的行动点数 diff --git a/Unity/Assets/Scripts/TH1_Renderer/MapRenderer.cs b/Unity/Assets/Scripts/TH1_Renderer/MapRenderer.cs index de93ee8e0..f97bf08d9 100644 --- a/Unity/Assets/Scripts/TH1_Renderer/MapRenderer.cs +++ b/Unity/Assets/Scripts/TH1_Renderer/MapRenderer.cs @@ -434,7 +434,7 @@ namespace TH1Renderer } //当unitMap出现新的对象时,新建对象 - public void RenderUpdateUnitMap() + public void RenderUpdateUnitMap(bool showoffNewUnit = true) { foreach (var unitData in Main.MapData.UnitMap.UnitList) { @@ -448,7 +448,10 @@ namespace TH1Renderer continue; ROUnitMap[unitData.Id] = unitRenderer; //立刻更新每个unit的视觉 - unitRenderer.InstantUpdateUnit(true); + if (showoffNewUnit) + unitRenderer.InstantUpdateUnit(true); + else + unitRenderer.InstantDisappear(); } } } diff --git a/Unity/Assets/Scripts/TH1_UI/Core/UIInfoManager.cs b/Unity/Assets/Scripts/TH1_UI/Core/UIInfoManager.cs index b914ee3d9..f79e2520d 100644 --- a/Unity/Assets/Scripts/TH1_UI/Core/UIInfoManager.cs +++ b/Unity/Assets/Scripts/TH1_UI/Core/UIInfoManager.cs @@ -101,6 +101,11 @@ namespace TH1_UI.Core closable.CancelMapHighlightsOrDoNothing(); } + public bool IsShow() + { + return _viewController?.IsShow() ?? false; + } + } public class UIInfoManager @@ -153,6 +158,19 @@ namespace TH1_UI.Core return true; } + /// + /// 尝试由当前InfoUI处理Esc/右键。 + /// 返回true表示本次快捷键已被Info层消费,即使只是关闭了Info内部子窗口。 + /// + public bool TryHandleCurTaskByEsc() + { + if (_task == null) return false; + if (!_task.CanCloseByEsc()) return _task.IsShow(); + _task.CancelMapHighlights(); // 先取消地图高亮 + _task.Close(); + return true; + } + public void OnChoiceHeroInfo() { @@ -191,4 +209,4 @@ namespace TH1_UI.Core } } -} \ No newline at end of file +} diff --git a/Unity/Assets/Scripts/TH1_UI/HintUI/HeroHintPanelCommonCircleMono.cs b/Unity/Assets/Scripts/TH1_UI/HintUI/HeroHintPanelCommonCircleMono.cs index 72a14fc3b..9c07f4d96 100644 --- a/Unity/Assets/Scripts/TH1_UI/HintUI/HeroHintPanelCommonCircleMono.cs +++ b/Unity/Assets/Scripts/TH1_UI/HintUI/HeroHintPanelCommonCircleMono.cs @@ -19,6 +19,9 @@ namespace TH1_UI.HintUI public Image SkillIcon; public Image SkillIconBG; + private static Color DefaultActionBgColor => + Table.Instance.SkillDataAssets.GetBGColor(SkillViewType.Normal, false); + /// /// 设置技能显示内容 /// @@ -52,7 +55,7 @@ namespace TH1_UI.HintUI SkillIcon.sprite = actionInfo.Icon; // Action 没有 SkillViewType,使用默认背景色 - SkillIconBG.color = Color.white; + SkillIconBG.color = DefaultActionBgColor; // 设置 HintTrigger 数据 HintTrigger.DataProvider.HintDataType = HintDataType.ActionHintData; @@ -66,7 +69,7 @@ namespace TH1_UI.HintUI public void ResetContent() { SkillIcon.sprite = null; - SkillIconBG.color = Color.white; + SkillIconBG.color = DefaultActionBgColor; HintTrigger.DataProvider.HintDataType = HintDataType.TextData; HintTrigger.DataProvider.Text = ""; } diff --git a/Unity/Assets/Scripts/TH1_UI/View/Top/UITopTopBarView.cs b/Unity/Assets/Scripts/TH1_UI/View/Top/UITopTopBarView.cs index 3505a2118..7522ca833 100644 --- a/Unity/Assets/Scripts/TH1_UI/View/Top/UITopTopBarView.cs +++ b/Unity/Assets/Scripts/TH1_UI/View/Top/UITopTopBarView.cs @@ -63,8 +63,7 @@ namespace TH1_UI.View.Top { UpdateAllInstant(); // 首次SetContent时强制重建布局,确保所有Panel的位置和大小正确 - if (FatherPanel != null) - LayoutRebuilder.ForceRebuildLayoutImmediate(FatherPanel); + RebuildCoinPanelLayout(); } public void UpdateAllInstant() @@ -79,11 +78,12 @@ namespace TH1_UI.View.Top PerfectTime.SetActive(Main.MapData.MapConfig.GameMode == GameMode.PERFECT); Turn.text = (Main.MapData.PlayerMap.SelfPlayerData.Turn + 1).ToString(); Faith.text = Main.MapData.PlayerMap.SelfPlayerData.PlayerScore.ToString(); - Coin.text = Main.MapData.PlayerMap.SelfPlayerData.PlayerCoin.ToString(); + SetCoinText(Main.MapData.PlayerMap.SelfPlayerData.PlayerCoin); CoinPerTurn.text = "" + Main.PlayerLogic.GetPlayerCoinPerTurn(Main.MapData,Main.MapData.PlayerMap.SelfPlayerData.Id) + ""; + RebuildCoinPanelLayout(); var techPerTurn = Main.PlayerLogic.GetPlayerTechPointPerTurn(Main.MapData, Main.MapData.PlayerMap.SelfPlayerData.Id); @@ -239,7 +239,7 @@ namespace TH1_UI.View.Top } if (time == 0) { - targetText.text = targetValue.ToString(); + SetTopBarAnimText(targetText, targetValue, panelType); return; } if (panelType == TopBarPanelType.Coin) @@ -269,12 +269,12 @@ namespace TH1_UI.View.Top Timer.Instance.TimerRegister(this, () => { if (animVersion != _topBarAnimVersion) return; - text.text = tmp.ToString(); + SetTopBarAnimText(text, tmp, panel); if (finalCheck) { if(panel == TopBarPanelType.Coin && Main.MapData != null) { - text.text = Main.MapData.PlayerMap.SelfPlayerData.PlayerCoin.ToString(); + SetTopBarAnimText(text, Main.MapData.PlayerMap.SelfPlayerData.PlayerCoin, panel); _coinAnimActive = false; } } @@ -302,13 +302,53 @@ namespace TH1_UI.View.Top var realCoin = Main.MapData.PlayerMap.SelfPlayerData.PlayerCoin; if (int.TryParse(Coin.text, out var showCoin) && showCoin == realCoin) return; CancelTopBarAnim(); - Coin.text = realCoin.ToString(); + SetCoinText(realCoin); } public void UpdateCoinPerTurn() { if (Main.MapData?.PlayerMap?.SelfPlayerData == null) return; CoinPerTurn.text = "" + Main.PlayerLogic.GetPlayerCoinPerTurn(Main.MapData,Main.MapData.PlayerMap.SelfPlayerData.Id) + ""; + RebuildCoinPanelLayout(); + } + + private void RebuildCoinPanelLayout() + { + RebuildTopBarLayout( + Coin != null ? Coin.rectTransform : null, + CoinPerTurn != null ? CoinPerTurn.rectTransform : null, + CoinTransform as RectTransform); + } + + private void SetTopBarAnimText(TextMeshProUGUI targetText, int value, TopBarPanelType panelType) + { + if (panelType == TopBarPanelType.Coin) + { + SetCoinText(value); + return; + } + + if (targetText == null) return; + targetText.text = value.ToString(); + } + + private void SetCoinText(int value) + { + if (Coin == null) return; + Coin.text = value.ToString(); + Coin.ForceMeshUpdate(); + RebuildTopBarLayout(Coin.rectTransform, CoinTransform as RectTransform); + } + + private void RebuildTopBarLayout(params RectTransform[] rebuildRoots) + { + foreach (var root in rebuildRoots) + { + if (root != null) + LayoutRebuilder.ForceRebuildLayoutImmediate(root); + } + if (FatherPanel != null) + LayoutRebuilder.ForceRebuildLayoutImmediate(FatherPanel); } diff --git a/Unity/graphify-out/GRAPH_REPORT.md b/Unity/graphify-out/GRAPH_REPORT.md index 1b586d760..d9b30d02f 100644 --- a/Unity/graphify-out/GRAPH_REPORT.md +++ b/Unity/graphify-out/GRAPH_REPORT.md @@ -1,7 +1,7 @@ # Graph Report - C:\TH1\TH1\Unity (2026-06-06) ## Corpus Check -- 9234 files · ~79,160,199 words +- 9234 files · ~79,160,260 words - Verdict: corpus is large enough that graph structure adds value. ## Summary @@ -10799,11 +10799,11 @@ Nodes (1): Data Scientist Example Subagent _Questions this graph is uniquely positioned to answer:_ - **Why does `NullCheck` connect `Community 3` to `Community 0`, `Community 1`, `Community 2`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 26`, `Community 27`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 33`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 44`, `Community 45`, `Community 47`, `Community 48`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 79`, `Community 80`, `Community 82`, `Community 83`, `Community 84`, `Community 85`, `Community 86`, `Community 87`, `Community 88`, `Community 95`, `Community 98`, `Community 114`, `Community 134`, `Community 176`, `Community 282`?** - _High betweenness centrality (0.487) - this node is a cross-community bridge._ -- **Why does `InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162()` connect `Community 6` to `Community 1`, `Community 3`, `Community 5`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 16`, `Community 17`, `Community 18`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 26`, `Community 27`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 34`, `Community 36`, `Community 37`, `Community 40`, `Community 41`, `Community 43`, `Community 44`, `Community 45`, `Community 47`, `Community 50`, `Community 51`, `Community 54`, `Community 55`, `Community 57`, `Community 59`, `Community 60`, `Community 61`, `Community 70`, `Community 72`, `Community 75`, `Community 76`, `Community 85`, `Community 95`?** - _High betweenness centrality (0.020) - this node is a cross-community bridge._ + _High betweenness centrality (0.469) - this node is a cross-community bridge._ +- **Why does `Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57()` connect `Community 1` to `Community 2`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 20`, `Community 22`, `Community 24`, `Community 26`, `Community 27`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 40`, `Community 41`, `Community 48`, `Community 50`, `Community 51`, `Community 54`, `Community 57`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 65`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 75`, `Community 76`, `Community 79`, `Community 80`, `Community 82`, `Community 84`, `Community 85`, `Community 86`, `Community 95`?** + _High betweenness centrality (0.027) - this node is a cross-community bridge._ - **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 6` to `Community 1`, `Community 2`, `Community 3`, `Community 5`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 20`, `Community 21`, `Community 22`, `Community 24`, `Community 26`, `Community 27`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 33`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 40`, `Community 41`, `Community 43`, `Community 45`, `Community 48`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 79`, `Community 82`, `Community 83`, `Community 84`, `Community 85`, `Community 86`, `Community 87`, `Community 95`, `Community 98`, `Community 114`?** - _High betweenness centrality (0.017) - this node is a cross-community bridge._ + _High betweenness centrality (0.025) - this node is a cross-community bridge._ - **Are the 88620 inferred relationships involving `NullCheck` (e.g. with `AnimancerComponent_set_Animator_m6D48D5AFEC5608F1982DDAF26C3512CFE72F2A8D()` and `AnimancerComponent_get_IsPlayableInitialized_mB5A207CBB483E0F77C65DB4AB7615F282E91CD30()`) actually correct?** _`NullCheck` has 88620 INFERRED edges - model-reasoned connections that need verification._ - **Are the 9079 inferred relationships involving `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` (e.g. with `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` and `FastComparer__ctor_m651D576617C3EE91A72F9B695130EFBECE6F5DD0()`) actually correct?** diff --git a/Unity/graphify-out/graph.json b/Unity/graphify-out/graph.json index b3a78a152..13b4f5b0d 100644 Binary files a/Unity/graphify-out/graph.json and b/Unity/graphify-out/graph.json differ diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 9ed6a7f42..56c1a238b 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,12 +1,12 @@ -# Graph Report - C:\TH1\TH1 (2026-06-06) +# Graph Report - C:\TH1\TH1 (2026-06-07) ## Corpus Check -- 9376 files · ~93,810,116 words +- 9378 files · ~94,616,701 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 579375 nodes · 1399016 edges · 2114 communities detected -- Extraction: 67% EXTRACTED · 33% INFERRED · 0% AMBIGUOUS · INFERRED: 456004 edges (avg confidence: 0.8) +- 579624 nodes · 1400627 edges · 2169 communities detected +- Extraction: 67% EXTRACTED · 33% INFERRED · 0% AMBIGUOUS · INFERRED: 456671 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output ## Community Hubs (Navigation) @@ -2124,13 +2124,68 @@ - [[_COMMUNITY_Community 2111|Community 2111]] - [[_COMMUNITY_Community 2112|Community 2112]] - [[_COMMUNITY_Community 2113|Community 2113]] +- [[_COMMUNITY_Community 2114|Community 2114]] +- [[_COMMUNITY_Community 2115|Community 2115]] +- [[_COMMUNITY_Community 2116|Community 2116]] +- [[_COMMUNITY_Community 2117|Community 2117]] +- [[_COMMUNITY_Community 2118|Community 2118]] +- [[_COMMUNITY_Community 2119|Community 2119]] +- [[_COMMUNITY_Community 2120|Community 2120]] +- [[_COMMUNITY_Community 2121|Community 2121]] +- [[_COMMUNITY_Community 2122|Community 2122]] +- [[_COMMUNITY_Community 2123|Community 2123]] +- [[_COMMUNITY_Community 2124|Community 2124]] +- [[_COMMUNITY_Community 2125|Community 2125]] +- [[_COMMUNITY_Community 2126|Community 2126]] +- [[_COMMUNITY_Community 2127|Community 2127]] +- [[_COMMUNITY_Community 2128|Community 2128]] +- [[_COMMUNITY_Community 2129|Community 2129]] +- [[_COMMUNITY_Community 2130|Community 2130]] +- [[_COMMUNITY_Community 2131|Community 2131]] +- [[_COMMUNITY_Community 2132|Community 2132]] +- [[_COMMUNITY_Community 2133|Community 2133]] +- [[_COMMUNITY_Community 2134|Community 2134]] +- [[_COMMUNITY_Community 2135|Community 2135]] +- [[_COMMUNITY_Community 2136|Community 2136]] +- [[_COMMUNITY_Community 2137|Community 2137]] +- [[_COMMUNITY_Community 2138|Community 2138]] +- [[_COMMUNITY_Community 2139|Community 2139]] +- [[_COMMUNITY_Community 2140|Community 2140]] +- [[_COMMUNITY_Community 2141|Community 2141]] +- [[_COMMUNITY_Community 2142|Community 2142]] +- [[_COMMUNITY_Community 2143|Community 2143]] +- [[_COMMUNITY_Community 2144|Community 2144]] +- [[_COMMUNITY_Community 2145|Community 2145]] +- [[_COMMUNITY_Community 2146|Community 2146]] +- [[_COMMUNITY_Community 2147|Community 2147]] +- [[_COMMUNITY_Community 2148|Community 2148]] +- [[_COMMUNITY_Community 2149|Community 2149]] +- [[_COMMUNITY_Community 2150|Community 2150]] +- [[_COMMUNITY_Community 2151|Community 2151]] +- [[_COMMUNITY_Community 2152|Community 2152]] +- [[_COMMUNITY_Community 2153|Community 2153]] +- [[_COMMUNITY_Community 2154|Community 2154]] +- [[_COMMUNITY_Community 2155|Community 2155]] +- [[_COMMUNITY_Community 2156|Community 2156]] +- [[_COMMUNITY_Community 2157|Community 2157]] +- [[_COMMUNITY_Community 2158|Community 2158]] +- [[_COMMUNITY_Community 2159|Community 2159]] +- [[_COMMUNITY_Community 2160|Community 2160]] +- [[_COMMUNITY_Community 2161|Community 2161]] +- [[_COMMUNITY_Community 2162|Community 2162]] +- [[_COMMUNITY_Community 2163|Community 2163]] +- [[_COMMUNITY_Community 2164|Community 2164]] +- [[_COMMUNITY_Community 2165|Community 2165]] +- [[_COMMUNITY_Community 2166|Community 2166]] +- [[_COMMUNITY_Community 2167|Community 2167]] +- [[_COMMUNITY_Community 2168|Community 2168]] ## God Nodes (most connected - your core abstractions) -1. `NullCheck` - 88465 edges -2. `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` - 9096 edges -3. `Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` - 7602 edges -4. `a_a__m5CE653E63E64F6F44A52545E39AB9C7A828465FF()` - 7016 edges -5. `Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57()` - 6873 edges +1. `NullCheck` - 88624 edges +2. `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` - 9098 edges +3. `Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` - 7601 edges +4. `a_a__m1C0AA11936DAB6AF4A5CCC0FB2E60E981141B49F()` - 7227 edges +5. `Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57()` - 6867 edges 6. `ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B()` - 4969 edges 7. `ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC()` - 4621 edges 8. `NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B()` - 3941 edges @@ -2153,19 +2208,19 @@ ### Community 0 - "Community 0" Cohesion: 0.0 -Nodes (14441): AboutablePage, Styles, Unity.VisualScripting, Absolute, AbsoluteNode, UnityEditor.ShaderGraph, AbstractMaterialGraphTests, TestableMNode (+14433 more) +Nodes (14481): AboutablePage, Styles, Unity.VisualScripting, Absolute, Unity.VisualScripting, AbstractMaterialGraphTests, TestableMNode, UnityEditor.ShaderGraph.UnitTests (+14473 more) ### Community 1 - "Community 1" Cohesion: 0.0 -Nodes (29801): AnimancerTransitionAssetBase_get_IsValid_mB4C59A3B3264A0DC1DC65E3325D555C2A86AAB89(), ManualMixerState_Initialize_m398A1584887A4A25DAB79C380481DF049CA2F712(), AnimancerEvent_IsNullOrDummy_m04FD6626F6403F56A356B11B8D7953C8D90D3AE7(), AnimancerUtilities_GatherFromAsset_m59973A7B45FFE4B677331302724735CB71697BB7(), AnimancerUtilities_GatherFromTracks_mA4A0A89FC99BAB7065098C0733BA2CA7AD7A6B74(), AnimancerUtilities_IsValid_mFCABBB5F087B1C0A03FFD6A9786C82064A8E9998(), AnimancerUtilities_TryGetIsLooping_mBCBEF5DE6CD1F8D001F39EA0F17191A7654E6402(), AnimancerUtilities_TryGetLength_m86EBA98BA85FB24EF91FC5061B8616F18CC7EF79() (+29793 more) +Nodes (33084): List_1_Clear_m059AC18FEA5690B2C704ECB038500E96E8411EF3_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline() (+33076 more) ### Community 2 - "Community 2" Cohesion: 0.0 -Nodes (30764): List_1_Clear_m059AC18FEA5690B2C704ECB038500E96E8411EF3_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline() (+30756 more) +Nodes (24797): AnimancerTransitionAssetBase__ctor_m8B042983702448B0C59777089D5D8F37DFA54E13(), AnimancerEvent_IsNullOrDummy_m04FD6626F6403F56A356B11B8D7953C8D90D3AE7(), AnimancerNode_ToString_mD81CEE0BC93088FC2103378D52759577AECC9477(), AnimancerPlayable_get_Disposables_m4ECF320723FEE796F592ECAEC218835814CA1372(), List_1__ctor_mB4C51AD04BB1308274A370FED1FA4A1651C5766F(), cvl_fvd_m50B091988DFE145ACBCA59B1FCA088554072A85F(), eri_fvd_m009442D2D00DE407E8E14141DAC22AD2A47216C2(), bae_frj_m1D2B6B9CD906B924E10FBA0DD549C56518F1696B() (+24789 more) ### Community 3 - "Community 3" Cohesion: 0.0 -Nodes (30327): AnimancerTransition_1_get_Events_m78D8BAE802A98F774D15AFE46B1F8E0D22549E9A(), CartesianMixerState_AppendParameter_mDDFF2159409DBEFC5FE37EB8F583311504B54737(), ClipTransitionSequence_Apply_m2AF26F06F0ACB9ECE44BE0FC2B260730D7EDC1D3(), ClipTransitionSequence_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m40A64AE5A73B97D2FC12FCDD21C468F3204EFA6F(), DirectionalMixerState_AppendParameter_m6922ADE519D29B2FC01546CAF311FA3D90156615(), MixerState_AppendDetails_m9B33313721825F29CEDB015BB122BD1FEAACDFA6(), MixerState_GetDisplayKey_m93A0E9A6667935267884AB742BCA6C93145320EB(), NamedAnimancerComponent_GetKey_m9A7CE520EEED18898AC560EB3C12ABDF4E283DEF() (+30319 more) +Nodes (27209): AnimancerTransition_1_get_Events_m78D8BAE802A98F774D15AFE46B1F8E0D22549E9A(), CartesianMixerState_AppendParameter_mDDFF2159409DBEFC5FE37EB8F583311504B54737(), ClipTransitionSequence_Apply_m2AF26F06F0ACB9ECE44BE0FC2B260730D7EDC1D3(), ClipTransitionSequence_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m40A64AE5A73B97D2FC12FCDD21C468F3204EFA6F(), DirectionalAnimationSet8_GetDirectionName_m99F846A5396B2618469B9FCD292F023EE8242423(), DirectionalAnimationSet_GetDirectionName_mB737FB2A1AFA67D5538113CAEF9A6DA96341C1FA(), DirectionalMixerState_AppendParameter_m6922ADE519D29B2FC01546CAF311FA3D90156615(), MixerState_AppendDetails_m9B33313721825F29CEDB015BB122BD1FEAACDFA6() (+27201 more) ### Community 4 - "Community 4" Cohesion: 0.0 @@ -2173,2035 +2228,2035 @@ Nodes (0): ### Community 5 - "Community 5" Cohesion: 0.0 -Nodes (20269): UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mF5FF85F4C57B299E380CF84FDFAC28D2A77F06AE(), Sequence_AssertNormalizedTimes_mF10ED038769E25B5B1B3339F20CA038168035EE2(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_m2BE2470D8C93AFF745AA294C1F157F07A98CB5D8(), cg_fpk_mBC4A89502C45CAD424FFECB81258F8CE811FC296(), cg_haj_m0135BBC9C17D75D14C6991597D50EE8498102623(), cg_jov_mFD3CC3799DADC431FBD3C1372EB7D512CC7E0F38(), cg_vy_m58F451A442BC2F6015E8E9021E9FA50DF62872A5(), UIOutsideModView__cctor_mB67925DE0A6169145BA0E3D5732127119C6FFFD5() (+20261 more) +Nodes (21592): AnimancerLayer_GetOrCreateState_m1426F26ACE4FB2BAC869C6BAF05322F353B01803(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mF5FF85F4C57B299E380CF84FDFAC28D2A77F06AE(), Sequence_AssertNormalizedTimes_mF10ED038769E25B5B1B3339F20CA038168035EE2(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_m2BE2470D8C93AFF745AA294C1F157F07A98CB5D8(), cvc_fln_mD29A78C0FF8D93F849CBD92B0FC963EC5ABFB50A(), cvc_fyl_m05BC61A6CD61D58052063EBE103E4D053D5C43F5(), cvc_gkc_mBAB672CD6A486986E9BFE61E10DA06311FE7B0B6(), cvc_jqa_mF1E04AEA6366C6012D3EB02361FFF575A37E0C9D() (+21584 more) ### Community 6 - "Community 6" Cohesion: 0.0 -Nodes (14803): jje_jmh_m1074F5EDC2D720190B10A2C12F62EEB7C12B310E(), U3CU3Ec_U3CCalculateLegionMergeStrategyU3Eb__96_0_mFBB3897C227379DA1A960118B80B7010196B792D(), U3CU3Ec_U3CCalculateLegionStrategyU3Eb__94_0_mE8D3E92366655880EA8950345369667204A4FCBD(), U3CU3Ec_U3CCalculateLegionStrategyU3Eb__94_1_m58C8447C845ABA1047504C848466263CA8A18716(), U3CU3Ec_bxd_m93DA3D3C05F17BD0BB2118716CFB1220F68589C3(), U3CU3Ec_llz_m520D7579C6D3AEB3414DFDB79A9A54A9BB8190D0(), U3CU3Ec_po_mC082DE31BCE4C95182DBFF82A06C39CED08D0CA1(), SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_inline() (+14795 more) +Nodes (17244): UnitFullType_Equals_m97DCFA03FBBAF98473B6EB44CA8AE9FC5A52EFDC(), UnitFullType_Equals_m97DCFA03FBBAF98473B6EB44CA8AE9FC5A52EFDC_AdjustorThunk(), ViVector3_Equals_m690B15824C397692CE5EED0FA194016C4C020356(), ViVector3_Equals_m690B15824C397692CE5EED0FA194016C4C020356_AdjustorThunk(), PublishedFileId_t_Equals_m0FD5B90517DC9CB6D520F8215A779A46EE9E81C5(), PublishedFileId_t_Equals_m0FD5B90517DC9CB6D520F8215A779A46EE9E81C5_AdjustorThunk(), Array_InternalArray__IndexOf_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF07BF5F5398BF2BAB64549E748EE4AB14C413DEA_gshared(), Array_InternalArray__IndexOf_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_m5C656649404473FCCBA2F013D347509932EEE920_gshared() (+17236 more) ### Community 7 - "Community 7" Cohesion: 0.0 -Nodes (13156): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), DelegateState__ctor_mDD5278B33FD519B95B51AE33D6481009357F0C9C(), DelegateState_get_CanEnterState_mE0B1940DC98D5C01A1FE5BE3468A5D340B55EA4C(), DelegateState_get_CanExitState_m0908AD6A342ECCC3C3D27A360145433E457F534C(), DelegateState_OnEnterState_m3BC881A29399C345B88031258C80C8C2F8C90B1C(), DelegateState_OnExitState_mF8FBA5B03C9860985C0C2D5F5378A5D248C88B1C(), Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(), State__ctor_m76B9B9B55CDA4BE0B2FB575D16718DBE851A1FF4() (+13148 more) +Nodes (14278): Action_1__ctor_m352C88C0080092E4462B504026030C6C4786DFDE(), Disposable_AcquireContent_mFAB7242FAD69588B23C93B0CB1F37E538F52451A(), Disposable__ctor_m4DE0705D6774DC8FC787B1C3A76F5C1C9833DEDE(), U3CU3Ec_U3CAcquireContentU3Eb__3_0_m54647822F4DD88B78E2C634C3045FE491CB1071D(), IBlackboardExtensions_GetVariable_TisIl2CppFullySharedGenericAny_mAAB4BE955FF45B37B04DCC7FF5E0F39E155A93ED_gshared(), IBlackboardExtensions_GetVariable_TisRuntimeObject_m0EFC723C8F99146B83FC64268245473A2ED5586C_gshared(), Image_SetProperty_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m246071DD2162CC6DC2D5B7996EC9AE3FEBA0CF8B_gshared(), InlineStyleAccess_SetStyleValue_TisIl2CppFullySharedGenericStruct_mB12FCD17BDDD7CA9BD0334F17B6AD52381693DD2_gshared() (+14270 more) ### Community 8 - "Community 8" Cohesion: 0.0 -Nodes (12617): AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m07B1968ADD8E11FDD8FC35F78D0AD1E19DFF2BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m45FC770F3613E37DBED5982944504D45B0D8DBFB_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m76FF7CAA649CEFFF377F3CDD59D6BB2DA1083BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m9E9CF620A0C9BF97705EDB41F6EBBD12013726BC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mC4F1F19A11E9A6769A2B8FED9DA7BDE71E38AF7F_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mCAF4912F692C728426BC1DD0FAA3ACF50C0C18FC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mD68D9CE32DF5A44E06ED6912EF841CCF685A3B64_gshared(), AsyncGPUReadback_RequestIntoNativeSlice_TisIl2CppFullySharedGenericStruct_m2495F6B08EE33A6DDF62D22E7D84DD0C87E7B1CA_gshared() (+12609 more) +Nodes (13342): Curve_CalculateWeight_mDCDA17A2450343FF7052CD41E87E1A2089CBA223(), PlayableAssetState_GetBindingDetails_mECA07195B2CD2F48C9D4C522BD3B42577B49FA1C(), UnityAssisstant_CharacterShaderReplace_mCBC1ED956498AAF075DC25BC8801184CF9725F2B(), UnityAssisstant_MaterialMatCapTextureAddReplace_mEC9D46BD0863CA418ECE902E6AEC553112869DF7(), UnityAssisstant_MaterialTextureAlphaReplace_m09A77B3A5E09244ABC42DBE2265C0D99BD1A869E(), UnityAssisstant_MaterialToonShaderTextureReplace_m4D4B2CBFAEAA2B26AC3F0D9F2C41ACACF17AC230(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m07B1968ADD8E11FDD8FC35F78D0AD1E19DFF2BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m45FC770F3613E37DBED5982944504D45B0D8DBFB_gshared() (+13334 more) ### Community 9 - "Community 9" Cohesion: 0.0 -Nodes (11290): Array_InternalArray__get_Item_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF01CACE82616CAD4135BE2FAC266A923369F3A61_gshared(), Array_InternalArray__get_Item_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_mBB17D60F1712E426F2F0B07792407B20EA2EB501_gshared(), Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4_gshared(), Array_InternalArray__get_Item_TisEmptyData_t7183F0DFD428196C101194E2BD35B1681D39DE38_m4E363D91A090DE6D5D8541534EEE3729D2B039E0_gshared(), Array_InternalArray__get_Item_TisEmptyData_tED1BB22234DD4A2FBA90416759D025535300EDCB_mBC8EC334648A6C8D325BB50BF78BEE3F1C4F36F5_gshared(), Array_InternalArray__get_Item_TisEntry_t09BA97E1C10BA3153E13B7671F9098E6B33FE01D_mD4861419AEF24F0F0D21F3CEDEA1D65ADD564522_gshared(), Array_InternalArray__get_Item_TisEntry_t1FBA063A7158A877EF3D4306E7BE0559C3A13202_mAF65B8EE9850BE6D057B6248E41076CEB617BA28_gshared(), Array_InternalArray__get_Item_TisEntry_t23291431B0F4E6D5E55BE94929C25DAF99F6D19A_m3644030E0B144CEBCA2E5942A86BBC04C7F144E1_gshared() (+11282 more) +Nodes (11816): Span_1__ctor_mA426411A0F5450BCD564C621BB663B1273773B99_gshared_inline(), Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline(), SpanHelpers_IndexOfAny_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D2D736D49303A286F55D3500FB84FA9AC2BCCDF_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), AnimancerTransition_1_Apply_m81B651D4AAAE7201A0D0930ABD5B06417AB5491E(), AnimancerTransition_1__ctor_m22D29EC4A72525AB18299ACBAF1C5D80FEB643D4(), AnimancerTransition_1_get_State_m42696D0E54362EDA39E8C2FC0BC55A03918AFB14(), AnimancerUtilities_CopyExactArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m3566222C86AC022E6FB1190E4D56506995687226() (+11808 more) ### Community 10 - "Community 10" Cohesion: 0.0 -Nodes (10136): HashCode_Combine_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m4ACF71EFA41042F2FDF0F9EB8EE7971029562D99(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539_AdjustorThunk(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9_AdjustorThunk(), CSteamID_GetHashCode_m97DD624F8F68FDE26E18938DE3E01AB605707133(), CSteamID_GetHashCode_m97DD624F8F68FDE26E18938DE3E01AB605707133_AdjustorThunk(), PublishedFileId_t_Equals_mC2B5F36CF5FC031E3AC7A1FA5529EBB63DB48C8A() (+10128 more) +Nodes (9736): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), DelegateState__ctor_mDD5278B33FD519B95B51AE33D6481009357F0C9C(), DelegateState_get_CanEnterState_mE0B1940DC98D5C01A1FE5BE3468A5D340B55EA4C(), DelegateState_get_CanExitState_m0908AD6A342ECCC3C3D27A360145433E457F534C(), DelegateState_OnEnterState_m3BC881A29399C345B88031258C80C8C2F8C90B1C(), DelegateState_OnExitState_mF8FBA5B03C9860985C0C2D5F5378A5D248C88B1C(), Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(), State__ctor_m76B9B9B55CDA4BE0B2FB575D16718DBE851A1FF4() (+9728 more) ### Community 11 - "Community 11" Cohesion: 0.0 -Nodes (9930): TaskCompletionSource_1_SetCanceled_m094D37FCDE8D0431163D8998A9000CA96CADBB45_gshared(), TaskCompletionSource_1_SetException_m58C4BD8A0F4F1FAA417EC05E2EDC79F0D6C5ADB7_gshared(), TaskCompletionSource_1_SetException_mD00D9D5CDCB6918F2C2AC03B1E88468BCCB3E0A8_gshared(), TaskCompletionSource_1_SetResult_m20A3A9EACC332D8ECC8AA9E690B90E6C56835CED_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m45AA23B38ECE6B28D89D0E72F41C33D1B7A0023A_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9C23B628D687A4A080B37C12F33BF81CDC3FBA2C_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mB8B25E983E8492E65BD4449CAC4570EC7D37B12E_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCC65E5FB39395ECB4D1C69FB35E5E3F22CCA23AB_gshared() (+9922 more) +Nodes (12302): DontAllowFade__ctor_m533802D5DC3A7A1BB7444049EBF16CDFD08B824E(), ExitEvent__ctor_m6BE8C1994D6C90917D903A7174230EE88FD3A7F3(), ManualMixerState_Initialize_m540E4EBEC88D78848D9098D9C22459D7FFDB77E4(), MixerState_SetChild_mB53D3FC5945C1F8E690444FC23E7A3720B60B27F(), AnimancerNode_RecreatePlayable_m1A0D747B77B96A001A3561BEA04CE616CEE130AA(), AnimancerNode_RequireUpdate_mCD83C817E4FBB68D90537D32E3422FFE37A837FA(), AnimancerPlayable_RequirePreUpdate_mE162A2C72396C6C71A5E095584871A7C76EE850C(), DelayedPause__ctor_m0832C4DA8F1AD95094A36EF55D94EE961A88F28F() (+12294 more) ### Community 12 - "Community 12" Cohesion: 0.0 -Nodes (9244): ISteamMatchmakingPingResponse_op_Explicit_m8593173049C7A18A1DC3B93B1B6DC570A4521F82(), ISteamMatchmakingPlayersResponse_op_Explicit_m2149947B8ECDD60B2C564137EF45E06C203E67BE(), ISteamMatchmakingRulesResponse_op_Explicit_m4298BEEF5209A23E35911047B49186DFA220F384(), AllocatorManager_Allocate_TisIl2CppFullySharedGenericStruct_mC90FE69E6FB94B1EDDFC81D29625CAB1468D5173_gshared(), UnsafeList_1_Create_TisIl2CppFullySharedGenericStruct_m8627017950345485DA98161D0324739277E29AC5_gshared(), FixedStringMethods_Append_TisIl2CppFullySharedGenericStruct_m4790FDE5938B9B59B78178D38023391632B50701_gshared(), NativeArrayExtensions_Initialize_TisIl2CppFullySharedGenericStruct_m10ABF0E8955AE4504761E521587E2D89638A1972_gshared(), NativeArrayExtensions_Initialize_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m8CE87D920E01F7DDBF409D77486D923A85F54A46_gshared() (+9236 more) +Nodes (10745): a_mb_mBD7D966F6A247640D16343EC1A4452F123F3A33F(), a_lfz_m1FE79C1F12A771D5AAD66E1F29929D73B09D4823(), CallbackDispatcher_Shutdown_m588A998D2A39DF9F0D5BD157F294096B76FC7A26(), ReferenceEqualityComparer_GetHashCode_mA7F13434B33F3039C39E013E2BEB65F96D54A76D(), ConversionHelpers_TryParseEnum_TisIl2CppFullySharedGenericStruct_m390C4040071ADA6A66A161E10FC7B9083380C684_gshared(), DataCommonEventSource_Trace_TisIl2CppFullySharedGenericAny_m48217756B9E6E7203BE8879023F75CCA9F162478_gshared(), DataCommonEventSource_Trace_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mF7F0C527D5B6EE78EFF33249E36838EA9015E446_gshared(), DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_gshared() (+10737 more) ### Community 13 - "Community 13" Cohesion: 0.0 -Nodes (6543): HttpWebRequest_U3CRunWithTimeoutU3Eb__242_0_TisIl2CppFullySharedGenericAny_m4E6C98DD423CDEC7FCA891C4669EC332FBBC344C_gshared(), HttpWebRequest_U3CRunWithTimeoutU3Eb__242_0_TisRuntimeObject_mD7B34A54CEBE629B055F4E06844C6D50EE0A241B_gshared(), ObjectEqualityComparer_1_GetHashCode_mE28C25CC705B54AED50B5F9E8B22315DE8CF48E1_gshared(), Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395(), Array_Empty_TisAttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E_m0F7B255CF739B8C78F6D0663FFFD44753100FCAE_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m44F781E90531F7FCDB12BC4290CD4394A887FC06_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+6535 more) +Nodes (9808): ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m45AA23B38ECE6B28D89D0E72F41C33D1B7A0023A_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9C23B628D687A4A080B37C12F33BF81CDC3FBA2C_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mB8B25E983E8492E65BD4449CAC4570EC7D37B12E_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCC65E5FB39395ECB4D1C69FB35E5E3F22CCA23AB_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1D013AE163EFD669E73C0607DAF91114B6A70FBB_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2DC80696CB10F3234513DD4801723E9EABE2A362_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mE069C6F63386029336C98FFF30466317E5149C02_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mEA5A5A4B901C49C4B5228AC16D5767A54EEDE3DD_gshared() (+9800 more) ### Community 14 - "Community 14" Cohesion: 0.0 -Nodes (6991): Enumerator_System_Collections_IEnumerator_get_Current_m3FCE22D15C040EE9F8614C711F786205BA6AAFB6_gshared(), Enumerator__ctor_m0030D0B8AB9E107228FCD8C1859FA4EC37E2ABA0(), Enumerator__ctor_m0030D0B8AB9E107228FCD8C1859FA4EC37E2ABA0_AdjustorThunk(), Enumerator__ctor_m0030D0B8AB9E107228FCD8C1859FA4EC37E2ABA0_gshared(), Enumerator__ctor_m03072B568706181FB2D1DFF0559E3DA9B12D1C6A(), Enumerator__ctor_m03072B568706181FB2D1DFF0559E3DA9B12D1C6A_AdjustorThunk(), Enumerator__ctor_m03072B568706181FB2D1DFF0559E3DA9B12D1C6A_gshared(), Enumerator__ctor_m045BF429CABA0E35B27786B3B47FA32C17A9F832() (+6983 more) +Nodes (8197): Enumerator_System_Collections_IEnumerator_get_Current_m3FCE22D15C040EE9F8614C711F786205BA6AAFB6_gshared(), ArraySegment_1_get_Array_m1896B96738A2C6D236E8ACCDC37FA1E9FB9E8A2F_inline(), ArraySegment_1_get_Array_m2209FF2DA83FC6294670A626757B7060D2A5E4D8_inline(), ArraySegment_1_get_Array_m264A3366D24FE7843D686F6DE4C76BCE61152D12_inline(), ArraySegment_1_get_Array_m2E2331A2A9F6CE753D983CC7AC8BD0CBD6F9B304_inline(), ArraySegment_1_get_Array_m4363EBFD63680D0CC1DB7C48FF3DAC8B73968668_inline(), ArraySegment_1_get_Array_m5397A754192C48C7212136A27BB5D70F90D8C8EE_inline(), ArraySegment_1_get_Array_m5AF838FB97EA85F51EEE70E6E88E733310A46AC7_inline() (+8189 more) ### Community 15 - "Community 15" Cohesion: 0.0 -Nodes (7238): ExampleInput_get_SpaceHold_m5462056899742B828DCF278ABD6BE64CC358A52A(), eb_evf_m954DA0EE3A13D510C25E9AD330A61944BC17A2D8(), fa_bcl_mDF19D910AC6CB333D9F05F26F5F05E85233AEC52(), fa_bdk_m3C7E0B420C8B6E0773C7ACB73C3FFAE811E82DA1(), fa_czo_mD32A68356056D7D2316CD753B069BC4F5ADE1912(), fa_dcp_mFBFBC23E33C287D0087A13D2E28E3E28EA60BB19(), fa_eld_m8DEB6EE7A1415B29F0590AE82D87302F1A34F416(), fa_gfn_m6E63C469A45AED755576A6F75D1619E58F19CF17() (+7230 more) +Nodes (7220): UsageAttribute__ctor_m802D31C3F757DF295A0016E479D8CD2B1923B9D0(), Contract_EnsuresOnThrow_TisRuntimeObject_m19124F8798C1C42ADD0A80B888F84F2F729AEAB7_gshared(), Contract_EnsuresOnThrow_TisRuntimeObject_m91E64FA6BDE5589ECCAB2B2ECF68A7AF8B1DF2F2_gshared(), Contract_Requires_TisRuntimeObject_m3D1EB51CB1E7A30DB811F4EBA939171C648ACB79_gshared(), Contract_Requires_TisRuntimeObject_m46DA15C6B834C645330543A940D4DE4476945E6F_gshared(), ConversionHelpers_TryParseEnum_net3_TisIl2CppFullySharedGenericStruct_m0783055F533AA4F6F3DEEE26B3133A30911EB5DA_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline() (+7212 more) ### Community 16 - "Community 16" Cohesion: 0.0 -Nodes (5923): ExampleInput_get_MouseScrollDelta_m1771DE7E240D08A6E6688E30A9505D4F620A5CD2(), Array_ConvertAll_TisUIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mE3B3B77D82DFDD194E5CFDB57A92FC72F6F302DF(), bo_bse_m41FA4550D56AEE38B27587B4D8D05158BD594594(), bo_hcy_mF3FF771075343C915D70D005FC929101AB01601B(), bo_mku_m552F16FD095C9D91751D7A20A86A503ACF2AE55B(), bo_ogl_mB4EE47D91F88D0AB6B649C6BFB89AB6EE0D2F458(), bo_Start_mF609A751805BC72C48BD308168E89A01F9752ED0(), bo_ue_m069A8887876116811B6E0C5BD956BC0B8B798334() (+5915 more) +Nodes (8040): ExampleInput_get_SpaceHold_m5462056899742B828DCF278ABD6BE64CC358A52A(), dyv_dcw_mF1D0839390601A2CD212780DF823A5DA86A8B788(), dyv_jdf_mE414668CBB0F38B42734DE40558C6AB6157CE38F(), dyv_okz_mEBB227572EE2CB9033587BAADC48F69927BCF263(), eb_ep_m03033FC8676A9C8FACF0C9C3A646DA35FB224E64(), eb_evf_m954DA0EE3A13D510C25E9AD330A61944BC17A2D8(), eb_evu_mB2404D31D6F567C83DADBCF82B035BB6C847EAD5(), eb_hru_mC931013A0AA89A1DC74B110AD2481FDEF5D2DC27() (+8032 more) ### Community 17 - "Community 17" Cohesion: 0.0 -Nodes (1381): AnimancerUtilities_Wrap_m1F43DDCC9F8591CDEA8960139DD5ADCDD61082E0(), ViMath2D_CaculateAngle_m68F1DC7E73BF46B4F75C9B6FE5FEB0C232C0F127(), ViMath2D_Rotate_m65A649472D92AAE814096E6C58FF7032E736F479(), ViMath2D_Rotate_mCDD0B57046EA2D46190A710166D6F617159490CC(), ViMathDefine_Asin_mF8A1D7D32BDE863864F9BADC6FAFC4AACF090372(), ViMathDefine_FloorToInt_m7E24285927B2DD8F147207D9707EDECD9A10DF48(), ViQuaternion_FromAxisAngle_m7001696736E2CC6CFB4223182E0320D1987E01B9(), Avx2 (+1373 more) +Nodes (6335): ViConstValueReader_Load_m696763DE81E928C4BD56B73502CC72C449ACE97C(), DecimalSerializer_Serialize_m127DB2CFD977E7BF516387D1069DD6A69CF0F228(), RepresentationConverter_ToDecimal128_m498F5944C5B1165A3C152E72DAEFD9BF6299F03D(), RepresentationConverter_ToDecimal_m291E988E72D03C165E93EE497AA5E1EF2A5442F8(), RepresentationConverter_ToDecimal_m3F252EF220448BD8CCAE152678B84E854AF3C928(), RepresentationConverter_ToDouble_m066DF58D13A3F58A02B98C14BF73BA7EB1A48E3E(), RepresentationConverter_ToInt32_m97422425B38795B22177A03489AD45F2A34E7B09(), RepresentationConverter_ToInt64_mEC148B66C1605343130BB00DABD7631867A87F70() (+6327 more) ### Community 18 - "Community 18" Cohesion: 0.0 -Nodes (5745): AllYCounterSkillFormatter__ctor_m6AB3E4CCCB7594B2B99183B67EBABA3C612AD860(), AllYCounterSkillFormatter_Deserialize_m052EE207F21240B74FE727761B38EA7FF4D54DEF(), AllYCounterSkillFormatter_Serialize_m30416CA2C7B0D3035E0BA16B43A3449F596C4DA9(), AllYTranSportSkillFormatter__ctor_m50530EECC38B18AE56E3F7934E587E65513A8442(), AllYTranSportSkillFormatter_Deserialize_mC37151BC56C5B0AD46D43D146FF8194811364517(), AllYTranSportSkillFormatter_Serialize_m4B443A9BFE6127DD1DF9D8364A770E6338834CB3(), ArrayFormatter_1__ctor_m1F89951DD8633FFCC1C1C08A4A29C4C9AE5F562F(), ArrayFormatter_1__ctor_m43BBF210FFA429C3830B367ECC751E440C70D1F6() (+5737 more) +Nodes (6020): Empire_Equals_m36ECFE9283B332C99A513F4088A8F1784B61665E(), Empire_Equals_m36ECFE9283B332C99A513F4088A8F1784B61665E_AdjustorThunk(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539_AdjustorThunk(), Vector2_op_Addition_m08FDB48B512979D8747CB6AA3EF13F9260DE9D09_inline(), a_et_mC2BD8C161D45790981A52378633BA354A678F12E(), a_is_m51D1F7D7122CC2507B50C839C9509D727595ABE7(), a_kp_m619A5539FAF5ED4FB9650862394829E9E9716F68() (+6012 more) ### Community 19 - "Community 19" Cohesion: 0.0 -Nodes (5215): DecimalSerializer_Serialize_m127DB2CFD977E7BF516387D1069DD6A69CF0F228(), RepresentationConverter_ToDecimal_mEFCEDB9B1267CDE8D5FF4495D7F6E5D7AD147B5F(), RepresentationConverter_ToDouble_m066DF58D13A3F58A02B98C14BF73BA7EB1A48E3E(), RepresentationConverter_ToInt32_m97422425B38795B22177A03489AD45F2A34E7B09(), RepresentationConverter_ToInt64_mEC148B66C1605343130BB00DABD7631867A87F70(), BsonInt32_ToDecimal_m0315D63B13F8A2250F05E89A1F2BC615A52901D1(), BsonInt64_ToDecimal_mF52CC16D1EF09F4C2BA796ADBAEF52487CB970D6(), Delegate_Clone_m8B21D18E314730820FF59DF786DD02BFF1D750C6() (+5207 more) +Nodes (5696): UnitFullType_hxn_mE6873091DA726B44E0BC7CA5D683C22582EAEB6C(), AllYCounterSkillFormatter__ctor_m6AB3E4CCCB7594B2B99183B67EBABA3C612AD860(), AllYCounterSkillFormatter_Deserialize_m052EE207F21240B74FE727761B38EA7FF4D54DEF(), AllYCounterSkillFormatter_Serialize_m30416CA2C7B0D3035E0BA16B43A3449F596C4DA9(), AllYTranSportSkillFormatter__ctor_m50530EECC38B18AE56E3F7934E587E65513A8442(), AllYTranSportSkillFormatter_Deserialize_mC37151BC56C5B0AD46D43D146FF8194811364517(), AllYTranSportSkillFormatter_Serialize_m4B443A9BFE6127DD1DF9D8364A770E6338834CB3(), ArrayFormatter_1__ctor_m1F89951DD8633FFCC1C1C08A4A29C4C9AE5F562F() (+5688 more) ### Community 20 - "Community 20" Cohesion: 0.0 -Nodes (5228): Vector2_op_Addition_m08FDB48B512979D8747CB6AA3EF13F9260DE9D09_inline(), CSteamID_Equals_m77EE4FA4CBC76E814C384F9E8969E8229DB5F65F(), CSteamID_Equals_m77EE4FA4CBC76E814C384F9E8969E8229DB5F65F_AdjustorThunk(), CSteamID_Equals_m89E4C9BC7F08814FA47BB73FABFCF5F6102021CD(), CSteamID_Equals_m89E4C9BC7F08814FA47BB73FABFCF5F6102021CD_AdjustorThunk(), HSteamNetConnection_Equals_m38B50988A48FFA0F7A05026E62AD8AD4EE85D4A3(), HSteamNetConnection_Equals_m38B50988A48FFA0F7A05026E62AD8AD4EE85D4A3_AdjustorThunk(), HSteamNetConnection_Equals_m8016C914E2A79078B4A2DCAC8F021B1680A181B2() (+5220 more) +Nodes (3722): AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(), AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared(), AllocatorManager_CreateAllocator_TisIl2CppFullySharedGenericStruct_mB4F41AC6CCD167F35B0272A4F38196E32A364C03_gshared(), AllocatorManager_DestroyAllocator_TisIl2CppFullySharedGenericStruct_mBB46F1DC9D6AC1889886DD0B5DB327AB990498B5_gshared(), AllocatorManager_Free_TisIl2CppFullySharedGenericStruct_mDBB8A012EA9B6286BBF754ABC553D87E29E2084C_gshared(), AllocatorManager_FreeBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB883369C2E1D3F28BFE59C63AF0075570A928971_gshared(), AllocatorManager_Register_TisIl2CppFullySharedGenericStruct_m8B3695A797B092D9B3D0D561B25C0065E5ADDD35_gshared(), AllocatorManager_UnmanagedUnregister_TisIl2CppFullySharedGenericStruct_mA531B69E183CA56C8BC7D2DD419333CA5E2DC004_gshared() (+3714 more) ### Community 21 - "Community 21" Cohesion: 0.0 -Nodes (3708): AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(), AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared(), AllocatorManager_CreateAllocator_TisIl2CppFullySharedGenericStruct_mB4F41AC6CCD167F35B0272A4F38196E32A364C03_gshared(), AllocatorManager_DestroyAllocator_TisIl2CppFullySharedGenericStruct_mBB46F1DC9D6AC1889886DD0B5DB327AB990498B5_gshared(), AllocatorManager_Free_TisIl2CppFullySharedGenericStruct_mDBB8A012EA9B6286BBF754ABC553D87E29E2084C_gshared(), AllocatorManager_FreeBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB883369C2E1D3F28BFE59C63AF0075570A928971_gshared(), AllocatorManager_UnmanagedUnregister_TisIl2CppFullySharedGenericStruct_mA531B69E183CA56C8BC7D2DD419333CA5E2DC004_gshared(), AllocatorManager_Unregister_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB8321A6BD18AF456ABC30E251B65EDA0381ECE93_gshared() (+3700 more) +Nodes (5149): kqr_mes_mCF51E6D31FE505877C12088DA519071FDD336616(), bae_bhl_m63377B5C6D6485DAEBBC283AA3082FCAA0612DA6(), bae_jlb_m7A5188EEC61EF41412300D1AC0A099C009A990B3(), bae_kaz_m5D89F694FFF754E4C1D9B232D4743E444E85BFA5(), bae_mdi_mECA0FAC0778435D7BEF5226106B2DBCA2425DA94(), bae_mfb_mA0BD8E3FE8AFDEA22E63BF5E8538AAC48E5989BF(), bag_cbq_m210C6B22966B8A013C5FBFA4E1D3D1C4459A7433(), bag_jrh_mE3EE198317D453350E6E55C2FD5861086935E810() (+5141 more) ### Community 22 - "Community 22" Cohesion: 0.0 -Nodes (5664): ArraySortHelper_1_BinarySearch_m07E77AE5F025761CFC1EFF940733C99F13F654EB_gshared(), ArraySortHelper_1_BinarySearch_m0BCE6EC3BE95132C034E9626C43F2A2FAED04D3B_gshared(), ArraySortHelper_1_BinarySearch_m2E2CDF934D38871D8986995661CB1D62071A5CB6_gshared(), ArraySortHelper_1_BinarySearch_m2F04ACEEAC9A3195EF97DA8703640035B24AC1A5_gshared(), ArraySortHelper_1_BinarySearch_m315E2B25213727CCFDEAC95743F382D00A2C66E5_gshared(), ArraySortHelper_1_BinarySearch_m31FF9BB3CA599A5B4279B8C152629FA796203D20_gshared(), ArraySortHelper_1_BinarySearch_m3237E149FCC78B4A3CA769DE9A2073D34C46BA5A_gshared(), ArraySortHelper_1_BinarySearch_m384CB8DC9FC270B9F4B13C64D56F420AEF48028F_gshared() (+5656 more) +Nodes (5690): ArraySortHelper_1_BinarySearch_m07E77AE5F025761CFC1EFF940733C99F13F654EB_gshared(), ArraySortHelper_1_BinarySearch_m0BCE6EC3BE95132C034E9626C43F2A2FAED04D3B_gshared(), ArraySortHelper_1_BinarySearch_m2E2CDF934D38871D8986995661CB1D62071A5CB6_gshared(), ArraySortHelper_1_BinarySearch_m2F04ACEEAC9A3195EF97DA8703640035B24AC1A5_gshared(), ArraySortHelper_1_BinarySearch_m315E2B25213727CCFDEAC95743F382D00A2C66E5_gshared(), ArraySortHelper_1_BinarySearch_m31FF9BB3CA599A5B4279B8C152629FA796203D20_gshared(), ArraySortHelper_1_BinarySearch_m3237E149FCC78B4A3CA769DE9A2073D34C46BA5A_gshared(), ArraySortHelper_1_BinarySearch_m384CB8DC9FC270B9F4B13C64D56F420AEF48028F_gshared() (+5682 more) ### Community 23 - "Community 23" Cohesion: 0.0 -Nodes (4966): AnimancerEvent_get_CurrentState_mE8E313D5B0D8BE0D33BAF3F90CCACC40D7187757_inline(), AnimatedFloat__ctor_m59D324D6645B57D393432637B0D2E605A1020815(), AnimatedProperty_2__ctor_m0007D6054E7E45C2F38CFE60962EC8A21875286B(), ClipTransitionSequence_U3CApplyU3Eb__8_0_m5D27C9D952751AE3965E0E239DDDDB7F09B2CAB5(), SoloAnimation__ctor_mA06DA0C075953851A6D80AE03F7AC5BC70149C74(), SpriteRendererTextureSwap__ctor_m3F8F87B6DB3791FA12F76170588E7AE5074FE2FC(), U3CU3Ec__DisplayClass6_0_U3CUnityEngine_ISerializationCallbackReceiver_OnAfterDeserializeU3Eb__0_mD4402B9D94CFAD2DB1905E4B84B00D8B11EEB184(), Action_1__ctor_m352C88C0080092E4462B504026030C6C4786DFDE() (+4958 more) +Nodes (3641): MonoTlsProviderFactory_GetProvider_m8684E3A1AFB043FA00DEC4BCF95F8B288C136936(), MonoTlsSettings_Clone_mC4F9A27889ADD0B275018B32BCDA67C30865EA7D(), MonoTlsSettings_CopyDefaultSettings_m4B0A3E8B7D106FA7F0D243FB2A0A4B115CD21942(), String_TrimStart_m210863A5E84BC22EC0487A1543D3680979DD87EE(), Math_Max_m12FB4E1302123ADB441E3A7BDF52E8404DDE53A2(), Math_Max_m670CC45E68892199F0ED53A131DAB78A953389BB(), Math_Max_m8CA8DA82E6369E8477818CB2C8C83ADDA7B4CEFD(), Math_Min_m1B6A7DBB8BBF41DE5E09DAAA47913DE1A3168B88() (+3633 more) ### Community 24 - "Community 24" Cohesion: 0.0 -Nodes (4505): AnimancerPlayable_Evaluate_m50B69F25DC93E6A64FD6D85CAD213156EEBD0B20(), AnimancerPlayable_get_IsValid_m1D469E2995826A7D0079F9BF9150D4CB158B3CDF(), AnimancerPlayable_get_UpdateMode_mA09454B9BDE03B7AF58365A52729B046A70F4215(), TransformResetter_Awake_m69CFFFE535C396BC546711F97D0710B5EAFBC920(), Func_3__ctor_m4263A9576AF8680AD717340BBF12DBE5A85C3D10(), Parser_MakeParserResult_TisRuntimeObject_m7E6192E9401DF53A21EDE52F93F65492B3F75F28(), Parser_ParseArguments_m3877BA723376D855984FBDBDD858224499C5C018(), ParserSettings_get_AutoHelp_mF42179B082414130F9EC9A3F8DF81AAED5E3AA83_inline() (+4497 more) +Nodes (4986): AnimancerUtilities_GatherFromAsset_m59973A7B45FFE4B677331302724735CB71697BB7(), AnimancerUtilities_GatherFromTracks_mA4A0A89FC99BAB7065098C0733BA2CA7AD7A6B74(), FastComparer_System_Collections_Generic_IEqualityComparerU3CSystem_ObjectU3E_Equals_m101FDA6E8200AED199146EEF290EBC7C79B054E1(), cfo_djr_m81F8A56C9B6A52A83E896982F8645278BA8AAD19(), cfo_err_m0A207029F981421D70BEA9DA6607F08F2BD00460(), CustomAttributeExtensions_GetCustomAttribute_TisMemoryPackIgnoreAttribute_tDA6CE2F973E17A5AAD1C2343B6CC222F3947E9AB_m29178785EB03A48D68F7CDA62D190CD7A52E9ED4(), CustomAttributeExtensions_GetCustomAttribute_TisMemoryPackIncludeAttribute_t5D0EDF19D2EDA5B72C1D115804B18D4F1D6FFA04_mA748AE7062AD949FC4281ED8A1BAED4EDB9CBE04(), hx_bxm_mF204B3CE3DA07DFEA14E8127B9725BD529DACB6C() (+4978 more) ### Community 25 - "Community 25" Cohesion: 0.0 -Nodes (4710): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnimancerLayer_get_CommandCount_m59A5957C7DB7E574CAC3EF8DEA1200585276772A_inline(), AnimancerLayer_get_CurrentState_mBE9E219D94516C430237703D8B4A5DE184116C3E_inline(), AnimancerNode_get_FadeSpeed_mA8510DDC870DBE7539463970CE9A3B4D2796A1B6_inline(), AnimancerNode_get_Index_mE0DF69950BF6E0BD21617437EADF360A30C1680C_inline(), AnimancerNode_get_Root_m93B6EB9E73B0E65C10C6CD74021B39CE8401A49C_inline(), AnimancerNode_get_Speed_mF329FD7BF54B33FE62153BA759BEDC74B8AAACF3_inline(), AnimancerNode_get_TargetWeight_mCE67B7E71E8E02FC26230BCD7A99D7679EFD62F6_inline() (+4702 more) +Nodes (4584): AnimancerPlayable_Evaluate_m50B69F25DC93E6A64FD6D85CAD213156EEBD0B20(), AnimancerPlayable_get_IsValid_m1D469E2995826A7D0079F9BF9150D4CB158B3CDF(), AnimancerPlayable_get_UpdateMode_mA09454B9BDE03B7AF58365A52729B046A70F4215(), Func_3__ctor_m4263A9576AF8680AD717340BBF12DBE5A85C3D10(), Parser_MakeParserResult_TisRuntimeObject_m7E6192E9401DF53A21EDE52F93F65492B3F75F28(), Parser_ParseArguments_m3877BA723376D855984FBDBDD858224499C5C018(), ParserSettings_get_AutoHelp_mF42179B082414130F9EC9A3F8DF81AAED5E3AA83_inline(), ParserSettings_get_AutoVersion_m893BEE636195D34D7935044EC3AE0199DCD5667B_inline() (+4576 more) ### Community 26 - "Community 26" Cohesion: 0.0 -Nodes (1411): AchievementConditionBase, AroundBuildingsConditionCondition, AroundCityGridsConditionCondition, AroundEnemyUnitsConditionCondition, AroundSelfUnitsConditionCondition, AroundWondersConditionCondition, BuildWonderConditionCondition, Logic.Achievement (+1403 more) +Nodes (1448): AchievementConditionBase, AroundBuildingsConditionCondition, AroundCityGridsConditionCondition, AroundEnemyUnitsConditionCondition, AroundSelfUnitsConditionCondition, AroundWondersConditionCondition, BuildWonderConditionCondition, Logic.Achievement (+1440 more) ### Community 27 - "Community 27" Cohesion: 0.0 -Nodes (4725): U3CU3Ec_ipy_m1A25E25933F7A7B66619274CEED66A516BD92295(), U3CU3Ec_eav_mD4E3F34455493A8C6D4D2A7C41F64031C4F6CF06(), U3CU3Ec_chp_mA384017C7217E983FB80B7CE8FE34086863E75D7(), FixedStringMethods_ComputeHashCode_TisIl2CppFullySharedGenericStruct_mB6493676FFCDAB4AD0FA6FB82564500A8286403C_gshared(), Avx2_EmulatedGather_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m75E4DC1575D64C468E29623C2A27062E59A006BB_gshared(), Avx2_EmulatedGather_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m94F8FFCEA63E0174FFF11E533C79D165E357A272_gshared(), Avx2_EmulatedGather_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m089FE6B150D3770B7C1109D4010EFBE72C0E985B_gshared(), Avx2_EmulatedGather_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBD6B0D9436820A5A075E4DEDAC5F272776C647AD_gshared() (+4717 more) +Nodes (0): ### Community 28 - "Community 28" Cohesion: 0.0 -Nodes (0): +Nodes (4693): U3CU3Ec_chp_mA384017C7217E983FB80B7CE8FE34086863E75D7(), FixedStringMethods_ComputeHashCode_TisIl2CppFullySharedGenericStruct_mB6493676FFCDAB4AD0FA6FB82564500A8286403C_gshared(), Avx2_EmulatedGather_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m75E4DC1575D64C468E29623C2A27062E59A006BB_gshared(), Avx2_EmulatedGather_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m94F8FFCEA63E0174FFF11E533C79D165E357A272_gshared(), Avx2_EmulatedGather_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m089FE6B150D3770B7C1109D4010EFBE72C0E985B_gshared(), Avx2_EmulatedGather_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBD6B0D9436820A5A075E4DEDAC5F272776C647AD_gshared(), NativeList_1_AddRange_m5469007F99D38C73CAF59B7F3A2A20BDA7605288_gshared(), NativeList_1_get_Length_mBCE0D52E1FEFC40B5CFEE2F41B493C7FF6A07FA7_gshared() (+4685 more) ### Community 29 - "Community 29" Cohesion: 0.0 -Nodes (2351): NamedOnnxValue_CreateFromTensor_TisIl2CppFullySharedGenericAny_m5B9C574CED9388D24C5974F3558FCF35FAFBB58F_gshared(), NamedOnnxValue_CreateFromTensor_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m136F0AB581EDF766D324A64C8E62BA08B5613A5C_gshared(), MouseEventBase_1_get_currentTarget_mACAF21506F714D1BBFC086B0F7EA5579DCC72714_gshared(), ObjectEqualityComparer_1_Equals_m854C2E5F3D69A09C83839722E59116434E577ADC_gshared(), ObjectEqualityComparer_1_Equals_mDB67632684D022DEDEE2E3311EC8A64F0F18A255_gshared(), ObjectEqualityComparer_1_GetHashCode_m35A9262B969CF319688B6D20983CBE064D37FE73_gshared(), ObjectEqualityComparer_1_GetHashCode_m9243B3A91D0C48543D6A165E13889106F10AD5BE_gshared(), ObjectEqualityComparer_1_IndexOf_m45BDC95A6E5AB0542ED27558B68E4EDDD7F43C07_gshared() (+2343 more) +Nodes (3614): MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline() (+3606 more) ### Community 30 - "Community 30" Cohesion: 0.0 -Nodes (3712): MemoryPackWriter_GetFormatter_TisRuntimeObject_m9B8C4A824D9887DC830BD762110EA0640B534D06_inline(), MemoryPackWriter_WriteValue_TisRuntimeObject_mB4E581518534D750D3596987C811645BC400B9F0_gshared_inline(), qu_cjn_mD27205E091F8B3B67E00E609C65C395F8B1CF4E9(), qu_hmm_mB510B021930DE48B69FFBDA77C8B332ED0F194AC(), qu_hvm_mA61FED7A3787C6F0459A824A86A19A3C6D6FCE02(), qu_lcg_mA2EFF09670008EF479EA3BF4D26F021ED1C59417(), Unsafe_AsRef_TisRuntimeObject_m9A724F6CCF7AF3758C2D485093F994B33AA9BA03_inline(), Cubemap_GetPixelData_TisIl2CppFullySharedGenericStruct_mA5BAFA2DAB8142309E328760EA79EF4839119D66_gshared() (+3704 more) +Nodes (1703): NamedOnnxValue_CreateFromTensor_TisIl2CppFullySharedGenericAny_m5B9C574CED9388D24C5974F3558FCF35FAFBB58F_gshared(), NamedOnnxValue_CreateFromTensor_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m136F0AB581EDF766D324A64C8E62BA08B5613A5C_gshared(), MouseEventBase_1_PreDispatch_mC58A4EB302BFABBF2E4D4E8BC46FAA8258CEFBC7_gshared(), ObjectEqualityComparer_1_Equals_m854C2E5F3D69A09C83839722E59116434E577ADC_gshared(), ObjectEqualityComparer_1_Equals_mDB67632684D022DEDEE2E3311EC8A64F0F18A255_gshared(), ObjectEqualityComparer_1_GetHashCode_m35A9262B969CF319688B6D20983CBE064D37FE73_gshared(), ObjectEqualityComparer_1_GetHashCode_m9243B3A91D0C48543D6A165E13889106F10AD5BE_gshared(), ObjectEqualityComparer_1_IndexOf_m45BDC95A6E5AB0542ED27558B68E4EDDD7F43C07_gshared() (+1695 more) ### Community 31 - "Community 31" Cohesion: 0.0 -Nodes (3702): Layout_Register_TisRuntimeObject_m3D50CE83F56C4633EDDF711C549A85B68CBBD3BE_gshared(), LogFactory_GetCurrentClassLogger_TisRuntimeObject_mF8C9229B741424F691629021C62ADFCAD83E216D_gshared(), Logger_Debug_TisIl2CppFullySharedGenericAny_m15A448B0FA5B025E6E44CA804164D0EB1D1DF4AD_gshared(), Logger_Debug_TisIl2CppFullySharedGenericAny_m2FB4DC29AC9B879393DB37CB1F9099FEC457F2D2_gshared(), Logger_Debug_TisIl2CppFullySharedGenericAny_m6617CF2EEA775D056FF0B14C1433CDC0B832F827_gshared(), Logger_Debug_TisIl2CppFullySharedGenericAny_mFB2E20C2DA56D2D0B53223D94E014C2D0A80E15B_gshared(), Logger_Debug_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m46D1F01360DBA016DD3418A28823B3BBD78FE7F6_gshared(), Logger_Debug_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mE396912CC5D0886E47FBAC6A87B474AC26464077_gshared() (+3694 more) +Nodes (3607): AddrofIntrinsics_AddrOf_TisIl2CppFullySharedGenericAny_m5BD9D07EF2F193BD1D209D91D3E6D993D40435F6_gshared(), AddrofIntrinsics_AddrOf_TisRuntimeObject_m26881CDB13AAC26B23F4C487BF5461CC7BBFB6EF_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911_gshared() (+3599 more) ### Community 32 - "Community 32" Cohesion: 0.0 -Nodes (2922): ikv_kpp_mA130EABC080C56352C63633D8F5AE0F8E1BC0EAA(), ct_bbd_m5B14CDA1E46E0EB80E9A0FAC978175E95D3D545A(), zs_kwq_m7025AA13284F7FF8873439ED775D34E328E94954(), Callback__ctor_m397EB81A44551BBFFB4775B712405526EE1F6AE3(), CallbackDispatcher_Register_mBD0C5D05F5F1998F4F4AAAF453DCE7BC7E87F048(), CallbackDispatcher_Register_mBFB06FA332CA59D0925760F2C6FD2A29D4D1793F(), CallbackDispatcher_Unregister_m6F046DF4DE963DC8B05F13237AA0339A3F9AD4C7(), CallbackDispatcher_Unregister_mE55C23C28CEB1F00A1A1C25BA2031AE042A950AD() (+2914 more) +Nodes (3300): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnimancerEvent_get_CurrentState_mE8E313D5B0D8BE0D33BAF3F90CCACC40D7187757_inline(), AnimancerLayer_get_CommandCount_m59A5957C7DB7E574CAC3EF8DEA1200585276772A_inline(), AnimancerLayer_get_CurrentState_mBE9E219D94516C430237703D8B4A5DE184116C3E_inline(), AnimancerNode_get_FadeSpeed_mA8510DDC870DBE7539463970CE9A3B4D2796A1B6_inline(), AnimancerNode_get_Index_mE0DF69950BF6E0BD21617437EADF360A30C1680C_inline(), AnimancerNode_get_Root_m93B6EB9E73B0E65C10C6CD74021B39CE8401A49C_inline(), AnimancerNode_get_Speed_mF329FD7BF54B33FE62153BA759BEDC74B8AAACF3_inline() (+3292 more) ### Community 33 - "Community 33" Cohesion: 0.0 -Nodes (4199): AsyncMethodBuilderCore_Start_TisIl2CppFullySharedGenericAny_m22C2EF1A85ADAF38432C44ED45586C1D52D06D4B_gshared(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayHelper_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m14EBD7FCECD3BD84BB7AB607C59AC28273298395_inline(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CConnectAsyncCoreU3Ed__26_t6DC83A05B18A0250653A13735BD278A777810500_mBADC875606CBE0628E83F15D1CC4E9859000E185(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CReadAllAsyncU3Ed__48_t6ACF3CCC02F2AEA9BB5F1EE25F36BEF90AAFC46D_mB9C1AB52F2C70A0CD38B656C46E4A373CC0B24C6(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CWriteChunkTrailerU3Ed__40_t91A8537CF999CF89F1CF1DF6CC3C183B41785202_m9D7D5D50FB961106BA3ABD10F853C30AFD49F1C4(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCloseAsyncPrivateU3Ed__68_t9D38605A68DCC50975639BF5B48FD78E5F02382B_mE0006D728DB17A1034D2C409A84BAFAA2AF9CA35(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCloseWithReceiveErrorAndThrowAsyncU3Ed__66_t7CAE96776EC8F994F2C62BD682C2E5BE22CE414E_mD847B6FB1F43FD8841B88094DDB8A294B663D8BC() (+4191 more) +Nodes (1136): AnimancerJob, Animancer, AnimatedProperty, ClearMenuItems(), PopSelectedItem(), PushSelectedItem(), Render(), RunFrame() (+1128 more) ### Community 34 - "Community 34" Cohesion: 0.0 -Nodes (1820): ISteamMatchmakingPingResponse_Finalize_m461C13B8F1C5013EBECA9528B03EDB843BC4924E(), ISteamMatchmakingPlayersResponse_Finalize_m4119A80E1817D779D5F8FE7DF4DD33A89BF81AD4(), ISteamMatchmakingRulesResponse_Finalize_m471BA9A05E42DFF8A85977C49005F18C5175D98E(), ISteamMatchmakingServerListResponse_Finalize_m1045C61F517FAC85A379B0DF7BCCCA3462F62D45(), AndroidJavaObject_FromJavaArrayDeleteLocalRef_TisIl2CppFullySharedGenericAny_m5BC2B7B267EBFB3D33E1D15F5F5DFEF99AB48E84_gshared(), CFArray_ArrayFromHandle_TisRuntimeObject_m8F531D7BA7757765AB5FA4AC6A2ABF4D9C95FCE9_gshared(), Func_2_Invoke_mEEDD427FE0A299D97308E822C93022D5BE7CA697_inline(), JobValidationInternal_CheckReflectionDataCorrectInternal_TisIl2CppFullySharedGenericAny_mF677452532379AB9BB740003E4C1BA0D1F250361_gshared() (+1812 more) +Nodes (2789): pn_hgq_m1B0A86BCD465F119B6031546A413191C36BEC690(), ObjectEqualityComparer_1_GetHashCode_m1E6C115C1E380948066B601CE9BC29FC141FAE80_gshared(), ObjectEqualityComparer_1_GetHashCode_m367DDAA979C01B5A58421BEE344EA4D2E95D771D_gshared(), GenericEqualityComparer_1_GetHashCode_m6E8F854DEA8F76886DBFD22A7FD441B79F452938_gshared(), GenericEqualityComparer_1_GetHashCode_mCF658EAE4622234F22641E0102798AF38A0C8F28_gshared(), Char_ToLower_m238489988C62CB10C7C7CAAEF8F3B2D1C5B5E056(), Char_ToUpper_m7DB51DD07EE52F4CA897807281880930F5CBD2D2(), DialogueActor_get_dialoguePosition_mF21E646C8C7AC8D3295E6D4B974AF8018E6F9DA2() (+2781 more) ### Community 35 - "Community 35" Cohesion: 0.0 -Nodes (3897): U3CU3Ec_mla_m1E674CBBEDBDF80349BA1ACA9E2CD026AAD85B5A(), ViStringSerialize_PrintTo_m98B21238AD87BEA4F8EEC6A753F2AD2AEFB586A6(), ViStringSerialize_PrintTo_mBB91F319F3A5CBA980D376A72A8802DEF33D727C(), ViStringSerialize_Read_m9CC9A29B75990A1217C8D93F8CE545D26B9560C8(), EnumerableExtensions_OnFolderSourceSizeError_mF306F78754B9C8B557A7230779517F2944BC6B83(), Marshal_AlignedSizeOf_TisIl2CppFullySharedGenericStruct_m2A0713E8F1E78F6E1CD9E31DECAE11AB7C31D454_gshared(), SafeBuffer_Initialize_TisIl2CppFullySharedGenericStruct_m8CAA7CDC8434C144AA6F57EC0B82080B892EBA81_gshared(), StringBuilder_AppendSpanFormattable_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m4161B281743C310D74CBE3D394BC6D3F88C5334C_gshared() (+3889 more) +Nodes (3111): BsonClassMap_RegisterClassMap_TisIl2CppFullySharedGenericAny_mF5B62E633B4F65E6299C8DCB881EC4F03D4B9FF6_gshared(), BsonDocumentWrapper_Create_TisIl2CppFullySharedGenericAny_m9DBD701370EC3E8967700417D4056E7FA58D5575_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m52B7469ED8C326A6C2ADE2F403A2321F0E42FCD6_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m748C759F111B147DCE620BC72991590AFA2FF664_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mDD3F90F950B5FAF3EFB1DE1C466E2EF8B5AF0945_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mE98FFEF3EC0E124FCE58E0D51D9315733F31B385_gshared(), BsonSerializer_RegisterSerializer_TisIl2CppFullySharedGenericAny_m9771AB871D2B0037FB8C4F07EDF4BE19537FE2CF_gshared(), IBsonSerializerExtensions_ToBsonValue_TisIl2CppFullySharedGenericAny_m743310D71D28C5CF007597C85B7E604FA74DEB29_gshared() (+3103 more) ### Community 36 - "Community 36" Cohesion: 0.0 -Nodes (3564): MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline() (+3556 more) +Nodes (3003): Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m5B415C4745E47108DD9258EBCCB422EFD6B8A0EB_inline(), Array_Empty_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m7E922E24AAEBD664256383832D53DDF17E1F3052_inline(), Array_Empty_TisComplex_tC7518465FEAE5F5138E1653314A611EEC09467A2_mB9CF04C77723F177AEB1AFFCC848C36FE0B03888_inline() (+2995 more) ### Community 37 - "Community 37" Cohesion: 0.0 -Nodes (3496): bag_dsi_m7151964CC5DE633AD16B2FF4655CF6EDABB2EBB5(), bag_jua_m4D323633BDEEFF205721AF04C7E8D28B89EDB864(), bag_mip_m93A9A55A580AB2DC0768430DEAE17D3DF700F95D(), bag_myj_mE25E71BCE334B6E56600EB1F4AD9578570262930(), kxg_mgg_m78328822D4F2E3CD4D8F866E0C5293E40363F76F(), kxg_ol_mC5977FC9AC464A938C7D0938B821BAA0629D75D6(), jje_cnn_m5166D26559FFECD6A34C9705773669BCB257E974(), jje_fev_mB34993B318098882FE1C7510CABF52651A6E5A2A() (+3488 more) +Nodes (2968): ViAsynCallback_Exec_m0D4CECCF02FE49D76D61B212735E7F6F3439C805(), ViAsynCallback_get_AsynActive_m682CCA267CFD6FFF56BC73BA369AA1B5A98F5AA2(), ViAsynDelegateInterface__AttachAsyn_mCBC8493695740C6FE5FB2CE61740FC572BF89C11(), ViAsynDelegateInterface__ctor_mF60A61CA019DCA8C3206FDB56ABFB862957BE0A2(), ViAsynDelegateInterface_End_mDB876F093963527134973BD206FB40E7E28FC53A(), ViAsynDelegateInterface_get_Active_m86EBBD1F3A7486753BDB87EB69A74F914A4F091A(), ViAsynTupleCallback_Exec_m26BA52474B731B9858DAB4E486F3EAB74C27732E(), ViAsynTupleCallback_get_AsynActive_m87930010CB7AD8B041F382254FC4492675EBDC5D() (+2960 more) ### Community 38 - "Community 38" Cohesion: 0.0 -Nodes (2980): PolymorphicAttribute__ctor_m0BB581101F89070100B28A601AB7199519ABBCC5(), MultilingualFieldAttribute__ctor_m6798E1E78CCA80AFD13606E0734F99501F5E4AF5(), Nullable_1__ctor_m0D134D615050EEEC206BABE1336D98F58EE9419F(), UIOutsideSelectView_jta_m4F82A3B4D26C879C20F6F31C4228D445BF36A84F(), EmbeddedAttribute__ctor_m68CAD82666F0FF415043D7DC217986AA2D3133D1(), NullableAttribute__ctor_mA329224BEC75C65B8E9B5D81D7F5E769E22790E2(), NullableContextAttribute__ctor_m3F94BA00FB614574AC19D78E61DC0CA0AE15FCAC(), UsageAttribute__ctor_m802D31C3F757DF295A0016E479D8CD2B1923B9D0() (+2972 more) +Nodes (3070): ViMathDefine_Asin_mF8A1D7D32BDE863864F9BADC6FAFC4AACF090372(), ViMathDefine_Log_mEBAFAF982A5880E8591D71883111765EF8DB613C(), Double_IsPositiveInfinity_m2987455D4BE481D4568F1A47120843F2A8A5FFB0_inline(), Math_Asin_m82DDD74A21E242DCC8F6809EBBCE8F0F710A80F4(), Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054(), Math_ModF_m0F96CE4FC43C89BECCE17B6EFB51B01D39BD0EBB(), Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265(), Math_Truncate_mE66B1AD68C17D27675DE0CB74643374F9EDB649C() (+3062 more) ### Community 39 - "Community 39" Cohesion: 0.0 -Nodes (3484): FixedList_CheckResize_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mC90171B3DF72CFE64806D57818F7F5BED5463406_gshared(), NativeList_1_CheckIndexInRange_m1AD11CF2F507F007C5AAD437D7CAD59C04B12238_gshared(), NativeList_1_CheckIndexInRange_m200159303CBD51B208138C8824ABE9B1FBD5F5F8_gshared(), Array_Empty_TisEventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_mAEF379183FDCBD07C651D56777D4AA5A5C969A47_inline(), Array_Empty_TisNetworkRequestArgs_tBB510A4D9FB040A9133C5ACA66789934AAE07462_mAAD469027D07AD585DEAA3DAEB7C6E207E8036C8_inline(), Array_IndexOf_TisEventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_mDA8ABF0C8CBC330E0DBA64B13F204111EAFA1294(), Array_IndexOf_TisNetworkRequestArgs_tBB510A4D9FB040A9133C5ACA66789934AAE07462_mD44741E14E8857B5DECB2580773055E704983ED4(), DynamicArray_1_get_Item_m5B1DBAB0205422DC339E985CCEBD396137011912() (+3476 more) +Nodes (2560): ent_esj_m5511EF800B5598003F5751582ED2E8E425F4C9C9(), ent_esk_mEDC09B379500CA113FDF2921EC6CB5D03D0EC69A(), epy_etz_m84B9B9A0B51AF3604812236C248F58E8745C2F7D(), epy_eua_mBC0512B0511A7633DF5A468D2E5B6B515BC95C64(), UIOutsideLibraryView_dlp_mA93EA68992CBFF711860FD0326257A8AD44F226D(), UIOutsideTutorView_eau_m536802AC8EF076B352B73D62745082B0632CEC3E(), UIOutsideWikiView_eax_m109AF737B5E09FEAC1412083E256CAD2AEE97075(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+2552 more) ### Community 40 - "Community 40" Cohesion: 0.0 -Nodes (3375): String_TrimStart_m210863A5E84BC22EC0487A1543D3680979DD87EE(), Math_Max_m12FB4E1302123ADB441E3A7BDF52E8404DDE53A2(), Math_Max_m670CC45E68892199F0ED53A131DAB78A953389BB(), Math_Max_m8CA8DA82E6369E8477818CB2C8C83ADDA7B4CEFD(), Math_Min_m1B6A7DBB8BBF41DE5E09DAAA47913DE1A3168B88(), Math_Min_m1C589BAB3D638CE6D3A29E552EDB5E9F95856C28(), Math_Min_m3DB243CAEBFE6D6E88DCD3B445AB528CD3911AAB(), Math_Min_mA7BFF48067FBED606414C9937B00BE496B2696D7() (+3367 more) +Nodes (2416): Array_InternalArray__get_Item_TisEntry_t09509312ADC0CE728BEA44CE70D0DBDCB196C71F_m137019AE95A5A268CBCAC943A0ED45418EFDAEE5(), Array_InternalArray__get_Item_TisEntry_t09BA97E1C10BA3153E13B7671F9098E6B33FE01D_mD4861419AEF24F0F0D21F3CEDEA1D65ADD564522(), Array_InternalArray__get_Item_TisEntry_t1CDC747C9ADFDE73D5CEF9691C3E6BD8FBDF7189_m7F4306F343EB7A102E6633552E3E8B693CBF7735(), Array_InternalArray__get_Item_TisEntry_t1F21171535DEAE77D533CFCFAF0EF8C51862C715_m233195F70BB2D32C08408444542870E64BF4605D(), Array_InternalArray__get_Item_TisEntry_t1F9170D76722E73160C5844EF342D89BB2CECFEE_m554EB845CA2843F17A5AEF78E0F8EAC5CCFA8834(), Array_InternalArray__get_Item_TisEntry_t1FBA063A7158A877EF3D4306E7BE0559C3A13202_mAF65B8EE9850BE6D057B6248E41076CEB617BA28(), Array_InternalArray__get_Item_TisEntry_t23291431B0F4E6D5E55BE94929C25DAF99F6D19A_m3644030E0B144CEBCA2E5942A86BBC04C7F144E1(), Array_InternalArray__get_Item_TisEntry_t2378BFE014F1CDD303C90E9DFC67292CCFA27725_m20907F98BD2E911BC3CDF29F0319392D4E30A804() (+2408 more) ### Community 41 - "Community 41" Cohesion: 0.0 -Nodes (2865): UIOutsideLibraryView_dlp_mA93EA68992CBFF711860FD0326257A8AD44F226D(), UIOutsideTutorView_eau_m536802AC8EF076B352B73D62745082B0632CEC3E(), UIOutsideWikiView_eax_m109AF737B5E09FEAC1412083E256CAD2AEE97075(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayPool_1_get_Shared_m59AE954C801963CBE5E506D9378429032D161C97_inline(), BinaryPrimitives_ReadInt64LittleEndian_mE8A837185C132F5DCFA81A9D0F5CDB92000B6CF9_inline(), BinaryPrimitives_ReverseEndianness_mA698702D91EF4E47FF6F682E4B48F173FF376BDF_inline(), BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline() (+2857 more) +Nodes (2416): Array_InternalArray__get_Item_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m53457AC14CEBEB2F742C20CC54D2E2707F12951A(), Array_InternalArray__get_Item_TisBackgroundPosition_tF0822B29FC27A67205A9893EBE03D03B799B8B56_m0D61AF8B17CFCB06610A86ED5A9775BDEE73F667(), Array_InternalArray__get_Item_TisBackgroundRepeat_t446EC7315DED2C6822F1047B7587C3018BFB277F_m4DB882268065F042635FE2518A41FB067507B165(), Array_InternalArray__get_Item_TisBackgroundSize_t809883E2D7BB1D8D85B4C3E1DBE189F187DB25E7_m201794057983F64478B92E19FCAC662986E7154D(), Array_InternalArray__get_Item_TisBatchCullingOutputDrawCommands_t61DD68A8D702A9468AF6D5DDF4529CE7BD5A636D_mDE1567F6237DC5A1B7DCE8DADA84F3D2812548E2(), Array_InternalArray__get_Item_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m5D8FCBD515EFF60838ECAD87FEE41D2B58F2D972(), Array_InternalArray__get_Item_TisBoneWeight1_t7649BFE1ACB15FE000C995A416EFF9F32C5EA55F_mB69F618D35A61BFDAA62E2E6EBFE7ABD83BB393A(), Array_InternalArray__get_Item_TisBoneWeight_t7E7DACA0D0F56698E05EBBD839D1D343502EA11F_m79E5F17F4B20F0E29107533306FECFE89C5DFB34() (+2408 more) ### Community 42 - "Community 42" Cohesion: 0.0 -Nodes (2971): ProcessAnimationJobStruct_1_GetJobReflectionData_m8F636665FEDE1B3771316C87350E0EF1302227AB_gshared(), Delegate_get_Target_m6E203F111C1548193A5AB7E616BD5834CD269753_inline(), UnityEvent_1_RemoveListener_m3E97180D9D50BF43BC80B709B867B052DF0BDEDD_gshared(), UnityEvent_1_RemoveListener_m5F1198F13FB2222BE8AABD6454B4D21086D0A130_gshared(), UnityEvent_1_RemoveListener_m6F51818308066F0E5EA7B37AC25ABDF12FADAEA9_gshared(), UnityEvent_1_RemoveListener_m904FA6BDD0D33FDF8650EF816FF5C131867E693E_gshared(), UnityEvent_1_RemoveListener_mA71B41C07ABA91BE82B1A3DF9A62CF9114D12A31_gshared(), UnityEvent_1_RemoveListener_mC741D450364141F0589857DD5CC0C27D4CF72D99_gshared() (+2963 more) +Nodes (2082): Enumerator_MoveNext_m736B3FBFDCE475107941328576DCEF4079395C57_gshared(), Enumerator_MoveNext_mDBC21788DC29B177915D6FC64E98BA401BA9F163_gshared(), Enumerator_Reset_m0DB23E081DD7E8E197CF9222CDAA393CAE47B7C6_gshared(), Enumerator_Reset_m2614D95F15B95F3C367C31F27E7271E314200A1A_gshared(), Enumerator_MoveNext_m777C2E3AD5D72D5F953C6D41A84DF51FC91C4DDB_gshared(), Enumerator_MoveNext_m978389BFC7312002C57B4500DC5FBADC46AB75AE_gshared(), Enumerator_Reset_mA9C5A0BE7CF8E65B452BCDB6C96AC9252F0DE8F2_gshared(), Enumerator_Reset_mB67404DBB82B31F0C520AA7702E12CDD5BB02F40_gshared() (+2074 more) ### Community 43 - "Community 43" Cohesion: 0.0 -Nodes (3186): BsonDocumentWrapper_Create_TisIl2CppFullySharedGenericAny_m9DBD701370EC3E8967700417D4056E7FA58D5575_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m52B7469ED8C326A6C2ADE2F403A2321F0E42FCD6_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m748C759F111B147DCE620BC72991590AFA2FF664_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m83A3AB5A99BE4DFB62F54E475DC826D2592B8CF0_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mDD3F90F950B5FAF3EFB1DE1C466E2EF8B5AF0945_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mE98FFEF3EC0E124FCE58E0D51D9315733F31B385_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mFB745D362662F504A961C69E1A0053274FEFB99D_gshared(), Avx2_EmulatedGather_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m916056C6D56ED56A8C621B65387940440621885B_gshared() (+3178 more) +Nodes (2551): Nullable_1_GetHashCode_m2AFEAD36F48D2F5DE8ECE59A6D10D73B229DDAC7_gshared(), ObjectEqualityComparer_1_GetHashCode_m2FA84A087493C9A7FFE57B05CCBD5DF9B92CB659_gshared(), Tuple_1_System_Runtime_CompilerServices_ITuple_get_Item_mE5C32575AB304AF08045733C88B662D5E22844BC_gshared(), Tuple_2_System_Runtime_CompilerServices_ITuple_get_Item_m9AF3A9D8F7D1F183485C33CC386E69387F694589_gshared(), Tuple_3_System_Runtime_CompilerServices_ITuple_get_Item_m62BAEDD21F68734854FF640C62F5BC834E26FA7B_gshared(), Tuple_4_System_Runtime_CompilerServices_ITuple_get_Item_m69D95468313E279C2758E6243CAA0FC69E4BD321_gshared(), Tuple_5_System_Runtime_CompilerServices_ITuple_get_Item_mF9767A62C862C01F03EBD6D799922D88DCA75E50_gshared(), Tuple_6_System_Runtime_CompilerServices_ITuple_get_Item_mA345A1E1A10FD4E0559D92E052E52FEF349DB42A_gshared() (+2543 more) ### Community 44 - "Community 44" Cohesion: 0.0 -Nodes (752): AnimancerJob, Animancer, AnimatedProperty, ClearMenuItems(), PopSelectedItem(), PushSelectedItem(), Render(), RunFrame() (+744 more) +Nodes (2018): ArraySegment_1_get_Array_m0A37BDEA0523B09288F812B98E20D333AC5E8ACD_inline(), ArraySegment_1_get_Array_m1B2E5117440374B71BEA40B0A51E356CE60CBAF0_inline(), ArraySegment_1_get_Array_m24475EFE270516273D5BD2ED66509B95226F44A5_inline(), ArraySegment_1_get_Array_m36D0B3102AA934A99E3996B16BA3359A023ABA9D_inline(), ArraySegment_1_get_Array_m45E796C5FCC705008B390C1B0B1519CA5ED782AD_inline(), ArraySegment_1_get_Array_m4A0D919BC0BE30A107681B2A727470E9DADA93D5_inline(), ArraySegment_1_get_Array_m4D719AF4B0B8518696DEBCB8AE9EB1DAE930FC3C_inline(), ArraySegment_1_get_Array_m60CEA564055A795BEC68A1E34BB0A3F0FD51AB0C_inline() (+2010 more) ### Community 45 - "Community 45" Cohesion: 0.0 -Nodes (3070): ViMathDefine_Log_mEBAFAF982A5880E8591D71883111765EF8DB613C(), Double_IsPositiveInfinity_m2987455D4BE481D4568F1A47120843F2A8A5FFB0_inline(), Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054(), Math_ModF_m0F96CE4FC43C89BECCE17B6EFB51B01D39BD0EBB(), Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265(), Math_Truncate_mE66B1AD68C17D27675DE0CB74643374F9EDB649C(), SpriteSkinUtility_GetHash_m3EB3A276AB986508F0E6876045E363B185B60A4D(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline() (+3062 more) +Nodes (2244): Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_Empty_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m4C704A5BD884CD9AB780E000CBC880180508C410_inline(), Array_Empty_TisDispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_mF01AA806CE655E3ABAF52F0F9DD7CC113403C7E2_inline(), Array_Empty_TisMatchContext_t04110FFA271D89A23BC1918BE657634A7DC06253_m5BEAA64B8E1A4C758EDEA7D45C3177D7D8A6ADCF_inline(), Array_Empty_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m85A5CFE26D5D127B03744735ED2B5FC30FCB1D59_inline(), Array_Empty_TisResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_m4A75A31A8710E419A3190795539CDBDFACD442F0_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSequenceConstructPosContext_tDEC4FB1B8F19EFD1AC27C150D561C2D4F6090BA7_mFB24B920EE0386D78A1A170AA290320D2DB507FE_inline() (+2236 more) ### Community 46 - "Community 46" Cohesion: 0.0 -Nodes (2416): Array_InternalArray__get_Item_TisEntry_t09509312ADC0CE728BEA44CE70D0DBDCB196C71F_m137019AE95A5A268CBCAC943A0ED45418EFDAEE5(), Array_InternalArray__get_Item_TisEntry_t09BA97E1C10BA3153E13B7671F9098E6B33FE01D_mD4861419AEF24F0F0D21F3CEDEA1D65ADD564522(), Array_InternalArray__get_Item_TisEntry_t1CDC747C9ADFDE73D5CEF9691C3E6BD8FBDF7189_m7F4306F343EB7A102E6633552E3E8B693CBF7735(), Array_InternalArray__get_Item_TisEntry_t1F21171535DEAE77D533CFCFAF0EF8C51862C715_m233195F70BB2D32C08408444542870E64BF4605D(), Array_InternalArray__get_Item_TisEntry_t1F9170D76722E73160C5844EF342D89BB2CECFEE_m554EB845CA2843F17A5AEF78E0F8EAC5CCFA8834(), Array_InternalArray__get_Item_TisEntry_t1FBA063A7158A877EF3D4306E7BE0559C3A13202_mAF65B8EE9850BE6D057B6248E41076CEB617BA28(), Array_InternalArray__get_Item_TisEntry_t23291431B0F4E6D5E55BE94929C25DAF99F6D19A_m3644030E0B144CEBCA2E5942A86BBC04C7F144E1(), Array_InternalArray__get_Item_TisEntry_t2378BFE014F1CDD303C90E9DFC67292CCFA27725_m20907F98BD2E911BC3CDF29F0319392D4E30A804() (+2408 more) +Nodes (1943): ArraySegment_1_get_Array_m0AA90934516E40213DD80FA26310ECFA91EFAE4E_inline(), ArraySegment_1_get_Array_m1B023530CEE9F0816934FDDD167983DBB0922B76_inline(), ArraySegment_1_get_Array_m2E2799862A5EB0D3E20C00C23A7DA4E2A63AAA82_inline(), ArraySegment_1_get_Array_m439E978608DF511B0CFF860A230322B2BFB93C2F_inline(), ArraySegment_1_get_Array_m44919767C029CEAB12889D5FFA5E700F5B3C77F8_inline(), ArraySegment_1_get_Array_m45274C465C129D05C04058E42CC1885331963BC0_inline(), ArraySegment_1_get_Array_m6CF9DE0D4DE8775EFEAF60B8F5C7D983DF08A4A3_inline(), ArraySegment_1_get_Array_m71D9FC5B93E089750D7942591BF403D20352BC87_inline() (+1935 more) ### Community 47 - "Community 47" Cohesion: 0.0 -Nodes (2415): Array_InternalArray__get_Item_TisAtlasNode_tE1393243E3FBC4D627662BB3BD7D37E36687987A_m6C7C5CF8F04861BD4351932DA0429BD4B989316F(), Array_InternalArray__get_Item_Tisdouble2_t0A9854C934D0BBE9DD41F2B318B64F830D7253FA_m57F02794647B86F0F43BC29CCFDF3276AA2EFEAF(), Array_InternalArray__get_Item_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mFA7D47EECD514810CA643929A7606E1C6F41F298(), Array_InternalArray__get_Item_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB2B49048CD0BFCE0B0F8825AFAF62AC2850AE1E4(), Array_InternalArray__get_Item_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m4FC13638A4D33B6E9D68CFE28B226AC5EFBD0096(), Array_InternalArray__get_Item_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m942FC1CDE516474D8CD24E77D5D9D5F07CF6542D(), Array_InternalArray__get_Item_Tisint2_tF4AC25F87943DC0B2BB3456B0B919B3B42A9432A_m93BEF6932F97A5B05CCABA140F7DA9E972C4DBD6(), Array_InternalArray__get_Item_Tisint3_t1D01D28AA6D32890A228297EBADD9BB1A960E2BF_mEF031EEE1E5CC2F730DFD1F957B6A493F379333C() (+2407 more) +Nodes (1924): ArraySegment_1_get_Array_m07FFAA6A1DB7B89225FF621A9D1DE23E4AE9F875_inline(), ArraySegment_1_get_Array_m12259026D885142F80E08F7D6B6A1C5E027049AD_inline(), ArraySegment_1_get_Array_m1631D7FA218D88E42A56E375C99EE91AE91C7112_inline(), ArraySegment_1_get_Array_m19F626A6A809CF41373C9DD3B785F2DC8F58E1EB_inline(), ArraySegment_1_get_Array_m1E527B0219936D6E63F60F321794D4A41AE9FA96_inline(), ArraySegment_1_get_Array_m24FD23F83EF142F9648C83A31ACCDD6F160C766C_inline(), ArraySegment_1_get_Array_m2AB994CBEEB979F3D2648B0FCB02A1D8088C3A73_inline(), ArraySegment_1_get_Array_m3692ADC547A67A5D57EF16DBCB101442C9A42C39_inline() (+1916 more) ### Community 48 - "Community 48" Cohesion: 0.0 -Nodes (2078): Enumerator_MoveNext_m736B3FBFDCE475107941328576DCEF4079395C57_gshared(), Enumerator_MoveNext_mDBC21788DC29B177915D6FC64E98BA401BA9F163_gshared(), Enumerator_Reset_m0DB23E081DD7E8E197CF9222CDAA393CAE47B7C6_gshared(), Enumerator_Reset_m2614D95F15B95F3C367C31F27E7271E314200A1A_gshared(), Enumerator_MoveNext_m777C2E3AD5D72D5F953C6D41A84DF51FC91C4DDB_gshared(), Enumerator_MoveNext_m978389BFC7312002C57B4500DC5FBADC46AB75AE_gshared(), Enumerator_Reset_mA9C5A0BE7CF8E65B452BCDB6C96AC9252F0DE8F2_gshared(), Enumerator_Reset_mB67404DBB82B31F0C520AA7702E12CDD5BB02F40_gshared() (+2070 more) +Nodes (1942): ArraySegment_1_get_Array_m1747D6AEF82ECC2FC8BF82E0085F87625B873290_inline(), ArraySegment_1_get_Array_m197854ECC37F17B928DF151B9E9B3849D25FD234_inline(), ArraySegment_1_get_Array_m2DBA02EABF9E0C3B44C58659B338872ACD6D73E1_inline(), ArraySegment_1_get_Array_m5B8145321CE390962D9E060CB1D71B5D8864F1D1_inline(), ArraySegment_1_get_Array_m66D80077530F32FBCF09E33171A7CB1F6D1EAF7D_inline(), ArraySegment_1_get_Array_m6F863B79EE6D5629D4D1E781EA4E0C4F31C26F42_inline(), ArraySegment_1_get_Array_m6FE5C7903751CF31CCA0FE65705B037B8B2E2C7C_inline(), ArraySegment_1_get_Array_m81A40345E7A687B5042C27645F5D56FD579429ED_inline() (+1934 more) ### Community 49 - "Community 49" Cohesion: 0.0 -Nodes (2536): Nullable_1_GetHashCode_m2AFEAD36F48D2F5DE8ECE59A6D10D73B229DDAC7_gshared(), ObjectEqualityComparer_1_GetHashCode_m2FA84A087493C9A7FFE57B05CCBD5DF9B92CB659_gshared(), Tuple_1_System_Runtime_CompilerServices_ITuple_get_Item_mE5C32575AB304AF08045733C88B662D5E22844BC_gshared(), Tuple_2_System_Runtime_CompilerServices_ITuple_get_Item_m9AF3A9D8F7D1F183485C33CC386E69387F694589_gshared(), Tuple_3_System_Runtime_CompilerServices_ITuple_get_Item_m62BAEDD21F68734854FF640C62F5BC834E26FA7B_gshared(), Tuple_4_System_Runtime_CompilerServices_ITuple_get_Item_m69D95468313E279C2758E6243CAA0FC69E4BD321_gshared(), Tuple_5_System_Runtime_CompilerServices_ITuple_get_Item_mF9767A62C862C01F03EBD6D799922D88DCA75E50_gshared(), Tuple_6_System_Runtime_CompilerServices_ITuple_get_Item_mA345A1E1A10FD4E0559D92E052E52FEF349DB42A_gshared() (+2528 more) +Nodes (16): asfloat(), asint(), asuint(), f32tof16(), min(), select(), Unity.Burst.Intrinsics, Arm (+8 more) ### Community 50 - "Community 50" Cohesion: 0.0 -Nodes (2018): ArraySegment_1_get_Array_m0A37BDEA0523B09288F812B98E20D333AC5E8ACD_inline(), ArraySegment_1_get_Array_m1B2E5117440374B71BEA40B0A51E356CE60CBAF0_inline(), ArraySegment_1_get_Array_m24475EFE270516273D5BD2ED66509B95226F44A5_inline(), ArraySegment_1_get_Array_m36D0B3102AA934A99E3996B16BA3359A023ABA9D_inline(), ArraySegment_1_get_Array_m45E796C5FCC705008B390C1B0B1519CA5ED782AD_inline(), ArraySegment_1_get_Array_m4A0D919BC0BE30A107681B2A727470E9DADA93D5_inline(), ArraySegment_1_get_Array_m4D719AF4B0B8518696DEBCB8AE9EB1DAE930FC3C_inline(), ArraySegment_1_get_Array_m60CEA564055A795BEC68A1E34BB0A3F0FD51AB0C_inline() (+2010 more) +Nodes (2059): BuffersExtensions_CopyTo_TisIl2CppFullySharedGenericAny_m098A387B16156489FBC83423F70214F9EDB7DBBA_gshared(), ReadOnlySequence_1_get_Start_m55503E294901DBF9C74BE99C7CEC7A7171B19368_gshared_inline(), ReadOnlySequence_1_get_Start_mE0805A72F54483F7BACEA389357B365B599F9E97_gshared_inline(), LowLevelList_1_get_Item_m4A0F25A4B5A0BBD4AD5C423C0B474765E3F65596_gshared(), LowLevelList_1_set_Item_m9F37196A2E5D41B987A97C7BA6F3FCE0A7DF96FD_gshared(), LowLevelList_1_get_Item_mE1B6F0331605C882D5552283F3E039DAB1CFE249_gshared(), LowLevelList_1_set_Item_m43802D3D871A9B9E33879921E12CC84BADF9D917_gshared(), ReadOnlyMemory_1__ctor_mC964D8DBB34D4EF9D7D5E6B11E2AD9E9AAB3DE7D_AdjustorThunk() (+2051 more) ### Community 51 - "Community 51" Cohesion: 0.0 -Nodes (1943): ArraySegment_1_get_Array_m0AA90934516E40213DD80FA26310ECFA91EFAE4E_inline(), ArraySegment_1_get_Array_m1B023530CEE9F0816934FDDD167983DBB0922B76_inline(), ArraySegment_1_get_Array_m2E2799862A5EB0D3E20C00C23A7DA4E2A63AAA82_inline(), ArraySegment_1_get_Array_m439E978608DF511B0CFF860A230322B2BFB93C2F_inline(), ArraySegment_1_get_Array_m44919767C029CEAB12889D5FFA5E700F5B3C77F8_inline(), ArraySegment_1_get_Array_m45274C465C129D05C04058E42CC1885331963BC0_inline(), ArraySegment_1_get_Array_m6CF9DE0D4DE8775EFEAF60B8F5C7D983DF08A4A3_inline(), ArraySegment_1_get_Array_m71D9FC5B93E089750D7942591BF403D20352BC87_inline() (+1935 more) +Nodes (1809): PolymorphicAttribute__ctor_m0BB581101F89070100B28A601AB7199519ABBCC5(), bcx_MoveNext_mCD25BC1C5053733CC02299EDB800E2707037866F(), MultilingualFieldAttribute__ctor_m6798E1E78CCA80AFD13606E0734F99501F5E4AF5(), UnityAssisstant_GetDeviceId_m9B17FAD67EEB2B6BA63AA493B0D690D1C9090628(), ComputeBuffer_BeginWrite_TisIl2CppFullySharedGenericStruct_m64E369E270A3B785F518547B718040DD556A73AD_gshared(), GameObject_GetComponentAtIndex_TisRuntimeObject_m9A438D0241C3503B2646841F350E8AED74075A9F_gshared(), GameObject_GetComponentInParent_TisIl2CppFullySharedGenericAny_m344119E56640668CC72CE6788872E2E1F6A9848F_gshared(), GameObject_GetComponentInParent_TisRuntimeObject_m940CCA4411B863505A42B98CE5A6CA4DF3AFD867_gshared() (+1801 more) ### Community 52 - "Community 52" Cohesion: 0.0 -Nodes (2402): ValueAnimation_1_Start_mCC85B391FD32BEAF30ECD78E3C74A8D16E437212_gshared(), AnimationDataSet_2_Add_m0791FFD5600773A8FBAEDC9D71F203C2D77DDC0A(), AnimationDataSet_2_Add_m13512086BF5255CF2B7AE572383752C7A970F75F(), AnimationDataSet_2_Add_m34BC010174C74AFF4B52A0278D53F4F602CA7E7C(), AnimationDataSet_2_Add_m3963BA7F5F7337A6F981E5F1C20227A3B7EAACD3(), AnimationDataSet_2_Add_m3B8112BC15048263B03E5DF4CB7976964D3DC74B(), AnimationDataSet_2_Add_m404ADEBFC3B0B946E06E5EEA8D5950CDCEC183B8(), AnimationDataSet_2_Add_m421046E26B54D604A9F1A9229604E7DDF6C09BD8() (+2394 more) +Nodes (2022): Array_InternalArray__get_Item_TisAlbedoDebugValidationPresetData_tCCFD994474750370F3F5AAEE6312FDF5F06C106B_m6CDEB384BC021E25F866FECD40E8EDEB12521B69(), Array_InternalArray__get_Item_TisAllocToFree_tC46982856CB8220A92BB724F5FB75CCCD09C67D8_m17C4B8539ABF7B2640934781809C91CF24E391B2(), Array_InternalArray__get_Item_TisAllocToUpdate_tD0221D0ABC5378DDE5AAB1DAA219C337E562B512_m6811A2F4F8719D2B93A3047D12628D542E2A46BB(), Array_InternalArray__get_Item_TisAssetEntry_tEB6FC90E5BB63DCA4FF932F2D64595339A28806D_mB4FFFE872F4CB44223D250B32E79DD425932B575(), Array_InternalArray__get_Item_TisAttributeEntry_t646320DFCA1CFF9E19700C8AEBF785FE35BB2A9D_m1EF582803288BB6DF9573F491CAC619DB5838583(), Array_InternalArray__get_Item_TisAttributeOverride_t58F1DF22E69714D48ECBEEAD266D443A858BADEF_m7DD60807CAA4A76621AAB5517B0109A666A3604E(), Array_InternalArray__get_Item_TisAttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_mD4DBE50462A0D42F8191C1174AC4F2CEC1CBA663(), Array_InternalArray__get_Item_TisBlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357_m1F46990B4922965C1721D5E7A139E3FA764329AB() (+2014 more) ### Community 53 - "Community 53" Cohesion: 0.0 -Nodes (1924): ArraySegment_1_get_Array_m07FFAA6A1DB7B89225FF621A9D1DE23E4AE9F875_inline(), ArraySegment_1_get_Array_m12259026D885142F80E08F7D6B6A1C5E027049AD_inline(), ArraySegment_1_get_Array_m1631D7FA218D88E42A56E375C99EE91AE91C7112_inline(), ArraySegment_1_get_Array_m19F626A6A809CF41373C9DD3B785F2DC8F58E1EB_inline(), ArraySegment_1_get_Array_m1E527B0219936D6E63F60F321794D4A41AE9FA96_inline(), ArraySegment_1_get_Array_m24FD23F83EF142F9648C83A31ACCDD6F160C766C_inline(), ArraySegment_1_get_Array_m2AB994CBEEB979F3D2648B0FCB02A1D8088C3A73_inline(), ArraySegment_1_get_Array_m3692ADC547A67A5D57EF16DBCB101442C9A42C39_inline() (+1916 more) +Nodes (2111): Action_1__ctor_m85C15848977E87A976978E191FF23BE7775A4118(), Action_1__ctor_m86D48E56A74C816F2F8A131EB27B279C757C27FE(), Action_1_Invoke_m5697C0ED1CE04C4561DFFA07BEBB152DFE7DB3E1_inline(), Action_2__ctor_m4EF2E22B17BBCFD4D70776918EF7C9CB1BE41996(), BaseAttribute_get_Default_m94D0085FF0599F4C0E8A99AECA09BA94EF60C2E2_inline(), BaseAttribute_get_Hidden_mCC368F2255941BA1715CA0BED558F82E6F3725C0_inline(), BaseAttribute_get_Max_m0D184E9D2747223B993BFD0B9301852C5DB52919_inline(), BaseAttribute_get_MetaValue_m28E3B7B0E528D9D2DFFC368192A9540CC22F4994_inline() (+2103 more) ### Community 54 - "Community 54" Cohesion: 0.0 -Nodes (19): asfloat(), asint(), asuint(), f32tof16(), min(), select(), Unity.Burst.Intrinsics, F16C (+11 more) +Nodes (2265): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_m50A0342BC8634A3558D5B9C1EA2540BD0D283063(), DebuggerProxy__ctor_mA67D2CC3100CC593D967E6BDD5F356113DE48489() (+2257 more) ### Community 55 - "Community 55" Cohesion: 0.0 -Nodes (1942): ArraySegment_1_get_Array_m1747D6AEF82ECC2FC8BF82E0085F87625B873290_inline(), ArraySegment_1_get_Array_m197854ECC37F17B928DF151B9E9B3849D25FD234_inline(), ArraySegment_1_get_Array_m2DBA02EABF9E0C3B44C58659B338872ACD6D73E1_inline(), ArraySegment_1_get_Array_m5B8145321CE390962D9E060CB1D71B5D8864F1D1_inline(), ArraySegment_1_get_Array_m66D80077530F32FBCF09E33171A7CB1F6D1EAF7D_inline(), ArraySegment_1_get_Array_m6F863B79EE6D5629D4D1E781EA4E0C4F31C26F42_inline(), ArraySegment_1_get_Array_m6FE5C7903751CF31CCA0FE65705B037B8B2E2C7C_inline(), ArraySegment_1_get_Array_m81A40345E7A687B5042C27645F5D56FD579429ED_inline() (+1934 more) +Nodes (2269): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_mB4B5D68D56D55562A9FD58AC5BEAA147964BDB24() (+2261 more) ### Community 56 - "Community 56" Cohesion: 0.0 -Nodes (2284): ArrayFormatter_1__ctor_m0528101537BC08976DEA8BCD8703BB387022FE55(), ArrayFormatter_1__ctor_m09501C8D979125A3605F4958329660B65BA91749(), ArrayFormatter_1__ctor_m09A1245216793A096404B83DDC47A1C636007366(), ArrayFormatter_1__ctor_m121402522DA7BC4CE99A0C725478A6EDF54F88CA(), ArrayFormatter_1__ctor_m146F4FA75C665AB8530EB6E6B01A1D91314832AD(), ArrayFormatter_1__ctor_m14B14DFD613BFEBBEF0800D7E5D3281F7EAD6ABF(), ArrayFormatter_1__ctor_m1989C6322B36A0F0A52AFCA70497764CDCEF47BB(), ArrayFormatter_1__ctor_m1AABF8C2E915CDF855A4F8D914C8466D6949BDD7() (+2276 more) +Nodes (1837): Listener_Func_m4797011C12074810F4F72739C4759615C500B428(), DeferredDisposableLifetime_1__cctor_m90B2B8374560F9E6622D41DE5FD4D4F696B7D45C_gshared(), Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5EF6B08F23C1676CB28FB0CA83B96F65B205A668_gshared(), Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD00175CD456C8217A078D00B771A9F945EE1DDD4_gshared(), Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC04C624B32EC0CF92A2A02C04463C3B8940E96B1_gshared(), Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF7CF43DAB345C6BA0DF8FD9343C30563BA179B31_gshared(), ImmutableTypeClassMapConvention_CanWrite_m451893D5BB35B5BDC93E2344E0D17012F74E7726(), ActivationContext_CreatePartialActivationContext_m7F3168378CFB8913C47FEAB213C0E3D22D838DB5() (+1829 more) ### Community 57 - "Community 57" Cohesion: 0.0 -Nodes (2275): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_mB4B5D68D56D55562A9FD58AC5BEAA147964BDB24() (+2267 more) +Nodes (643): Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(), Comparer_1__ctor_m00E81172381E7AE678362A259D215A7F8436E4FB(), Comparer_1__ctor_m082E30FD0AC1C4CAFABB346D41B21EAD474D09F3(), Comparer_1__ctor_m08D3B681DFE4B6840AB998E593695A66B8145D57(), Comparer_1__ctor_m0DBDE525377654E019F071A483F84409F74567CB(), Comparer_1__ctor_m0E2B6B77420566D1FD163C4919F363EF011A3C2C(), Comparer_1__ctor_m0E3376E1C26E0B5E3896757C4180D3E4E5A6EFEC(), Comparer_1__ctor_m10674417C263BFF6C51E9D0E0270EB783567CBD1() (+635 more) ### Community 58 - "Community 58" Cohesion: 0.0 -Nodes (2267): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_m50A0342BC8634A3558D5B9C1EA2540BD0D283063(), DebuggerProxy__ctor_mA67D2CC3100CC593D967E6BDD5F356113DE48489() (+2259 more) +Nodes (1715): eqq_exv_mBE31A97BE0DF6E4F18CDC84472AEA0DF34F61BCA(), eqq_exy_m03C80D9524ABFDD0345C7125F599BD85C6626D33(), eqq_exz_mE62B2F8069A4D2B5F0E5D45A9C87D438C6BE9712(), eqq_eya_m38D0D4027C70E92CC79C787D20F23A94D9A45643(), eqq_eyb_m78393D1DBC79164AF3A48BC0E010DD0DA943435C(), epu_etm_mBC48C4F52E9103CDB35DECE12DB04E50566042F4(), epv_ett_m912117BDB448D4DF5164E69E7138D329C4FDCEDC(), epw_etv_m12D39ED35E1B3C0C3D1D93B4F81EA259C2A8C586() (+1707 more) ### Community 59 - "Community 59" Cohesion: 0.0 -Nodes (1828): ArraySegment_1_get_Array_m1896B96738A2C6D236E8ACCDC37FA1E9FB9E8A2F_inline(), ArraySegment_1_get_Array_m2209FF2DA83FC6294670A626757B7060D2A5E4D8_inline(), ArraySegment_1_get_Array_m264A3366D24FE7843D686F6DE4C76BCE61152D12_inline(), ArraySegment_1_get_Array_m2E2331A2A9F6CE753D983CC7AC8BD0CBD6F9B304_inline(), ArraySegment_1_get_Array_m4363EBFD63680D0CC1DB7C48FF3DAC8B73968668_inline(), ArraySegment_1_get_Array_m5397A754192C48C7212136A27BB5D70F90D8C8EE_inline(), ArraySegment_1_get_Array_m5AF838FB97EA85F51EEE70E6E88E733310A46AC7_inline(), ArraySegment_1_get_Array_m8C5C1BB53E7804ABF026DC02D781BEBDAAF52820_inline() (+1820 more) +Nodes (1999): bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_AdjustorThunk(), bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_AdjustorThunk(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_AdjustorThunk(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_inline(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_AdjustorThunk(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_inline() (+1991 more) ### Community 60 - "Community 60" Cohesion: 0.0 -Nodes (2049): Action_1__ctor_m85C15848977E87A976978E191FF23BE7775A4118(), Action_1__ctor_m86D48E56A74C816F2F8A131EB27B279C757C27FE(), Action_1_Invoke_m5697C0ED1CE04C4561DFFA07BEBB152DFE7DB3E1_inline(), Action_2__ctor_m4EF2E22B17BBCFD4D70776918EF7C9CB1BE41996(), BaseAttribute_get_Default_m94D0085FF0599F4C0E8A99AECA09BA94EF60C2E2_inline(), BaseAttribute_get_Hidden_mCC368F2255941BA1715CA0BED558F82E6F3725C0_inline(), BaseAttribute_get_Max_m0D184E9D2747223B993BFD0B9301852C5DB52919_inline(), BaseAttribute_get_MetaValue_m28E3B7B0E528D9D2DFFC368192A9540CC22F4994_inline() (+2041 more) +Nodes (1992): AsyncMethodBuilderCore_Start_TisIl2CppFullySharedGenericAny_m22C2EF1A85ADAF38432C44ED45586C1D52D06D4B_gshared(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayHelper_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m14EBD7FCECD3BD84BB7AB607C59AC28273298395_inline(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CConnectAsyncCoreU3Ed__26_t6DC83A05B18A0250653A13735BD278A777810500_mBADC875606CBE0628E83F15D1CC4E9859000E185(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CReadAllAsyncU3Ed__48_t6ACF3CCC02F2AEA9BB5F1EE25F36BEF90AAFC46D_mB9C1AB52F2C70A0CD38B656C46E4A373CC0B24C6(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CWriteChunkTrailerU3Ed__40_t91A8537CF999CF89F1CF1DF6CC3C183B41785202_m9D7D5D50FB961106BA3ABD10F853C30AFD49F1C4(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCloseAsyncPrivateU3Ed__68_t9D38605A68DCC50975639BF5B48FD78E5F02382B_mE0006D728DB17A1034D2C409A84BAFAA2AF9CA35(), AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCloseWithReceiveErrorAndThrowAsyncU3Ed__66_t7CAE96776EC8F994F2C62BD682C2E5BE22CE414E_mD847B6FB1F43FD8841B88094DDB8A294B663D8BC() (+1984 more) ### Community 61 - "Community 61" Cohesion: 0.0 -Nodes (644): Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(), Comparer_1__ctor_m00E81172381E7AE678362A259D215A7F8436E4FB(), Comparer_1__ctor_m082E30FD0AC1C4CAFABB346D41B21EAD474D09F3(), Comparer_1__ctor_m08D3B681DFE4B6840AB998E593695A66B8145D57(), Comparer_1__ctor_m0DBDE525377654E019F071A483F84409F74567CB(), Comparer_1__ctor_m0E2B6B77420566D1FD163C4919F363EF011A3C2C(), Comparer_1__ctor_m0E3376E1C26E0B5E3896757C4180D3E4E5A6EFEC(), Comparer_1__ctor_m10674417C263BFF6C51E9D0E0270EB783567CBD1() (+636 more) +Nodes (1512): AssetBundle_LoadAllAssetsAsync_TisIl2CppFullySharedGenericAny_mA6A81E1F200BA2CE3BB6815BFF4A464127AA9EBB_gshared(), AssetBundle_LoadAsset_TisRuntimeObject_m7F36E1C08FC32ADB47C34513522D958FA6E09C47_gshared(), AssetBundle_LoadAssetAsync_TisIl2CppFullySharedGenericAny_m168C58EAEC5218602B26B789A8A7261652CB01A8_gshared(), AssetBundle_LoadAssetWithSubAssetsAsync_TisIl2CppFullySharedGenericAny_mB849A03E60D23DCAA8F765FBD59A89937B415DFC_gshared(), Either_Fail_TisIl2CppFullySharedGenericAny_mA0C90A58040B00181252CD5D812BEE89CF69A04F_gshared(), List_1_Add_m2B5312E60384311F3BD53C9BF13C5E45D1FAB04C_inline(), ProviderBase_CreateHandle_TisRuntimeObject_mDE6391D37AF086187F659628E6CCDA229B7E9C81_gshared(), ProviderBase_get_RefCount_m5081C763FA2C514C06B02B72726AAF0D5E13BF8C_inline() (+1504 more) ### Community 62 - "Community 62" Cohesion: 0.0 -Nodes (1722): Listener_Func_m4797011C12074810F4F72739C4759615C500B428(), DeferredDisposableLifetime_1__cctor_m90B2B8374560F9E6622D41DE5FD4D4F696B7D45C_gshared(), Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5EF6B08F23C1676CB28FB0CA83B96F65B205A668_gshared(), Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD00175CD456C8217A078D00B771A9F945EE1DDD4_gshared(), Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC04C624B32EC0CF92A2A02C04463C3B8940E96B1_gshared(), Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF7CF43DAB345C6BA0DF8FD9343C30563BA179B31_gshared(), ZipConstants__cctor_mB2DC85C348463EA2368C099E27D63CAB516BA21A(), ActivationContext_CreatePartialActivationContext_m7F3168378CFB8913C47FEAB213C0E3D22D838DB5() (+1714 more) +Nodes (1685): Dictionary_2_Resize_m31D02FB7F34F222948CBAED016A60562ECE1A8D5_gshared(), HashSet_1_AddOrGetLocation_m79188A9B4AC92DE527D5551ABD63DD9BE6A52EF8(), HashSet_1_AddOrGetLocation_mC0DCFBA5D7CC16CB07FE8761A152DBB95EDE9695(), HashSet_1_CheckUniqueAndUnfoundElements_m1FE7B070F6F535246DE7D39D368813B4CBE80B61_gshared(), HashSet_1_CheckUniqueAndUnfoundElements_mCFDF85D9CE29B8EF6511522A99173E8F9FDE06B0_gshared(), HashSet_1_InternalIndexOf_m25B685122812ED3363A4B27873DF75996E749592(), HashSet_1_InternalIndexOf_m82B2F4C42A44C25FABA6AF807D1AC593811D3035(), HashSet_1_IntersectWithEnumerable_m46C87BCADD5C59F321CE692C728413C2CB681D79_gshared() (+1677 more) ### Community 63 - "Community 63" Cohesion: 0.0 -Nodes (1999): bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_AdjustorThunk(), bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_AdjustorThunk(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_AdjustorThunk(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_inline(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_AdjustorThunk(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_inline() (+1991 more) +Nodes (1541): BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m7FD16035239F14D04CFE8421B0E9CC7A3C092141_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m776762ED786601B7130973DDA54A79E647FFEAD6_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisIl2CppFullySharedGenericAny_m026889759F9CEE39A9DBEE06EBE557156991C15F_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1FCC9442A5F71D5D600765D30F6B4D6797A0090E_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mE0752C62715FBE016B70D01D34AA63CDF7DEA54D_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_mF5BDBB195CBF28AE716746927CA85C0E909755FE_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m1F29494C02788988AC8B2987EB8D2E9C155D5BD3_gshared(), BaseInvokableCall_ThrowOnInvalidArg_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m70AC805B44C8A531C7F1B757522185F1446C08FF_gshared() (+1533 more) ### Community 64 - "Community 64" Cohesion: 0.0 -Nodes (760): Absolute, Unity.VisualScripting, Add, Unity.VisualScripting, AddDictionaryItem, Unity.VisualScripting, AddListItem, Unity.VisualScripting (+752 more) +Nodes (1784): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m1F653087085C8A6C95D4284E9C55C18A67B0F532(), math_csum_m6A99E69A84442A729781A97F78B260223DD01D8F_inline() (+1776 more) ### Community 65 - "Community 65" Cohesion: 0.0 -Nodes (1610): ReferenceEqualityComparer_GetHashCode_mA7F13434B33F3039C39E013E2BEB65F96D54A76D(), SpanHelpers_IndexOfAny_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D2D736D49303A286F55D3500FB84FA9AC2BCCDF_gshared(), ManualResetValueTaskSourceCore_1_SetException_mF7BF08920989E5C2698F01D53613CACD21D541F6_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), ActionTask_1__ctor_m3D190A013FA4AF9945CA12D818448D0872248141(), ActionTask_1__ctor_mF0E2FBFF5DC602F7116B1BE56AA6CD66D0B1CFD8(), ActionTask_1_get_agent_mBFDD5B5E4A0F035CCFA013085640675BFF8E9433() (+1602 more) +Nodes (516): AddressablesAsyncExtensions, AsyncOperationHandleConfiguredSource, Cysharp.Threading.Tasks, GetResult(), OnCompleted(), UnsafeOnCompleted(), Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable (+508 more) ### Community 66 - "Community 66" Cohesion: 0.0 -Nodes (549): AddressablesAsyncExtensions, AsyncOperationHandleConfiguredSource, Cysharp.Threading.Tasks, GetResult(), OnCompleted(), UnsafeOnCompleted(), Aggregate, Cysharp.Threading.Tasks.Linq (+541 more) +Nodes (1724): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m028901EE8061A92AB26992ABB3AC361969CE5968(), double2__ctor_m4026FE95F69FAEBD29D7092ADAA1CB845A8E859B_inline() (+1716 more) ### Community 67 - "Community 67" Cohesion: 0.0 -Nodes (513): AnimancerTransitionAssetBase__ctor_m8B042983702448B0C59777089D5D8F37DFA54E13(), AnimancerPlayable_get_Disposables_m4ECF320723FEE796F592ECAEC218835814CA1372(), List_1__ctor_mB4C51AD04BB1308274A370FED1FA4A1651C5766F(), Sequence_GetDefaultNormalizedStartTime_m9B141B1BECF5954F21A4E2D7502A6FF9E898EBDB(), Serializable_op_Implicit_m901BF8DFAF325E4CEFA53EC77AD25B4DD04A7855(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_ClosedInstInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_ClosedStaticInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_OpenGenericInterfaceInvoker() (+505 more) +Nodes (1654): ArrayFormatter_1__ctor_m09501C8D979125A3605F4958329660B65BA91749(), ArrayFormatter_1__ctor_m09A1245216793A096404B83DDC47A1C636007366(), ArrayFormatter_1__ctor_m121402522DA7BC4CE99A0C725478A6EDF54F88CA(), ArrayFormatter_1__ctor_m146F4FA75C665AB8530EB6E6B01A1D91314832AD(), ArrayFormatter_1__ctor_m265FB50B3DBA0723A567D2FE038F07441517CB95(), ArrayFormatter_1__ctor_m39FCC37A9967C34BD86449A45BD9E8D49798B9F2(), ArrayFormatter_1__ctor_m4BE1EC357356465C5D8E5A062B04A377D5DB1811(), ArrayFormatter_1__ctor_m554A3DC006B177F6FC6567304F48F2AF3F0E278B() (+1646 more) ### Community 68 - "Community 68" Cohesion: 0.0 -Nodes (1789): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m1F653087085C8A6C95D4284E9C55C18A67B0F532(), math_csum_m6A99E69A84442A729781A97F78B260223DD01D8F_inline() (+1781 more) +Nodes (1642): bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m5868EDDBC438498A6A62CD1062B0CE7D8B58509F(), float2__ctor_m3D598E2C2D173DE852F3AB157502968261383C97_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_get_yzx_mDF6DE39B69C5DE384F74C0D1EC91AA0388E23535_inline() (+1634 more) ### Community 69 - "Community 69" Cohesion: 0.0 -Nodes (1729): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m028901EE8061A92AB26992ABB3AC361969CE5968(), double2__ctor_m4026FE95F69FAEBD29D7092ADAA1CB845A8E859B_inline() (+1721 more) +Nodes (1675): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline() (+1667 more) ### Community 70 - "Community 70" Cohesion: 0.0 -Nodes (1683): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline() (+1675 more) +Nodes (1469): Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisValueTuple_2_tD9B2DFA658DCD9F80643E0A14F0A6116844CE4A4_m7F7021276F4309AB90077D08A5985F82622BB5BC(), Func_2__ctor_m0EBB3755058A70293727FB0E06A7992D0341A30C(), igq_fqq_m560A37EC1AD9439DB64893323B2CC24C52FFBB56(), igq_gpe_mE7D7117FB1EE7024ECA6B08787CEA8D349493927(), igq_jew_m5E3ADB823C9DDBE1B634A1E8C92531DFE9D34474(), igq_kqi_mE784A618DA393D6E192B6FC41AD7D8AE6D4861C2(), igq_mai_mE916E522B3384E2987F73A0C0E33A5B398310641(), igx__ctor_mF4E4005499F40A5E1DF0F354EDED7F76853506C6() (+1461 more) ### Community 71 - "Community 71" Cohesion: 0.0 -Nodes (1647): bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m5868EDDBC438498A6A62CD1062B0CE7D8B58509F(), float2__ctor_m3D598E2C2D173DE852F3AB157502968261383C97_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_get_yzx_mDF6DE39B69C5DE384F74C0D1EC91AA0388E23535_inline() (+1639 more) +Nodes (1281): Action_1_Invoke_m0B4352C262325B25DA496C092BDF7E43BDB71BA0_inline(), Action_1_Invoke_m0C5A865E0D664E4E2FAB1498B4103EA11F63FE15_inline(), Action_1_Invoke_m1169A2DC53203BA573048ACBB879FA99B18917BE_inline(), Action_1_Invoke_m30F8D4CC797DD1889B4BEAA4E825516F972174EB_inline(), Action_1_Invoke_m50BA9D8AF39D61E89FDBCF982BCB43E4B3CB1B63_inline(), Action_1_Invoke_m712357D4D07C4936EACDE8DCEF8D1DB9E80800AF_inline(), Action_1_Invoke_m95D36D1EF5A0F51D204B769AABB95632764BCC85_inline(), Action_1_Invoke_mAA0A84BA34CF8CDF2E95CAFC7FF94DFD45315ADE_inline() (+1273 more) ### Community 72 - "Community 72" Cohesion: 0.0 -Nodes (1160): List_1_Add_m2B5312E60384311F3BD53C9BF13C5E45D1FAB04C_inline(), ProviderBase_CreateHandle_TisRuntimeObject_mDE6391D37AF086187F659628E6CCDA229B7E9C81_gshared(), ProviderBase_get_RefCount_m5081C763FA2C514C06B02B72726AAF0D5E13BF8C_inline(), ProviderBase_set_RefCount_m5AB0D77FFE3D13AF7C0887E34A53384A4F9D18BD_inline(), AsyncInstantiateOperation_1_get_isDone_mE99382CE68A2338957EE63C984044A4985E32BE1_gshared(), AsyncInstantiateOperation_1_get_keepWaiting_mC7658B4FCBB09E58AA8BED3CEC1FC09E41FAE304_gshared(), AsyncInstantiateOperation_1_get_progress_m876C14A179119EC89D15392442D1CB3933A88BBA_gshared(), FastResourceComparer_Compare_m64723AFBC5F96500FC53177B3118E889C5A58F36() (+1152 more) +Nodes (1356): ViAssisstant_EqualsIgnoreCase_m790C8F6A22EB47C860C70E78786BBF5C15A9F613(), LowLevelList_1_CopyTo_m84036282E39188B5D6D6D88BD506264711B760BD_gshared(), LowLevelList_1_CopyTo_m39292EA1E9A9DE27CA5E34D9A69ADEC84E80F3DE_gshared(), Nullable_1_ToString_mF43168D6369F27A1CF24B882855397CAD50452EA_gshared(), U3CU3Ec__2_1_U3CBuildImmutableU3Eb__2_8_m45DCBE0E92CC28E554B237B530B3171EFBB07AD4_gshared(), Delegate_Clone_m8B21D18E314730820FF59DF786DD02BFF1D750C6(), Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(), CancellationTokenSource_CancelAfter_mC81CF6E81C5205DF6C2528B3AC624EF48D3B2B43() (+1348 more) ### Community 73 - "Community 73" Cohesion: 0.0 -Nodes (1458): Enumerable_OrderBy_TisValueTuple_2_tD9B2DFA658DCD9F80643E0A14F0A6116844CE4A4_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m942C84E6945C0C66E5951C4132934D5C1E508672(), Enumerable_SelectMany_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisValueTuple_2_tD9B2DFA658DCD9F80643E0A14F0A6116844CE4A4_m3C6EF3F997712DE9975B8FD4C5AFB98C34910E68(), Enumerable_ToList_TisValueTuple_2_tD9B2DFA658DCD9F80643E0A14F0A6116844CE4A4_mD2575296A1AF103A4AF48105F7D6851BE646CBD2(), Func_2__ctor_m246ABB84EC70389E590ADC6D16FFECB5B3113ADE(), Func_2__ctor_m829766E8C5DCB2EA0F6BDFEDA09AB22C0F1D9168(), gg_cdr_mB37236592F7E5AA2BF2257700732793CAF2F06D7(), gg_gbb_m71930F5391B973E71CF6E223977A4D0D051617A7(), gg_gjm_m87E5BE840F9043F46D155BA5AB3560CEBB88E46E() (+1450 more) +Nodes (1154): Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m5B415C4745E47108DD9258EBCCB422EFD6B8A0EB_inline(), Array_Empty_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m7E922E24AAEBD664256383832D53DDF17E1F3052_inline() (+1146 more) ### Community 74 - "Community 74" Cohesion: 0.0 -Nodes (1254): Action_1_Invoke_m0B4352C262325B25DA496C092BDF7E43BDB71BA0_inline(), Action_1_Invoke_m0C5A865E0D664E4E2FAB1498B4103EA11F63FE15_inline(), Action_1_Invoke_m1169A2DC53203BA573048ACBB879FA99B18917BE_inline(), Action_1_Invoke_m30F8D4CC797DD1889B4BEAA4E825516F972174EB_inline(), Action_1_Invoke_m50BA9D8AF39D61E89FDBCF982BCB43E4B3CB1B63_inline(), Action_1_Invoke_m712357D4D07C4936EACDE8DCEF8D1DB9E80800AF_inline(), Action_1_Invoke_m95D36D1EF5A0F51D204B769AABB95632764BCC85_inline(), Action_1_Invoke_mAA0A84BA34CF8CDF2E95CAFC7FF94DFD45315ADE_inline() (+1246 more) +Nodes (492): ActionClickedEvent, AnimatorMessageListener, Unity.VisualScripting, AsyncAwakeTrigger, Cysharp.Threading.Tasks.Triggers, AsyncStartTrigger, Cysharp.Threading.Tasks.Triggers, AsyncTriggerBase (+484 more) ### Community 75 - "Community 75" Cohesion: 0.0 -Nodes (1159): MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_m69E5B5290F982D6CDF9FA99A428804D6A999886B_gshared(), MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_mA1682B4144801F8C6F415BECEAEDEE352FD1748C_gshared(), Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline() (+1151 more) +Nodes (1394): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline() (+1386 more) ### Community 76 - "Community 76" Cohesion: 0.0 -Nodes (1291): LowLevelList_1_CopyTo_m39292EA1E9A9DE27CA5E34D9A69ADEC84E80F3DE_gshared(), Nullable_1_ToString_mF43168D6369F27A1CF24B882855397CAD50452EA_gshared(), HttpHeaderValueCollection_1_ParseAdd_m1AD2E5F30CB744E9201E9E0C0AAC9031AD701F97_gshared(), HttpHeaderValueCollection_1_TryParseAdd_m57BC7CB09EA81A3AC0EAA2764553AFFE1E784128_gshared(), CancellationTokenSource_CancelAfter_mC81CF6E81C5205DF6C2528B3AC624EF48D3B2B43(), TaskCanceledException__ctor_mFBB9383EBC8A44183E702C0ECBE28E8463E22CD5(), ArgumentException__ctor_m34A925BA55EC4CE4253404E363B5F6A53EB51CA3(), FormatException__ctor_mF29D430E15E766845220AB94DEE48CFC341A2DFE() (+1283 more) +Nodes (1373): ModuloDouble_Run_mC5393CC0984A67C3839DD9350F09BF059D3A9AF7(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline() (+1365 more) ### Community 77 - "Community 77" Cohesion: 0.0 -Nodes (1402): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline() (+1394 more) +Nodes (1073): EnumField_1__cctor_m3EB4977A1873CD68C570106A7DDF828C47226108_gshared(), EnumField_1__cctor_m6C921602BCBF7DC699A9B6DD225730A941996BF6_gshared(), EnumField_1__cctor_mDFE900D06C1DD48F7B59EBAFC149EB33ED63F3D0_gshared(), CompletedFileHandler_Invoke_m76C07D9F40A0547E02EC1C63DF3F4B45AE99CBCF_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_OpenInst(), Deflater__ctor_m8D1FE76A45B522A5322FB2AB408A84613B8A6BF9(), Deflater__ctor_m9EEEB040372E91B1757D4F3CF556064A36DE769D() (+1065 more) ### Community 78 - "Community 78" Cohesion: 0.0 -Nodes (1377): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool4__ctor_m2A59D4A3453F6D4B684BABDF76792A2F28112307_inline() (+1369 more) +Nodes (860): ExampleInput_get_MouseScrollDelta_m1771DE7E240D08A6E6688E30A9505D4F620A5CD2(), CheckButtonInput_OnCheck_mCF211148BD33D2C10EA67A3F649749C4767CF1B4(), DebugManager_GetActionToggleDebugMenuWithTouch_mD00A060C5705334410F83ACE437D7659756D71EB(), Nullable_1__ctor_m988C795ADB71738BF510FA2A53DB66AB9979D9C1(), Nullable_1_get_HasValue_m1CC9FA8B94EA8E383BDA9382073F714E028FE807_inline(), Nullable_1_get_Value_m4C00468C8C1A5EFE309A51B164BCC96C382CAEDA(), U3CU3Ec_U3C_ctorU3Eb__33_0_m1500A2C16EECF63B0C1489E0E070B208134608D7(), TextContainer__ctor_m31365F9C21AADAA5C2407613762F313663B62735() (+852 more) ### Community 79 - "Community 79" -Cohesion: 0.0 -Nodes (1143): Array_InternalArray__get_Item_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF01CACE82616CAD4135BE2FAC266A923369F3A61(), Array_InternalArray__get_Item_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_mBB17D60F1712E426F2F0B07792407B20EA2EB501(), Array_InternalArray__get_Item_TisEmptyData_t00356C2BB80236243B9C3C1D0EFBF8837803D27D_m5CB79741155DE9B13ECF8E7DD602CF4145771D33(), Array_InternalArray__get_Item_TisEmptyData_t02ECBE01728C0979248845C107F3FCE871DDC9E3_m7E9E40089766BF5FF69964E44CA568E3006DE68F(), Array_InternalArray__get_Item_TisEmptyData_t1C3D3C071EBD9CF479FFE737CB6E0618C82FE95E_mABD86630C97B4D012AA0CDE2F95C06A6486D45BE(), Array_InternalArray__get_Item_TisEmptyData_t2CB75995D335E22F6BF31D1CB979DB1067C5025E_mDC22F7CC0C93AFADE6C3F59F37F558FFFFFB6A56(), Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4(), Array_InternalArray__get_Item_TisEmptyData_t43DE49ADBBE9CFA603DCA7C5CDC998DE6DC976A1_m16960B324D10C1FFBBA83B79B5D8223F1D54ABC4() (+1135 more) +Cohesion: 0.01 +Nodes (1029): bho__ctor_m54871A01B2162F921CEEEEC273DB31BA9E93A02E(), bhp__ctor_mE7C9CB832377EC044B78883835509CCF2CB1DDE7(), blj__ctor_m704E2EC11B5DA794AE166DFBEA726D89CFB323C4(), bnt_bnp_m4A5C6304B61C2C3D4D37DB9E58B66FE55E1F8B12(), bnt_bnq_mB595D1E1A51C183F6C4CA9CF22CAB2D182DE683D(), bnt_bvd_m08E1482C7FE6CE503F51E8F174D3D62BF44FDF2D(), bnt_bvm_mDEC718CB7DDC8A652DC256F50C916E6B1A0625C8(), bnt_foj_m19F05C58E0A6DFA8936C908A4DF2E64412E013EC() (+1021 more) ### Community 80 - "Community 80" Cohesion: 0.0 -Nodes (1147): Action_1_Invoke_m5AFD9C8F65ABE8FBD3CA4750ED7303025002087C_inline(), Action_1_Invoke_m8DADFBBC449F2B0C6CDC7ABDC7D1708F43E926B0_inline(), Action_1_Invoke_m9A3D5A6FCFC98480304F1E3EA234466D3EEE7EBF_inline(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_1_Invoke_mFB2ECAD59A120FB42503D3B940B979AD4B6EB6ED_inline(), Array_BinarySearch_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_m42970260FF15CCCFD596EF47931CFFBDCBC5AD31(), Array_BinarySearch_TisKeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423_m0B2A256CBB4BA50A8AD06D6323D0FE0565C984A0(), Array_BinarySearch_TisKeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3_mD29E1C54B2CDFA1DE852E1DE8CFD9270A75EF86D() (+1139 more) +Nodes (381): AddChildAllocator(), AddSafetyHandle(), Allocate(), AllocateBlock(), AllocatorManager, AreTheSame(), CheckAllocatedSuccessfully(), CheckDelegate() (+373 more) ### Community 81 - "Community 81" Cohesion: 0.0 -Nodes (1003): CompletedFileHandler_Invoke_m76C07D9F40A0547E02EC1C63DF3F4B45AE99CBCF_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_OpenInst(), Deflater__ctor_m8D1FE76A45B522A5322FB2AB408A84613B8A6BF9(), Deflater__ctor_m9EEEB040372E91B1757D4F3CF556064A36DE769D(), Deflater__ctor_mAE6A6FE30D86484351A0DD6C0F6BA0509A0981EF(), Deflater_Deflate_m40F7F94572DEB3C858D91F9D4B5A6692599EFC59(), Deflater_Deflate_m84FD8CDD2D0BBB6236D08081481CDE2AB1F68149() (+995 more) +Nodes (882): ActionConfirmMessageFormatter__ctor_m42FB3B127CB78F044A19CC2B91A58D39BAF3A26C(), ActionConfirmMessageFormatter_Deserialize_mCAB2E600BE2EFCFD72764280689C6B9345D5BC62(), ActionConfirmMessageFormatter_Serialize_m99C703EF1F09B60A353582C00FE263680DB60C36(), ActionExcuteMessageFormatter__ctor_mE89FD29A88912F13AB306E02ADC045B2FE6325BC(), ActionExcuteMessageFormatter_Deserialize_mCCAEC22AAFC74AE338FE7FFD65D7304E07A27657(), ActionExcuteMessageFormatter_Serialize_m5EA34A8A4E320B95B4AC1CA42A850270EBDA7E44(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+874 more) ### Community 82 - "Community 82" -Cohesion: 0.01 -Nodes (1028): bho__ctor_m54871A01B2162F921CEEEEC273DB31BA9E93A02E(), bhp__ctor_mE7C9CB832377EC044B78883835509CCF2CB1DDE7(), blj__ctor_m704E2EC11B5DA794AE166DFBEA726D89CFB323C4(), bnt_bvm_mDEC718CB7DDC8A652DC256F50C916E6B1A0625C8(), bnt_foj_m19F05C58E0A6DFA8936C908A4DF2E64412E013EC(), bnt_gey_m99261E491621F4AA61C96ABD36832C775F7C48E6(), bnt_gez_mEC1B6843C72849083DBF247611AF93534B703131(), bnt_imu_mD99AE09D1E9E6BF83F600C819444F9DCD441DFD1() (+1020 more) +Cohesion: 0.0 +Nodes (817): JsonConvert_ToDecimal_mDBFB70DF8154AB0C44BD7DC0210356DA29231B81(), BsonString_ToDecimal_mE708D78A3D21409E1FF9D180225580B651DB9CB5(), BCLDebug_CheckEnabled_m4D19D945B70897E6D7E87331C0365ABE46CF0F85(), Decimal_Parse_mE9998C753C545CA5A781AC3E06762D5C68D7F196(), RuntimeTypeHandle_IsInterface_m7A4D70BA06362F097C36A836507D5CABF8FE6C65(), DelegatePInvokeWrapper_SerializationEventHandler_t0A09DB90E1E5E0B2CCCB82D3380E02F4ACE8995F(), DeserializationEventHandler__ctor_mB055A34C61B59F95D440250C31ECC0E2F5025EF1(), Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329() (+809 more) ### Community 83 - "Community 83" Cohesion: 0.0 -Nodes (965): Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501(), Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375(), Array_Resize_TisHighlightState_tFF5FE9065990F04A37FEC545A0024047F0ABD740_m056A39CD9D80FED713495139C0EC448AF2F83672(), Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916(), Array_Resize_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m540BB33A026A346B7B0033684BE811ED519B1E33(), Array_Resize_TisMaterialReference_t86DB0799D5C82869D4FF0A4F59624AED6910FD26_m489C12CB47EAA03F917AED6C31CC778FCD467E5C(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E() (+957 more) +Nodes (874): ManualResetValueTaskSourceCore_1_SetException_mF7BF08920989E5C2698F01D53613CACD21D541F6_gshared(), RendezvousAwaitable_1_SetException_m46B8F1E0D33252EFA5618CA198F81C9FB7F99F06_gshared(), AsyncTaskMethodBuilder_1_Create_m0DBDD9164C1E94BB8CDBFB011C3AE620B9BBB4B7(), AsyncTaskMethodBuilder_1_Create_m6A59453D00C0143F178809ADFD98C90E8C291ABB(), AsyncTaskMethodBuilder_1_get_Task_m3E4C6AB5A394B6C8E538FB9D262C0C698FFE9970(), AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_t9E060FE7291342719C045F76EA67AD067BF74208_m59D61097324759E52596782E30AA09851886C25C(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_tBDA3F288439FE7046BD6F46BA290F1DF864F8882_m763AB42496D0B3BACA58B3ACA8B23385480D0591() (+866 more) ### Community 84 - "Community 84" Cohesion: 0.0 -Nodes (904): Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m5B415C4745E47108DD9258EBCCB422EFD6B8A0EB_inline(), Array_Empty_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m7E922E24AAEBD664256383832D53DDF17E1F3052_inline(), Array_Empty_TisComplex_tC7518465FEAE5F5138E1653314A611EEC09467A2_mB9CF04C77723F177AEB1AFFCC848C36FE0B03888_inline() (+896 more) +Nodes (650): NullableSerializer_1__ctor_m64C4C49294BE546AAF55DB96EEC7B8F7146B9AC7_gshared(), SerializeAsNominalTypeSerializer_2__ctor_m85ED643AF9DA6F2214C719782041BDA2BE53C2D5_gshared(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m4D53E0E0F90F37AD5DBFD2DC75E52406F90C7ABC_inline(), ArrayPool_1__ctor_m4912DA14C35B122CC92EE954CD2F3E745A38DC27(), ArrayPool_1__ctor_m8701B7990A96491CE639357F87E44ED27122716D(), ArrayPool_1__ctor_m9881CC61A587450CFC52D4F452DBAC2DA7AECFE7() (+642 more) ### Community 85 - "Community 85" Cohesion: 0.0 -Nodes (868): ActionConfirmMessageFormatter__ctor_m42FB3B127CB78F044A19CC2B91A58D39BAF3A26C(), ActionConfirmMessageFormatter_Deserialize_mCAB2E600BE2EFCFD72764280689C6B9345D5BC62(), ActionConfirmMessageFormatter_Serialize_m99C703EF1F09B60A353582C00FE263680DB60C36(), ActionExcuteMessageFormatter__ctor_mE89FD29A88912F13AB306E02ADC045B2FE6325BC(), ActionExcuteMessageFormatter_Deserialize_mCCAEC22AAFC74AE338FE7FFD65D7304E07A27657(), ActionExcuteMessageFormatter_Serialize_m5EA34A8A4E320B95B4AC1CA42A850270EBDA7E44(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisPlayerBugReportArchiveManifest_t48ED89CA90EE061797DA4D22B73130215E9007F1_m8E3B4E0EB4C42E05287635ED2366EAEC67C46DAD_inline() (+860 more) +Nodes (517): ActiveInModeAttribute, UnityEditor.Timeline.Actions, Keys, SetAdditionalPropertiesVisibilityAttribute, Styles, UnityEditor.Rendering, ActionNetData, Logic.AI (+509 more) ### Community 86 - "Community 86" -Cohesion: 0.0 -Nodes (651): NullableSerializer_1__ctor_m64C4C49294BE546AAF55DB96EEC7B8F7146B9AC7_gshared(), SerializeAsNominalTypeSerializer_2__ctor_m85ED643AF9DA6F2214C719782041BDA2BE53C2D5_gshared(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m4D53E0E0F90F37AD5DBFD2DC75E52406F90C7ABC_inline(), ArrayPool_1__ctor_m4912DA14C35B122CC92EE954CD2F3E745A38DC27(), ArrayPool_1__ctor_m8701B7990A96491CE639357F87E44ED27122716D(), ArrayPool_1__ctor_m9881CC61A587450CFC52D4F452DBAC2DA7AECFE7() (+643 more) +Cohesion: 0.01 +Nodes (279): ET.Analyzer, ArrayFormatter, ArraySegmentFormatter, DangerousUnmanagedArrayFormatter, MemoryFormatter, MemoryPack, MemoryPack.Formatters, MemoryPackFormatterProvider (+271 more) ### Community 87 - "Community 87" -Cohesion: 0.0 -Nodes (833): EqualityComparer_1_CreateComparer_m018A5C6507D24CE2FCF7311A205CD010794ED5DB(), EqualityComparer_1_CreateComparer_m0B7F6CCB0A9A4DED59C8F9CD2B3B023CF7620548(), EqualityComparer_1_CreateComparer_m18E602040C3A0FE29414879D2C8C5AE8A2C78F2E(), EqualityComparer_1_CreateComparer_m2DDA09BC451B2EE09ECF4DA391F3C8431222516D(), EqualityComparer_1_CreateComparer_m327C4B7007EE7CF091A5997A5D294677A97A0CAB(), EqualityComparer_1_CreateComparer_m4B6D964D775E3647E4F584598B92779B62AB0543(), EqualityComparer_1_CreateComparer_m5349A77F09E5840ADAF717E7BE27A8EBA85DD585(), EqualityComparer_1_CreateComparer_m5CE64778049A5FF307CF5D46F6460F7743A9784A() (+825 more) +Cohesion: 0.01 +Nodes (674): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m30F3FBCA7FF6DA6DB48936FF84B26DCA89843B27(), float2__ctor_m037D046BD70923231612C90B14E364EB2BB15BD7_inline() (+666 more) ### Community 88 - "Community 88" -Cohesion: 0.0 -Nodes (603): eqq_exv_mBE31A97BE0DF6E4F18CDC84472AEA0DF34F61BCA(), eqq_exy_m03C80D9524ABFDD0345C7125F599BD85C6626D33(), eqq_exz_mE62B2F8069A4D2B5F0E5D45A9C87D438C6BE9712(), eqq_eya_m38D0D4027C70E92CC79C787D20F23A94D9A45643(), eqq_eyb_m78393D1DBC79164AF3A48BC0E010DD0DA943435C(), epv_ett_m912117BDB448D4DF5164E69E7138D329C4FDCEDC(), epw_etv_m12D39ED35E1B3C0C3D1D93B4F81EA259C2A8C586(), epw_Invoke_m1593957ED398150F380E813850C8D5E839C4DE72() (+595 more) +Cohesion: 0.01 +Nodes (601): ArrayFormatter_1__ctor_m15C4C078FE5CC517C134B2988E9EA8B26A0B306E(), ArrayFormatter_1__ctor_m22B24AF6F68913FE2B8F7D54FC2B8431EA54395B(), ArrayFormatter_1__ctor_m24896EE7176041D9E0567691CD032E3BF7F627A3(), ArrayFormatter_1__ctor_m2B07510C30EAF4F9298EAEE41EFE2758839DF5A9(), ArrayFormatter_1__ctor_m313347D3952B8ABB5BEF30965A9E7F7FF384C51D(), ArrayFormatter_1__ctor_m333F21254FD1CDC3EC0803BB79F4720409E432C5(), ArrayFormatter_1__ctor_m36224FC544663C82810133C63E2CEB68DDE9DE7D(), ArrayFormatter_1__ctor_m4A885C25B96F65D05E6A6911CB92C1C83058E5AF() (+593 more) ### Community 89 - "Community 89" -Cohesion: 0.0 -Nodes (722): AddrofIntrinsics_AddrOf_TisIl2CppFullySharedGenericAny_m5BD9D07EF2F193BD1D209D91D3E6D993D40435F6_gshared(), AddrofIntrinsics_AddrOf_TisRuntimeObject_m26881CDB13AAC26B23F4C487BF5461CC7BBFB6EF_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911_gshared() (+714 more) +Cohesion: 0.01 +Nodes (542): sn__ctor_m1BC348D0B532A955AB29CCEE82B5BC3217641C2B(), AddUnitCollectDataFormatter__ctor_m5E997AA0CEE2EE50698BB785C3D8C38877E82012(), AddUnitCollectDataFormatter_Deserialize_m1CE545CDB915CD9732A0D16EE4558CDDA84770D2(), AddUnitCollectDataFormatter_Serialize_m93D3479B25E05A9F7DB5F4B1382051CA2EF07064(), ArrayFormatter_1__ctor_m00A70A5FFBA123BE7DDDF4E011A63855E58A2227(), ArrayFormatter_1__ctor_m1A45DA23705E3C7AFAD886FF0993A6DF665DD5F5(), ArrayFormatter_1__ctor_m1ED35D6D0C2709E2ABF9B437C167728F0C8378E7(), ArrayFormatter_1__ctor_m46AFCEE0BC59BFC6BDB853101545B964654DEC95() (+534 more) ### Community 90 - "Community 90" -Cohesion: 0.0 -Nodes (513): ActiveInModeAttribute, UnityEditor.Timeline.Actions, Keys, SetAdditionalPropertiesVisibilityAttribute, Styles, UnityEditor.Rendering, ActionNetData, Logic.AI (+505 more) - -### Community 91 - "Community 91" -Cohesion: 0.01 -Nodes (678): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m30F3FBCA7FF6DA6DB48936FF84B26DCA89843B27(), float2__ctor_m037D046BD70923231612C90B14E364EB2BB15BD7_inline() (+670 more) - -### Community 92 - "Community 92" Cohesion: 0.01 Nodes (536): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_gshared_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_gshared_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_inline(), MemoryExtensions_AsSpan_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m2BBBF8DF011FB3D812509B04EA093C0D6882B862_gshared_inline(), MemoryExtensions_AsSpan_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m2BBBF8DF011FB3D812509B04EA093C0D6882B862_inline(), MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_gshared_inline() (+528 more) +### Community 91 - "Community 91" +Cohesion: 0.0 +Nodes (207): AbsoluteNode, UnityEditor.ShaderGraph, AddNode, UnityEditor.ShaderGraph, AllNode, UnityEditor.ShaderGraph, AndNode, UnityEditor.ShaderGraph (+199 more) + +### Community 92 - "Community 92" +Cohesion: 0.01 +Nodes (118): AirborneState, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, BasicCharacterBrain, AsteroidExplosion, BattleEventDefine, EnemyDead, EnemyFireBullet (+110 more) + ### Community 93 - "Community 93" Cohesion: 0.01 -Nodes (437): BsonStreamAdapter_Dispose_m32D90E09BF8B1153C2C798C1A3494577AEF73AB8(), ByteBufferStream_Dispose_m258657432B55AE1109E5EFCF54F97E569FC54E4F(), TailStream_Dispose_mCCF835E097C3D8C54402B59F615FA3B0686E6F03(), MemoryStream_Dispose_m162D86D51D9B1C849F33D4BC14D1EF739D07A56E(), BufferedStream_Dispose_m49176631646BEA49F479590974C123715EDC3B8B(), UnmanagedMemoryStreamWrapper_Dispose_m394710750FE3A79EB0E2A173AC40BFA57F5F00B5(), BinaryReader_Dispose_mAFF1A9CE9A73D148270FFA1F896992EB52D36078(), BinaryWriter__ctor_mF2F1235E378C3EC493A8C816597BCEB4205A9CA0() (+429 more) +Nodes (335): dlGetProcAddress(), GLEW_CONTEXT_ARG_DEF_LIST(), GLEWAPIENTRY(), glewContextIsSupported(), glewGetErrorString(), glewGetExtension(), _glewInit_GL_3DFX_tbuffer(), _glewInit_GL_AMD_debug_output() (+327 more) ### Community 94 - "Community 94" Cohesion: 0.01 -Nodes (334): dlGetProcAddress(), GLEW_CONTEXT_ARG_DEF_LIST(), GLEWAPIENTRY(), glewContextIsSupported(), glewGetExtension(), _glewInit_GL_3DFX_tbuffer(), _glewInit_GL_AMD_debug_output(), _glewInit_GL_AMD_draw_buffers_blend() (+326 more) +Nodes (116): BaseCondition, NodeCanvas.Tasks.Actions, BBParameter, ButtonClicked, NodeCanvas.Tasks.Conditions, CheckBoolean, NodeCanvas.Tasks.Conditions, CheckBooleanTrigger (+108 more) ### Community 95 - "Community 95" Cohesion: 0.01 -Nodes (96): BaseCondition, NodeCanvas.Tasks.Actions, ButtonClicked, NodeCanvas.Tasks.Conditions, CheckBoolean, NodeCanvas.Tasks.Conditions, CheckBooleanTrigger, NodeCanvas.Tasks.Conditions (+88 more) +Nodes (107): BuiltInBaseShaderGUI, Styles, UnityEditor, UnityEditor.Rendering.BuiltIn.ShaderGraph, BuiltInBaseShaderGUI, BuiltInLitGUI, UnityEditor.Rendering.BuiltIn.ShaderGraph, BuiltInLitSubTarget (+99 more) ### Community 96 - "Community 96" -Cohesion: 0.02 -Nodes (98): BuiltInBaseShaderGUI, Styles, UnityEditor, UnityEditor.Rendering.BuiltIn.ShaderGraph, LitBlockMasks, LitIncludes, LitKeywords, LitPasses (+90 more) +Cohesion: 0.01 +Nodes (157): BoneInspectorPanelFactory, BoneInspectorPanelUxmlTraits, UnityEditor.U2D.Animation, BoneReparentToolModel, BoneReparentToolView, CustomUxmlFactory, CustomUxmlTraits, UnityEditor.U2D.Animation (+149 more) ### Community 97 - "Community 97" -Cohesion: 0.02 -Nodes (69): ET.Analyzer, Clipper, ClipperBase, ClipperException, ClipperOffset, Equals(), ExtrasClipperLib, GetHashCode() (+61 more) - -### Community 98 - "Community 98" -Cohesion: 0.01 -Nodes (74): AirborneState, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, BasicCharacterBrain, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, Character, DictionaryAsset (+66 more) - -### Community 99 - "Community 99" Cohesion: 0.01 Nodes (132): Changelog_1_0_0, LudiqCoreChangelog_1_0_0, LudiqGraphsChangelog_1_0_0, Unity.VisualScripting, Changelog_1_0_1, LudiqCoreChangelog_1_0_1, LudiqGraphsChangelog_1_0_1, Unity.VisualScripting (+124 more) -### Community 100 - "Community 100" +### Community 98 - "Community 98" Cohesion: 0.01 Nodes (62): InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting (+54 more) +### Community 99 - "Community 99" +Cohesion: 0.03 +Nodes (38): CanvasScaler, OnValidate(), UnityEngine.UI, Animancer, CustomFade, Delegate, Animancer, Back (+30 more) + +### Community 100 - "Community 100" +Cohesion: 0.03 +Nodes (151): Golfer_HitBall_m0A2876F70830B2D577534B7AB675451BB1107D73(), Action_2_Invoke_m7EA811A13BB45D59926C636C90CFD2FCE6D89B3B_inline(), BoxCollider_set_size_Injected_mFA7F15E94435D42A70D7C8543CEC7AF4F6D55343(), BoxCollider_set_size_m8374267FDE5DD628973E0E5E1331E781552B855A(), CharacterController_Move_Injected_m7F25C33CF948858A8D5822EF73FAE7A16AE65C86(), CharacterController_Move_mE3F7AC1B4A2D6955980811C088B68ED3A31D2DA4(), Collider_ClosestPoint_Injected_m4E218A16FABAA4615270B9CD82DC66E130AAFE77(), Collider_ClosestPoint_mFFF9B6F6CF9F18B22B325835A3E2E78A1C03BFCB() (+143 more) + ### Community 101 - "Community 101" -Cohesion: 0.02 -Nodes (156): AddChildAllocator(), Allocate(), AllocateBlock(), AllocatorManager, AreTheSame(), CheckAllocatedSuccessfully(), CheckDelegate(), CheckExists() (+148 more) +Cohesion: 0.04 +Nodes (28): IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, ShaderPreprocessor, IShaderScriptableStrippingData, IsKeywordEnabled(), IsShaderFeatureEnabled(), IsVolumeFeatureEnabled() (+20 more) ### Community 102 - "Community 102" -Cohesion: 0.01 -Nodes (116): BoneInspectorPanelFactory, BoneInspectorPanelUxmlTraits, UnityEditor.U2D.Animation, BoneReparentToolModel, BoneReparentToolView, CustomUxmlFactory, CustomUxmlTraits, UnityEditor.U2D.Animation (+108 more) +Cohesion: 0.02 +Nodes (64): Bloom, DownscaleParameter, UnityEngine.Rendering.Universal, ChannelMixer, UnityEngine.Rendering.Universal, ChromaticAberration, UnityEngine.Rendering.Universal, ColorAdjustments (+56 more) ### Community 103 - "Community 103" Cohesion: 0.04 -Nodes (26): IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, ShaderPreprocessor, IShaderScriptableStrippingData, IsKeywordEnabled(), IsShaderFeatureEnabled(), IsVolumeFeatureEnabled() (+18 more) - -### Community 104 - "Community 104" -Cohesion: 0.02 -Nodes (68): BoltGUI, Unity.VisualScripting, ButtonClickedEvent, UnityEngine.UI, TriggerEvent, UnityEngine.EventSystems, Event, EventSystem (+60 more) - -### Community 105 - "Community 105" -Cohesion: 0.04 Nodes (133): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3_op_BitwiseAnd_mE44CC5838094A40F1F605A7798994197165A63E1_inline(), bool3_op_LogicalNot_m85C703CC4098B3731505A162957F91C0373548BD_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_Equals_m4A47BDC70977496712F3BE7DA359E840D99C020A_inline(), float3_get_xxx_mFD7DFB9FF23BB0B3437F12CC35DB3D1E0ADF7B20_inline(), float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline() (+125 more) -### Community 106 - "Community 106" -Cohesion: 0.02 -Nodes (68): IEdge, UnityEditor.Graphing, IEquatable, INugetPackage, NugetForUnity.Models, INugetPackageIdentifier, INugetPackageIdentifier, NugetForUnity.Models (+60 more) - -### Community 107 - "Community 107" +### Community 104 - "Community 104" Cohesion: 0.01 Nodes (3): Arm, Neon, Unity.Burst.Intrinsics +### Community 105 - "Community 105" +Cohesion: 0.02 +Nodes (68): IEdge, UnityEditor.Graphing, IEquatable, INugetPackage, NugetForUnity.Models, INugetPackageIdentifier, INugetPackageIdentifier, NugetForUnity.Models (+60 more) + +### Community 106 - "Community 106" +Cohesion: 0.02 +Nodes (39): CancelEventArgs, EventArgs, FunctionArgs, Unity.VisualScripting.Dependencies.NCalc, ICollection, IConnectionCollection, Unity.VisualScripting, IKeyedCollection (+31 more) + +### Community 107 - "Community 107" +Cohesion: 0.04 +Nodes (37): Splice, Geom, LibTessDotNet, Unity.SpriteShape.External, UnityEngine.Rendering.Universal, LibTessDotNet, Mesh, Unity.SpriteShape.External (+29 more) + ### Community 108 - "Community 108" Cohesion: 0.02 -Nodes (51): AnimatorEntryComparer, UnityEngine.Timeline, ColorEqualityComparer, UnityEngine.TestTools.Utils, EventHookComparer, Unity.VisualScripting, Animancer, FastComparer (+43 more) +Nodes (49): AnimatorEntryComparer, UnityEngine.Timeline, ColorEqualityComparer, UnityEngine.TestTools.Utils, EventHookComparer, Unity.VisualScripting, Animancer, FastComparer (+41 more) ### Community 109 - "Community 109" Cohesion: 0.02 -Nodes (63): Bloom, DownscaleParameter, UnityEngine.Rendering.Universal, ChannelMixer, UnityEngine.Rendering.Universal, ChromaticAberration, UnityEngine.Rendering.Universal, ColorAdjustments (+55 more) +Nodes (50): AnimationCurve_DirectConverter, fsConverterRegistrar, ParadoxNotion.Serialization.FullSerializer.Internal.DirectConverters, Unity.VisualScripting.FullSerializer, Bounds_DirectConverter, fsConverterRegistrar, ParadoxNotion.Serialization.FullSerializer.Internal.DirectConverters, Unity.VisualScripting.FullSerializer (+42 more) ### Community 110 - "Community 110" -Cohesion: 0.02 -Nodes (37): CancelEventArgs, EventArgs, FunctionArgs, Unity.VisualScripting.Dependencies.NCalc, ICollection, IConnectionCollection, Unity.VisualScripting, IKeyedCollection (+29 more) +Cohesion: 0.03 +Nodes (13): View, TH1_UI.View.Base, View, IViewControllerInterface, TH1_UI.Controller.Base, ViewController, ViewControllerSub, ViewControllerSubInterface (+5 more) ### Community 111 - "Community 111" -Cohesion: 0.04 -Nodes (91): Enlistment__ctor_m8A01B2DCBBE2F2BB4CD040581D0D3521A449583F(), Enumerator_Dispose_mDB1BBD5EEB58E2F4C09ED5E3A1840B1C4D60A1DB(), Enumerator_get_Current_m58D3F44C5938CA7235526999C2B9C068517BF822_inline(), Enumerator_MoveNext_mBD39361874346D0E2EE2AA7CE005113DE0A7312A(), List_1__ctor_m461856AF5428B8A52C0CFBF61D88239241CC0D08(), List_1__ctor_mC3B48F43E26A08BF2940C08CC90EFABB187D157F(), List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_inline(), List_1_get_Count_m7F6318BC1C84BB21EF1E42D3FFD9F401802C9553_inline() (+83 more) - -### Community 112 - "Community 112" -Cohesion: 0.04 -Nodes (99): EventSource_WriteEvent_mA63F7746D6C33B991CF74D43360BEE20A96CB4B5(), Convert_ToString_m03249561BBE153E4ED7E2E130ECC65F08B322261(), ADP_Argument_m9382196F1C5B27CBA34C8A21D4EE6A8A7CDEC08F(), ADP_Argument_mD692CB439E2249ACF4FF6C03A562BB1DB1964993(), ADP_Argument_mD87295643203342A402470771011DA9751630053(), ADP_ArgumentNull_m9E75E977BECB9425FF93F92818643FFCE0D0D635(), ADP__cctor_m0F35DFF175DEA7BEA99F2576C111F46337F12EAA(), ADP_CheckArgumentLength_mE3229474F4DAC345946FA21AA8B5D1ABF9F2BC2A() (+91 more) - -### Community 113 - "Community 113" Cohesion: 0.02 Nodes (36): DebugDisplaySettingsCommon, SettingsPanel, UnityEngine.Rendering.Universal, WidgetFactory, DebugDisplaySettingsLighting, SettingsPanel, Strings, UnityEngine.Rendering.Universal (+28 more) -### Community 114 - "Community 114" +### Community 112 - "Community 112" Cohesion: 0.02 Nodes (55): BranchListViewItem, Unity.PlasticSCM.Editor.Views.Branches, ChangeCategoryTreeViewItem, Unity.PlasticSCM.Editor.Views.Diff, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer, Unity.PlasticSCM.Editor.Views.IncomingChanges.Gluon, Unity.PlasticSCM.Editor.Views.PendingChanges, ChangelistTreeViewItem (+47 more) -### Community 115 - "Community 115" +### Community 113 - "Community 113" Cohesion: 0.04 Nodes (26): Divide, GenericDivide, Unity.VisualScripting, GenericMultiply, Unity.VisualScripting, Multiply, PixelBlends, UnityEditor.U2D.Aseprite (+18 more) +### Community 114 - "Community 114" +Cohesion: 0.04 +Nodes (14): CrashSightAgent, byref(), CrashSightStackTrace, il2cpp_class_from_il2cpp_type(), il2cpp_class_get_declaring_type(), il2cpp_class_get_name(), il2cpp_class_get_namespace(), il2cpp_current_thread_walk_frame_stack() (+6 more) + +### Community 115 - "Community 115" +Cohesion: 0.03 +Nodes (50): ITestInterfaceWithContextDerivation, MyContextObjectClass, TestITestInterfaceWithContextDerivationImplementation, UnityEditor.Build.Pipeline.Tests, IEditorBuildCallbacks, ClusterOutput, IClusterOutput, UnityEditor.Build.Pipeline.Tasks (+42 more) + ### Community 116 - "Community 116" Cohesion: 0.04 Nodes (15): BitAnd(), BitArrayUtilities, BitNot(), BitOr(), IBitArray, UnityEngine.Rendering, BitArrayTests, UnityEngine.Rendering.Tests (+7 more) ### Community 117 - "Community 117" -Cohesion: 0.03 -Nodes (46): ITestInterfaceWithContextDerivation, MyContextObjectClass, TestITestInterfaceWithContextDerivationImplementation, UnityEditor.Build.Pipeline.Tests, IEditorBuildCallbacks, ClusterOutput, IClusterOutput, UnityEditor.Build.Pipeline.Tasks (+38 more) - -### Community 118 - "Community 118" Cohesion: 0.04 Nodes (43): Add(), AddNoResize(), AddRange(), AddRangeNoResize(), CompareTo(), Equals(), FixedList128BytesDebugView, FixedList128BytesExtensions (+35 more) +### Community 118 - "Community 118" +Cohesion: 0.03 +Nodes (32): IGraphElementCollection, Unity.VisualScripting, IKeyedCollection, INotifyCollectionChanged, IUnitPortCollection, IUnitPortCollection, Unity.VisualScripting, KeyedCollection (+24 more) + ### Community 119 - "Community 119" +Cohesion: 0.07 +Nodes (10): DefaultControls, DefaultRuntimeFactory, IFactoryControls, UnityEngine.UI, DefaultEditorFactory, FactorySwapToEditor, MenuOptions, UnityEditor.UI (+2 more) + +### Community 120 - "Community 120" Cohesion: 0.03 Nodes (3): ILobby, LobbyBase, TH1_Logic.Net -### Community 120 - "Community 120" +### Community 121 - "Community 121" Cohesion: 0.08 Nodes (18): BurstString, BurstStringInternal, EncodeToRaw(), BurstString, BurstStringInternal, GetBlock(), GetExponent(), GetLength() (+10 more) -### Community 121 - "Community 121" +### Community 122 - "Community 122" Cohesion: 0.07 Nodes (46): gettimeofday(), _ibound_(), ikcp_ack_get(), ikcp_ack_push(), ikcp_canlog(), ikcp_check(), ikcp_create(), ikcp_decode16u() (+38 more) -### Community 122 - "Community 122" -Cohesion: 0.04 -Nodes (33): AdditionHandler, Unity.VisualScripting, AndHandler, Unity.VisualScripting, BinaryOperatorHandler, DivisionHandler, Unity.VisualScripting, EqualityHandler (+25 more) - ### Community 123 - "Community 123" Cohesion: 0.04 -Nodes (15): FlowDragAndDropUtility, Unity.VisualScripting, FlowStateTransitionWidget, Unity.VisualScripting, ICanvas, Unity.VisualScripting, IDragAndDropHandler, IGraphContextExtension (+7 more) +Nodes (33): BaseChunk, CellChunk, UnityEditor.U2D.Aseprite, CellExtra, UnityEditor.U2D.Aseprite, ColorProfileChunk, UnityEditor.U2D.Aseprite, ExternalFilesChunk (+25 more) ### Community 124 - "Community 124" Cohesion: 0.04 -Nodes (31): BaseChunk, CellExtra, UnityEditor.U2D.Aseprite, ColorProfileChunk, UnityEditor.U2D.Aseprite, ExternalFilesChunk, UnityEditor.U2D.Aseprite, IPaletteProvider (+23 more) +Nodes (33): AdditionHandler, Unity.VisualScripting, AndHandler, Unity.VisualScripting, BinaryOperatorHandler, DivisionHandler, Unity.VisualScripting, EqualityHandler (+25 more) ### Community 125 - "Community 125" +Cohesion: 0.04 +Nodes (31): GetApplicationVariable, Unity.VisualScripting, GetGraphVariable, Unity.VisualScripting, GetSavedVariable, Unity.VisualScripting, GetSceneVariable, Unity.VisualScripting (+23 more) + +### Community 126 - "Community 126" Cohesion: 0.05 Nodes (16): Column, IColumnUpdate, ILayerImportColumnField, UICellImportElement, UILayerImportColumn, UnityEditor.U2D.PSD, UICellLabelElement, UILayerNameColumn (+8 more) -### Community 126 - "Community 126" -Cohesion: 0.06 -Nodes (3): ViMath2D, ViMath3D, ViMathDefine - ### Community 127 - "Community 127" -Cohesion: 0.1 -Nodes (8): DefaultControls, DefaultRuntimeFactory, IFactoryControls, UnityEngine.UI, DefaultEditorFactory, FactorySwapToEditor, MenuOptions, UnityEditor.UI +Cohesion: 0.05 +Nodes (23): BundledAllAssetsProvider, YooAsset, BundledAssetProvider, YooAsset, BundledRawFileProvider, YooAsset, BundledSceneProvider, YooAsset (+15 more) ### Community 128 - "Community 128" Cohesion: 0.05 Nodes (32): BoxTool, Styles, UnityEditor.Tilemaps, EraseTool, Styles, UnityEditor.Tilemaps, FillTool, Styles (+24 more) ### Community 129 - "Community 129" +Cohesion: 0.06 +Nodes (3): ViMath2D, ViMath3D, ViMathDefine + +### Community 130 - "Community 130" Cohesion: 0.04 Nodes (24): DefineCollection, Item, UnityEditor.ShaderGraph, IConditional, IncludeDescriptor, UnityEditor.ShaderGraph, Item, KernelCollection (+16 more) -### Community 130 - "Community 130" -Cohesion: 0.08 -Nodes (8): AnalyticConstant, AnalyticsJsonStorage, AnimationAnalytics, IAnalyticsStorage, IAnimationAnalyticsModel, SkinningModuleAnalyticsModel, UnityAnalyticsStorage, UnityEditor.U2D.Animation - ### Community 131 - "Community 131" -Cohesion: 0.11 -Nodes (13): TextureGeneration, UnityEditor.U2D.Aseprite, ITextureSettings, TextureAlphaSettings, TextureCubemapSettings, TextureGeneratorHelper, TextureMipmapSettings, TextureNormalSettings (+5 more) +Cohesion: 0.05 +Nodes (25): IAnalyticsIdentifiable, IAotStubbable, IGraph, Unity.VisualScripting, IGraphElement, Unity.VisualScripting, IGraphItem, IGraphNest (+17 more) ### Community 132 - "Community 132" Cohesion: 0.06 -Nodes (13): Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Action_3_Invoke_mB1AE88F5C5FE161C85EA4A58D5CC535721E01B21_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnalyticsSessionInfo_CallIdentityTokenChanged_m1AD21A1840BCB9CB222455F609DBBF7B7B380911(), AnalyticsSessionInfo_CallSessionStateChanged_m6C3C7DD13064E37D7C3AE9411355BCEF77C4664B(), IdentityTokenChanged_Invoke_m22D3DA825F0D6E701D050EFA3D35E84DFAC7F8D9_inline(), IdentityTokenChanged_Invoke_m22D3DA825F0D6E701D050EFA3D35E84DFAC7F8D9_OpenInst(), RemoteConfigSettings_RemoteConfigSettingsUpdated_mA71E7C6CDAF5D349BF0B4880A4D54DF2365EB948() (+5 more) +Nodes (14): AssetBundleWebRequest, YooAsset, DownloadHelper, YooAsset, FileGeneralRequest, YooAsset, IWebRequester, UnityWebDataRequester (+6 more) ### Community 133 - "Community 133" -Cohesion: 0.08 -Nodes (20): IBeginDragHandler, ICancelHandler, IDeselectHandler, IDragHandler, IDropHandler, IEndDragHandler, IEventSystemHandler, IInitializePotentialDragHandler (+12 more) +Cohesion: 0.05 +Nodes (17): ActiveFields, Add(), Contains(), FieldNamePairStorage, IActiveFields, IActiveFieldsSet, UnityEditor.ShaderGraph.Internal, KeywordDependentCollection (+9 more) ### Community 134 - "Community 134" -Cohesion: 0.05 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics +Cohesion: 0.06 +Nodes (13): Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Action_3_Invoke_mB1AE88F5C5FE161C85EA4A58D5CC535721E01B21_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnalyticsSessionInfo_CallIdentityTokenChanged_m1AD21A1840BCB9CB222455F609DBBF7B7B380911(), AnalyticsSessionInfo_CallSessionStateChanged_m6C3C7DD13064E37D7C3AE9411355BCEF77C4664B(), IdentityTokenChanged_Invoke_m22D3DA825F0D6E701D050EFA3D35E84DFAC7F8D9_inline(), IdentityTokenChanged_Invoke_m22D3DA825F0D6E701D050EFA3D35E84DFAC7F8D9_OpenInst(), RemoteConfigSettings_RemoteConfigSettingsUpdated_mA71E7C6CDAF5D349BF0B4880A4D54DF2365EB948() (+5 more) ### Community 135 - "Community 135" Cohesion: 0.08 -Nodes (3): Fma, Unity.Burst.Intrinsics, X86 +Nodes (20): IBeginDragHandler, ICancelHandler, IDeselectHandler, IDragHandler, IDropHandler, IEndDragHandler, IEventSystemHandler, IInitializePotentialDragHandler (+12 more) ### Community 136 - "Community 136" Cohesion: 0.05 -Nodes (0): +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics ### Community 137 - "Community 137" +Cohesion: 0.08 +Nodes (3): Fma, Unity.Burst.Intrinsics, X86 + +### Community 138 - "Community 138" +Cohesion: 0.05 +Nodes (6): CubemapShaderProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty, UnityEditor.ShaderGraph.Internal, Texture2DShaderProperty, UnityEditor.ShaderGraph.Internal + +### Community 139 - "Community 139" +Cohesion: 0.05 +Nodes (0): + +### Community 140 - "Community 140" Cohesion: 0.1 Nodes (4): Demo_ViDoubleLink3, Performance_ViDoubleLink3, ViDoubleLink3, ViDoubleLinkNode3 -### Community 138 - "Community 138" +### Community 141 - "Community 141" +Cohesion: 0.09 +Nodes (7): AnalyticConstant, AnalyticsJsonStorage, AnimationAnalytics, IAnalyticsStorage, IAnimationAnalyticsModel, SkinningModuleAnalyticsModel, UnityEditor.U2D.Animation + +### Community 142 - "Community 142" Cohesion: 0.06 Nodes (9): ISecondaryTextureDataProvider, ISpriteBoneDataProvider, ISpriteEditorDataProvider, ISpriteMeshDataProvider, ISpriteNameFileIdDataProvider, ISpriteOutlineDataProvider, ISpritePhysicsOutlineDataProvider, ITextureDataProvider (+1 more) -### Community 139 - "Community 139" +### Community 143 - "Community 143" +Cohesion: 0.06 +Nodes (18): BloomConverter, ConvertToTarget(), UnityEditor.Rendering.Universal, ChromaticAberrationConverter, UnityEditor.Rendering.Universal, ColorGradingConverter, UnityEditor.Rendering.Universal, DepthOfFieldConverter (+10 more) + +### Community 144 - "Community 144" Cohesion: 0.06 Nodes (23): BuildSettingsMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol, EditorVersionMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol, Message, MessageForRetryRepeat, PlayerSettingsMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol (+15 more) -### Community 140 - "Community 140" +### Community 145 - "Community 145" Cohesion: 0.06 Nodes (23): Acknowledgement_AqnParser, Unity.VisualScripting, Acknowledgement_DeepCopy, Unity.VisualScripting, Acknowledgement_DotNetZip, Unity.VisualScripting, Acknowledgement_FatcowIcons, Unity.VisualScripting (+15 more) -### Community 141 - "Community 141" +### Community 146 - "Community 146" Cohesion: 0.06 Nodes (14): GenericScriptablePath, GenericScriptablePathInspector, IDrawer, HandlesSystem, IHandles, UnityEditor.U2D.Sprites, ScriptableData, Contents (+6 more) -### Community 142 - "Community 142" +### Community 147 - "Community 147" Cohesion: 0.09 Nodes (10): ConditionalDrawerInternal, ConditionalDrawerWithAdditionalPropertiesInternal, CoreEditorDrawer, CoreEditorDrawersExtensions, FoldoutGroupDrawerInternal, GroupDrawerInternal, IDrawer, SelectDrawerInternal (+2 more) -### Community 143 - "Community 143" +### Community 148 - "Community 148" Cohesion: 0.06 Nodes (2): ISpriteMeshView, UnityEditor.U2D.Animation -### Community 144 - "Community 144" +### Community 149 - "Community 149" Cohesion: 0.11 Nodes (18): AsmTokenKindProvider, AssertDataDirectiveLength(), BurstDisassembler, Contains(), NextChar(), ParseComment(), ParseDirective(), ParseInstructionOrIdentifierOrRegister() (+10 more) -### Community 145 - "Community 145" +### Community 150 - "Community 150" Cohesion: 0.07 Nodes (28): AddChildTypeAnalyzerRule, AsyncMethodReturnTypeAnalyzerRule, AsyncMethodWithCancelTokenParamAnalyzerRule, AwaitExpressionCancelTokenParamAnalyzerRule, CheckETCancellTokenAfterAwaitAnalyzerRule, ClientClassInServerAnalyzerRule, DisableAccessEntityChildAnalyzerRule, DisableNewAnalyzerRule (+20 more) -### Community 146 - "Community 146" +### Community 151 - "Community 151" Cohesion: 0.07 Nodes (2): ISkeletonView, UnityEditor.U2D.Animation -### Community 147 - "Community 147" +### Community 152 - "Community 152" Cohesion: 0.08 Nodes (7): BaseTextureImportPlatformSettings, TextureImporterPlatformUtilities, UnityEditor.U2D.Aseprite, ITexturePlatformSettingsDataProvider, TexturePlatformSettings, UnityEditor.U2D.Aseprite.Common, UnityEditor.U2D.Common -### Community 148 - "Community 148" +### Community 153 - "Community 153" +Cohesion: 0.14 +Nodes (2): PathEditor, UnityEditor.U2D.Common.Path + +### Community 154 - "Community 154" Cohesion: 0.1 Nodes (10): AIConfig, AIConfigCategory, ExcelConfig, ExcelConfigBase, ExcelConfig, GeoDesc, GeoDescCategory, ExcelConfig (+2 more) -### Community 149 - "Community 149" +### Community 155 - "Community 155" Cohesion: 0.08 Nodes (7): IEditablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ISelectable, ItemToItemGui, TimelineItemGUI, UnityEditor.Timeline -### Community 150 - "Community 150" +### Community 156 - "Community 156" Cohesion: 0.08 Nodes (19): FuzzyGroupOption, Unity.VisualScripting, FuzzyOption, FavoritesRoot, OnLostFocus(), Root, SearchRoot, Styles (+11 more) -### Community 151 - "Community 151" -Cohesion: 0.07 -Nodes (17): EventUnitWidget, Unity.VisualScripting, GraphInputWidget, Unity.VisualScripting, GraphOutputWidget, Unity.VisualScripting, MissingTypeUnitWidget, Unity.VisualScripting (+9 more) - -### Community 152 - "Community 152" +### Community 157 - "Community 157" Cohesion: 0.08 Nodes (10): ConnectionCollection, Unity.VisualScripting, ConnectionCollectionBase, GraphConnectionCollection, Unity.VisualScripting, GraphElementCollection, Unity.VisualScripting, GuidCollection (+2 more) -### Community 153 - "Community 153" -Cohesion: 0.08 -Nodes (14): BuildCallbacks, UnityEditor.Build.Pipeline, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, PostDependencyCallback, UnityEditor.Build.Pipeline.Tasks (+6 more) - -### Community 154 - "Community 154" -Cohesion: 0.17 -Nodes (22): Add-Hit(), Add-LookupValue(), Convert-ObfuscatedText(), ConvertFrom-JsonStringLiteral(), ConvertTo-ObjectArray(), Format-Candidate(), Format-Replacement(), Get-JsonEntries() (+14 more) - -### Community 155 - "Community 155" -Cohesion: 0.08 -Nodes (2): IGUIWrapper, UnityEditor.U2D.Animation - -### Community 156 - "Community 156" -Cohesion: 0.08 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics - -### Community 157 - "Community 157" -Cohesion: 0.16 -Nodes (3): Demo_ViDoubleLink2, ViDoubleLink2, ViDoubleLinkNode2 - ### Community 158 - "Community 158" -Cohesion: 0.08 -Nodes (7): Matrix2ShaderProperty, UnityEditor.ShaderGraph, Matrix3ShaderProperty, UnityEditor.ShaderGraph, Matrix4ShaderProperty, UnityEditor.ShaderGraph, MatrixShaderProperty +Cohesion: 0.07 +Nodes (20): IBranchUnit, Unity.VisualScripting, IEventUnit, IGameObjectEventUnit, Unity.VisualScripting, IGraphNesterElement, INesterState, Unity.VisualScripting (+12 more) ### Community 159 - "Community 159" Cohesion: 0.08 -Nodes (0): +Nodes (14): BuildCallbacks, UnityEditor.Build.Pipeline, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, PostDependencyCallback, UnityEditor.Build.Pipeline.Tasks (+6 more) ### Community 160 - "Community 160" -Cohesion: 0.12 -Nodes (3): DoCreateSpriteAtlas, MenuItems, UnityEditor.U2D +Cohesion: 0.07 +Nodes (17): EventUnitWidget, Unity.VisualScripting, GraphInputWidget, Unity.VisualScripting, GraphOutputWidget, Unity.VisualScripting, InputSystemWidget, Unity.VisualScripting (+9 more) ### Community 161 - "Community 161" +Cohesion: 0.17 +Nodes (22): Add-Hit(), Add-LookupValue(), Convert-ObfuscatedText(), ConvertFrom-JsonStringLiteral(), ConvertTo-ObjectArray(), Format-Candidate(), Format-Replacement(), Get-JsonEntries() (+14 more) + +### Community 162 - "Community 162" +Cohesion: 0.08 +Nodes (2): IGUIWrapper, UnityEditor.U2D.Animation + +### Community 163 - "Community 163" +Cohesion: 0.1 +Nodes (3): DoCreateSpriteAtlas, MenuItems, UnityEditor.U2D + +### Community 164 - "Community 164" +Cohesion: 0.08 +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics + +### Community 165 - "Community 165" +Cohesion: 0.08 +Nodes (4): ContentPipelineTests, TestBuildWindowExtension, UnityEditor.Build.Pipeline.Tests, IBuildWindowExtension + +### Community 166 - "Community 166" +Cohesion: 0.16 +Nodes (3): Demo_ViDoubleLink2, ViDoubleLink2, ViDoubleLinkNode2 + +### Community 167 - "Community 167" +Cohesion: 0.08 +Nodes (7): IGenericMenu, TilePaletteActivePaletteDropdownMenu, UnityEditor.Tilemaps, TilePaletteActiveTargetsDropdownMenu, UnityEditor.Tilemaps, TilePaletteBrushesDropdownMenu, UnityEditor.Tilemaps + +### Community 168 - "Community 168" +Cohesion: 0.08 +Nodes (19): ChangesetsTab, Colors, Dialog, DiffPanel, DirectoryConflictResolution, DirectoryConflicts, HexColors, HistoryTab (+11 more) + +### Community 169 - "Community 169" +Cohesion: 0.1 +Nodes (12): Button, IContainer, IValueField, DebugUI, Panel, UnityEngine.Rendering, ProgressBarValue, UnityEngine.Rendering (+4 more) + +### Community 170 - "Community 170" +Cohesion: 0.22 +Nodes (3): ShaderBuildPreprocessorTests, ShaderStrippingAndPrefiltering, TestHelper + +### Community 171 - "Community 171" +Cohesion: 0.08 +Nodes (7): Matrix2ShaderProperty, UnityEditor.ShaderGraph, Matrix3ShaderProperty, UnityEditor.ShaderGraph, Matrix4ShaderProperty, UnityEditor.ShaderGraph, MatrixShaderProperty + +### Community 172 - "Community 172" +Cohesion: 0.08 +Nodes (0): + +### Community 173 - "Community 173" +Cohesion: 0.08 +Nodes (13): GenericVertexSelector, UnityEditor.U2D.Animation, ICircleSelector, UnityEditor.U2D.Animation, IRectSelector, UnityEditor.U2D.Animation, ISelector, RectSelector (+5 more) + +### Community 174 - "Community 174" Cohesion: 0.08 Nodes (3): ITimelinePlaybackControls, TimelinePlaybackControls, UnityEditor.Timeline -### Community 162 - "Community 162" +### Community 175 - "Community 175" +Cohesion: 0.08 +Nodes (2): ICanvas, Unity.VisualScripting + +### Community 176 - "Community 176" +Cohesion: 0.08 +Nodes (11): IPluginLinked, IPluginModule, Unity.VisualScripting, PluginAcknowledgement, Unity.VisualScripting, PluginChangelog, Unity.VisualScripting, PluginMigration (+3 more) + +### Community 177 - "Community 177" Cohesion: 0.19 Nodes (3): Demo_RefList1, ViRefList1, ViRefNode1 -### Community 163 - "Community 163" +### Community 178 - "Community 178" Cohesion: 0.17 Nodes (22): ActionConfirmMessage, ActionExcuteMessage, BaseMessage, ChangeCivMessage, ChatMessage, ForceUpdateMessage, GameStartMessage, HeartbeatMessage (+14 more) -### Community 164 - "Community 164" +### Community 179 - "Community 179" Cohesion: 0.09 Nodes (10): BoneSelection, UnityEditor.U2D.Animation, IBoneSelection, IndexedSelection, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path, SerializableSelection (+2 more) -### Community 165 - "Community 165" +### Community 180 - "Community 180" Cohesion: 0.11 Nodes (4): ColorProviderFromCode, ColorProviderFromStyleSheet, IColorProvider, UnityEditor.ShaderGraph.Drawing.Colors -### Community 166 - "Community 166" +### Community 181 - "Community 181" Cohesion: 0.09 Nodes (7): TimelineActiveMode, UnityEditor.Timeline, TimelineDisabledMode, UnityEditor.Timeline, TimelineInactiveMode, UnityEditor.Timeline, TimelineMode -### Community 167 - "Community 167" +### Community 182 - "Community 182" Cohesion: 0.18 Nodes (3): Demo_ViDoubleLink1, ViDoubleLink1, ViDoubleLinkNode1 -### Community 168 - "Community 168" +### Community 183 - "Community 183" Cohesion: 0.17 Nodes (2): YooAsset, YooAssets -### Community 169 - "Community 169" +### Community 184 - "Community 184" Cohesion: 0.23 Nodes (4): ContinuationQueue, Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), TimeUpdate() -### Community 170 - "Community 170" +### Community 185 - "Community 185" Cohesion: 0.23 Nodes (4): Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), PlayerLoopRunner, TimeUpdate() -### Community 171 - "Community 171" -Cohesion: 0.12 -Nodes (11): Action_1_Invoke_m1AAB217B001E387B4424C54CFB8D5278CFBE4C65_inline(), Action_2_Invoke_mD689727D0B27507C2BBDB452C43EC087E02CE401_inline(), Func_2_Invoke_m67075A0C8A50189A2501B63347177A0748FFE22C_inline(), IntPtr_ToPointer_m1A0612EED3A1C8B8850BE2943CFC42523064B4F6_inline(), NativeInputSystem__cctor_mADBD6616441651B2AFE2AD8AF64D63DF0BA66693(), NativeInputSystem_NotifyBeforeUpdate_m39AE2F1A42BD47200A263AD0EF9EDA5EF4C0042A(), NativeInputSystem_NotifyDeviceDiscovered_m861CCAFB4DD314DB3DC58FBD0398800CF9272C03(), NativeInputSystem_NotifyUpdate_m482599CC17084B0383809F97671530613EA39AD0() (+3 more) - -### Community 172 - "Community 172" -Cohesion: 0.13 -Nodes (11): BitPackFormatterAttribute, BrotliFormatterAttribute, BrotliStringFormatterAttribute, InternStringFormatterAttribute, MemoryPack, MemoryPoolFormatterAttribute, OrdinalIgnoreCaseStringDictionaryFormatter, ReadOnlyMemoryPoolFormatterAttribute (+3 more) - -### Community 173 - "Community 173" -Cohesion: 0.16 -Nodes (18): CheckRead(), CheckReadBounds(), CheckWrite(), Clear(), Copy(), CountBits(), Dispose(), Find() (+10 more) - -### Community 174 - "Community 174" -Cohesion: 0.1 -Nodes (9): ClipAction, UnityEditor.Timeline.Actions, IAction, MarkerAction, UnityEditor.Timeline.Actions, TimelineAction, UnityEditor.Timeline.Actions, TrackAction (+1 more) - -### Community 175 - "Community 175" -Cohesion: 0.18 -Nodes (20): additiveExpression_return, arguments_return, bitwiseAndExpression_return, bitwiseOrExpression_return, bitwiseXOrExpression_return, booleanAndExpression_return, conditionalExpression_return, equalityExpression_return (+12 more) - -### Community 176 - "Community 176" -Cohesion: 0.1 -Nodes (0): - -### Community 177 - "Community 177" -Cohesion: 0.15 -Nodes (8): DictionaryPool, Dispose(), GenericPool, HashSetPool, ListPool, ObjectPool, UnityEngine.Rendering, UnsafeGenericPool - -### Community 178 - "Community 178" -Cohesion: 0.11 -Nodes (14): DecalBlockMasks, DecalColorMasks, DecalData, DecalDefines, DecalIncludes, DecalKeywords, DecalPasses, DecalPragmas (+6 more) - -### Community 179 - "Community 179" -Cohesion: 0.1 -Nodes (10): DecalDrawDBufferSystem, UnityEngine.Rendering.Universal, DecalDrawErrorSystem, UnityEngine.Rendering.Universal, DecalDrawSystem, DecalDrawFowardEmissiveSystem, DecalDrawGBufferSystem, UnityEngine.Rendering.Universal (+2 more) - -### Community 180 - "Community 180" -Cohesion: 0.15 -Nodes (12): ColorControl, ColorRGBAControl, FloatControl, IControl, NormalControl, PositionControl, TangentControl, UnityEditor.ShaderGraph (+4 more) - -### Community 181 - "Community 181" -Cohesion: 0.1 -Nodes (13): Description, Unity.VisualScripting, IDescription, IGraphDescription, Unity.VisualScripting, IGraphElementDescription, Unity.VisualScripting, IMachineDescription (+5 more) - -### Community 182 - "Community 182" -Cohesion: 0.1 -Nodes (7): Collection, NonNullableCollection, Unity.VisualScripting, UnitPortDefinitionCollection, Unity.VisualScripting, Unity.VisualScripting, WidgetList - -### Community 183 - "Community 183" -Cohesion: 0.1 -Nodes (18): GLString, -border, -dealloc, -deleteTexture, -drawAtPoint, -drawWithBounds, -flags, -font (+10 more) - -### Community 184 - "Community 184" -Cohesion: 0.15 -Nodes (9): AppID(), IsMod(), IsP2PFile(), IsShortcut(), IsSteamApp(), IsValid(), ModID(), Steamworks (+1 more) - -### Community 185 - "Community 185" -Cohesion: 0.11 -Nodes (10): Animancer, AnimatedBool, ProcessAnimation(), Animancer, AnimatedFloat, ProcessAnimation(), Animancer, AnimatedInt (+2 more) - ### Community 186 - "Community 186" -Cohesion: 0.12 -Nodes (9): ITestRunSettings, ITestSettings, PlayerLauncherTestRunSettings, UnityEditor.TestTools.TestRunner, RunSettings, UnityEditor.TestTools.TestRunner.CommandLineTest, TestSetting, TestSettings (+1 more) +Cohesion: 0.15 +Nodes (3): BurstMenu, Unity.Burst.Editor, SetChecked() ### Community 187 - "Community 187" -Cohesion: 0.11 -Nodes (13): ByteInspector, Unity.VisualScripting, DiscreteNumberInspector, IntInspector, Unity.VisualScripting, SbyteInspector, Unity.VisualScripting, ShortInspector (+5 more) +Cohesion: 0.15 +Nodes (19): AsNativeArray(), CheckRead(), CheckReadBounds(), CheckWrite(), Clear(), Copy(), CountBits(), Dispose() (+11 more) ### Community 188 - "Community 188" Cohesion: 0.11 -Nodes (2): IWidget, Unity.VisualScripting +Nodes (9): GenericScriptablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ScriptablePath, ShadowCaster2DShadowCasterShapeTool, ShadowCasterPath, Styles, UnityEditor.Rendering.Universal (+1 more) ### Community 189 - "Community 189" -Cohesion: 0.16 -Nodes (10): IGraphAssignable, IGraphElement, IHaveNodeReference, IInvokable, IReflectedWrapper, ISubParametersContainer, ISubTasksContainer, ITaskAssignable (+2 more) +Cohesion: 0.12 +Nodes (11): Action_1_Invoke_m1AAB217B001E387B4424C54CFB8D5278CFBE4C65_inline(), Action_2_Invoke_mD689727D0B27507C2BBDB452C43EC087E02CE401_inline(), Func_2_Invoke_m67075A0C8A50189A2501B63347177A0748FFE22C_inline(), IntPtr_ToPointer_m1A0612EED3A1C8B8850BE2943CFC42523064B4F6_inline(), NativeInputSystem__cctor_mADBD6616441651B2AFE2AD8AF64D63DF0BA66693(), NativeInputSystem_NotifyBeforeUpdate_m39AE2F1A42BD47200A263AD0EF9EDA5EF4C0042A(), NativeInputSystem_NotifyDeviceDiscovered_m861CCAFB4DD314DB3DC58FBD0398800CF9272C03(), NativeInputSystem_NotifyUpdate_m482599CC17084B0383809F97671530613EA39AD0() (+3 more) ### Community 190 - "Community 190" -Cohesion: 0.11 -Nodes (3): CommonLogic, Logic.Common, ICommonLogic +Cohesion: 0.13 +Nodes (11): BitPackFormatterAttribute, BrotliFormatterAttribute, BrotliStringFormatterAttribute, InternStringFormatterAttribute, MemoryPack, MemoryPoolFormatterAttribute, OrdinalIgnoreCaseStringDictionaryFormatter, ReadOnlyMemoryPoolFormatterAttribute (+3 more) ### Community 191 - "Community 191" -Cohesion: 0.12 -Nodes (8): IUniTaskAsyncDisposable, Cysharp.Threading.Tasks, IConnectableUniTaskAsyncEnumerable, IUniTaskAsyncDisposable, IUniTaskAsyncEnumerable, IUniTaskAsyncEnumerator, IUniTaskOrderedAsyncEnumerable, UniTaskAsyncEnumerableExtensions +Cohesion: 0.1 +Nodes (9): ClipAction, UnityEditor.Timeline.Actions, IAction, MarkerAction, UnityEditor.Timeline.Actions, TimelineAction, UnityEditor.Timeline.Actions, TrackAction (+1 more) ### Community 192 - "Community 192" -Cohesion: 0.11 -Nodes (3): Contents, IAngleRangeView, UnityEditor.U2D +Cohesion: 0.18 +Nodes (20): additiveExpression_return, arguments_return, bitwiseAndExpression_return, bitwiseOrExpression_return, bitwiseXOrExpression_return, booleanAndExpression_return, conditionalExpression_return, equalityExpression_return (+12 more) ### Community 193 - "Community 193" -Cohesion: 0.12 -Nodes (3): Bmi1, Unity.Burst.Intrinsics, X86 +Cohesion: 0.1 +Nodes (11): GenericModulo, Unity.VisualScripting, Modulo, ScalarModulo, Unity.VisualScripting, Unity.VisualScripting, Vector2Modulo, Unity.VisualScripting (+3 more) ### Community 194 - "Community 194" -Cohesion: 0.11 -Nodes (17): ChangesetsTab, Colors, Dialog, DiffPanel, DirectoryConflictResolution, DirectoryConflicts, HexColors, HistoryTab (+9 more) +Cohesion: 0.1 +Nodes (0): ### Community 195 - "Community 195" -Cohesion: 0.12 -Nodes (3): IRenderGraphResource, RenderGraphResource, UnityEngine.Experimental.Rendering.RenderGraphModule +Cohesion: 0.17 +Nodes (10): ITextureSettings, TextureAlphaSettings, TextureCubemapSettings, TextureMipmapSettings, TextureNormalSettings, TextureSettings, TextureSpriteSettings, TextureWrapSettings (+2 more) ### Community 196 - "Community 196" -Cohesion: 0.11 -Nodes (2): UIBehaviour, UnityEngine.EventSystems +Cohesion: 0.15 +Nodes (8): DictionaryPool, Dispose(), GenericPool, HashSetPool, ListPool, ObjectPool, UnityEngine.Rendering, UnsafeGenericPool ### Community 197 - "Community 197" -Cohesion: 0.11 -Nodes (9): IPluginLinked, IPluginModule, Unity.VisualScripting, PluginAcknowledgement, Unity.VisualScripting, PluginChangelog, Unity.VisualScripting, PluginDeprecatedSavedVersionLoader (+1 more) +Cohesion: 0.1 +Nodes (10): DecalDrawDBufferSystem, UnityEngine.Rendering.Universal, DecalDrawErrorSystem, UnityEngine.Rendering.Universal, DecalDrawSystem, DecalDrawFowardEmissiveSystem, DecalDrawGBufferSystem, UnityEngine.Rendering.Universal (+2 more) ### Community 198 - "Community 198" -Cohesion: 0.14 -Nodes (7): GraphNest, Unity.VisualScripting, IGraphNest, INesterStateTransition, NesterStateTransition, Unity.VisualScripting, StateTransition +Cohesion: 0.1 +Nodes (13): Description, Unity.VisualScripting, IDescription, IGraphDescription, Unity.VisualScripting, IGraphElementDescription, Unity.VisualScripting, IMachineDescription (+5 more) ### Community 199 - "Community 199" -Cohesion: 0.15 -Nodes (6): Animancer, AssertIndex(), IndexOf(), Insert(), Remove(), RemoveAt() +Cohesion: 0.1 +Nodes (7): Collection, NonNullableCollection, Unity.VisualScripting, UnitPortDefinitionCollection, Unity.VisualScripting, Unity.VisualScripting, WidgetList ### Community 200 - "Community 200" -Cohesion: 0.12 -Nodes (2): ICommonLogic, Logic.Common +Cohesion: 0.1 +Nodes (18): GLString, -border, -dealloc, -deleteTexture, -drawAtPoint, -drawWithBounds, -flags, -font (+10 more) ### Community 201 - "Community 201" -Cohesion: 0.16 -Nodes (5): AssetBundleWebRequest, YooAsset, FileGeneralRequest, YooAsset, IWebRequester +Cohesion: 0.15 +Nodes (9): AppID(), IsMod(), IsP2PFile(), IsShortcut(), IsSteamApp(), IsValid(), ModID(), Steamworks (+1 more) ### Community 202 - "Community 202" -Cohesion: 0.12 -Nodes (5): DisabledUndo, UnityEditor.U2D.Animation, IUndo, UnityEditor.U2D.Animation, UnityEngineUndo +Cohesion: 0.11 +Nodes (10): Animancer, AnimatedBool, ProcessAnimation(), Animancer, AnimatedFloat, ProcessAnimation(), Animancer, AnimatedInt (+2 more) ### Community 203 - "Community 203" Cohesion: 0.12 -Nodes (3): GLSystem, IGL, UnityEngine.U2D.Sprites +Nodes (9): ITestRunSettings, ITestSettings, PlayerLauncherTestRunSettings, UnityEditor.TestTools.TestRunner, RunSettings, UnityEditor.TestTools.TestRunner.CommandLineTest, TestSetting, TestSettings (+1 more) ### Community 204 - "Community 204" -Cohesion: 0.12 -Nodes (11): IVFXMultiMeshOutput, VFXAbstractParticleURPLitOutput, UnityEditor.VFX.URP, VFXURPLitMeshOutput, NormalBendingProperties, UnityEditor.VFX.URP, VFXURPLitPlanarPrimitiveOutput, CustomUVInputProperties (+3 more) +Cohesion: 0.11 +Nodes (11): InvalidSignatureException, UnityEngine.TestTools.TestRunner, OutOfOrderExpectedLogMessageException, UnityEngine.TestTools.TestRunner, ResultStateException, UnexpectedLogMessageException, UnityEngine.TestTools.TestRunner, UnhandledLogMessageException (+3 more) ### Community 205 - "Community 205" -Cohesion: 0.12 -Nodes (7): ActiveFields, KeywordDependentCollection, IRequirements, IRequirementsSet, SetRequirements(), ShaderGraphRequirementsPerKeyword, UnityEditor.ShaderGraph.Internal +Cohesion: 0.11 +Nodes (13): ByteInspector, Unity.VisualScripting, DiscreteNumberInspector, IntInspector, Unity.VisualScripting, SbyteInspector, Unity.VisualScripting, ShortInspector (+5 more) ### Community 206 - "Community 206" -Cohesion: 0.12 -Nodes (13): Description, GraphDescription, Unity.VisualScripting, GraphElementDescription, Unity.VisualScripting, IGraphDescription, IGraphElementDescription, IMachineDescription (+5 more) +Cohesion: 0.11 +Nodes (2): IWidget, Unity.VisualScripting ### Community 207 - "Community 207" -Cohesion: 0.12 -Nodes (7): GetVariableOption, Unity.VisualScripting, IsVariableDefinedOption, Unity.VisualScripting, SetVariableOption, Unity.VisualScripting, UnifiedVariableUnitOption +Cohesion: 0.16 +Nodes (10): IGraphAssignable, IGraphElement, IHaveNodeReference, IInvokable, IReflectedWrapper, ISubParametersContainer, ISubTasksContainer, ITaskAssignable (+2 more) ### Community 208 - "Community 208" -Cohesion: 0.12 -Nodes (9): Average, ScalarAverage, Unity.VisualScripting, Unity.VisualScripting, Vector2Average, Unity.VisualScripting, Vector3Average, Unity.VisualScripting (+1 more) +Cohesion: 0.11 +Nodes (3): CommonLogic, Logic.Common, ICommonLogic ### Community 209 - "Community 209" Cohesion: 0.12 -Nodes (9): PerSecond, ScalarPerSecond, Unity.VisualScripting, Unity.VisualScripting, Vector2PerSecond, Unity.VisualScripting, Vector3PerSecond, Unity.VisualScripting (+1 more) +Nodes (8): IUniTaskAsyncDisposable, Cysharp.Threading.Tasks, IConnectableUniTaskAsyncEnumerable, IUniTaskAsyncDisposable, IUniTaskAsyncEnumerable, IUniTaskAsyncEnumerator, IUniTaskOrderedAsyncEnumerable, UniTaskAsyncEnumerableExtensions ### Community 210 - "Community 210" -Cohesion: 0.15 -Nodes (10): ControllerState, Animancer, Float1ControllerState, ITransition, Animancer, Float2ControllerState, ITransition, Animancer (+2 more) +Cohesion: 0.11 +Nodes (3): Contents, IAngleRangeView, UnityEditor.U2D ### Community 211 - "Community 211" -Cohesion: 0.15 -Nodes (7): fsBaseConverter, fsConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer, fsDirectConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer +Cohesion: 0.12 +Nodes (3): Bmi1, Unity.Burst.Intrinsics, X86 ### Community 212 - "Community 212" -Cohesion: 0.15 -Nodes (7): BuiltinBuildPipeline, YooAsset.Editor, IBuildPipeline, RawFileBuildPipeline, YooAsset.Editor, ScriptableBuildPipeline, YooAsset.Editor +Cohesion: 0.11 +Nodes (2): UIBehaviour, UnityEngine.EventSystems ### Community 213 - "Community 213" -Cohesion: 0.12 -Nodes (3): IEditablePathController, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Cohesion: 0.14 +Nodes (7): GraphNest, Unity.VisualScripting, IGraphNest, INesterStateTransition, NesterStateTransition, Unity.VisualScripting, StateTransition ### Community 214 - "Community 214" -Cohesion: 0.17 -Nodes (7): IPSDLayerMappingStrategy, IPSDLayerMappingStrategyComparable, LayerMappingStrategy, LayerMappingUseLayerName, LayerMappingUseLayerNameCaseSensitive, LayerMappingUserLayerID, UnityEditor.U2D.PSD +Cohesion: 0.11 +Nodes (9): Unity.VisualScripting, WaitForEndOfFrameUnit, Unity.VisualScripting, WaitForNextFrameUnit, Unity.VisualScripting, WaitForSecondsUnit, WaitUnit, Unity.VisualScripting (+1 more) ### Community 215 - "Community 215" -Cohesion: 0.12 -Nodes (11): AlphaChannelNames, PhotoshopFile, ImageResource, PhotoshopFile, RawImageResource, PhotoshopFile, ResolutionInfo, PhotoshopFile (+3 more) +Cohesion: 0.15 +Nodes (6): Animancer, AssertIndex(), IndexOf(), Insert(), Remove(), RemoveAt() ### Community 216 - "Community 216" Cohesion: 0.12 -Nodes (11): InfoLayers, PhotoshopFile, LayerId, PhotoshopFile, LayerInfo, LayerSectionInfo, PhotoshopFile, LayerUnicodeName (+3 more) +Nodes (2): ICommonLogic, Logic.Common ### Community 217 - "Community 217" -Cohesion: 0.13 -Nodes (3): ITexture2D, Texture2DWrapper, UnityEditor.U2D.Sprites +Cohesion: 0.12 +Nodes (5): DisabledUndo, UnityEditor.U2D.Animation, IUndo, UnityEditor.U2D.Animation, UnityEngineUndo ### Community 218 - "Community 218" Cohesion: 0.12 -Nodes (9): BurstDisassembler, LLVMIRInstructionInfo, Unity.Burst.Editor, BurstDisassembler, Unity.Burst.Editor, WasmInstructionInfo, BurstDisassembler, Unity.Burst.Editor (+1 more) +Nodes (3): GLSystem, IGL, UnityEngine.U2D.Sprites ### Community 219 - "Community 219" -Cohesion: 0.15 -Nodes (6): BurstRuntime, BurstRuntimeInternal, LoadAdditionalLibrary(), LoadAdditionalLibraryInternal(), PreserveAttribute, Unity.Burst +Cohesion: 0.12 +Nodes (11): IVFXMultiMeshOutput, VFXAbstractParticleURPLitOutput, UnityEditor.VFX.URP, VFXURPLitMeshOutput, NormalBendingProperties, UnityEditor.VFX.URP, VFXURPLitPlanarPrimitiveOutput, CustomUVInputProperties (+3 more) ### Community 220 - "Community 220" Cohesion: 0.12 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics +Nodes (9): BlackboardCategoryViewModel, UnityEditor.ShaderGraph.Drawing, BlackboardViewModel, UnityEditor.ShaderGraph.Drawing, InspectorViewModel, UnityEditor.ShaderGraph.Drawing, ISGViewModel, ShaderInputViewModel (+1 more) ### Community 221 - "Community 221" -Cohesion: 0.16 -Nodes (7): IBuildContext, IContextObject, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, UnityEditor.Build.Pipeline.Interfaces +Cohesion: 0.12 +Nodes (13): Description, GraphDescription, Unity.VisualScripting, GraphElementDescription, Unity.VisualScripting, IGraphDescription, IGraphElementDescription, IMachineDescription (+5 more) ### Community 222 - "Community 222" -Cohesion: 0.16 -Nodes (4): IExecuter, UnityEditor.TestTools.TestRunner.CommandLineTest, TestStarter, UnityEditor.TestTools.TestRunner.CommandLineTest +Cohesion: 0.12 +Nodes (7): GetVariableOption, Unity.VisualScripting, IsVariableDefinedOption, Unity.VisualScripting, SetVariableOption, Unity.VisualScripting, UnifiedVariableUnitOption ### Community 223 - "Community 223" Cohesion: 0.12 -Nodes (9): InvalidSignatureException, UnityEngine.TestTools.TestRunner, OutOfOrderExpectedLogMessageException, UnityEngine.TestTools.TestRunner, ResultStateException, UnexpectedLogMessageException, UnityEngine.TestTools.TestRunner, UnhandledLogMessageException (+1 more) +Nodes (9): Absolute, ScalarAbsolute, Unity.VisualScripting, Unity.VisualScripting, Vector2Absolute, Unity.VisualScripting, Vector3Absolute, Unity.VisualScripting (+1 more) ### Community 224 - "Community 224" Cohesion: 0.12 -Nodes (2): IReorderableListAdaptor, Unity.VisualScripting.ReorderableList +Nodes (9): Average, ScalarAverage, Unity.VisualScripting, Unity.VisualScripting, Vector2Average, Unity.VisualScripting, Vector3Average, Unity.VisualScripting (+1 more) ### Community 225 - "Community 225" Cohesion: 0.12 -Nodes (11): ContinuousNumberInspector, DecimalInspector, Unity.VisualScripting, DoubleInspector, Unity.VisualScripting, FloatInspector, Unity.VisualScripting, LongInspector (+3 more) +Nodes (9): PerSecond, ScalarPerSecond, Unity.VisualScripting, Unity.VisualScripting, Vector2PerSecond, Unity.VisualScripting, Vector3PerSecond, Unity.VisualScripting (+1 more) ### Community 226 - "Community 226" Cohesion: 0.12 -Nodes (5): IGraphElementWidget, Unity.VisualScripting, IUnitPortWidget, Unity.VisualScripting, IWidget +Nodes (9): Maximum, ScalarMaximum, Unity.VisualScripting, Unity.VisualScripting, Vector2Maximum, Unity.VisualScripting, Vector3Maximum, Unity.VisualScripting (+1 more) ### Community 227 - "Community 227" -Cohesion: 0.12 -Nodes (11): DecrementHandler, Unity.VisualScripting, IncrementHandler, Unity.VisualScripting, LogicalNegationHandler, Unity.VisualScripting, NumericNegationHandler, Unity.VisualScripting (+3 more) +Cohesion: 0.15 +Nodes (10): ControllerState, Animancer, Float1ControllerState, ITransition, Animancer, Float2ControllerState, ITransition, Animancer (+2 more) ### Community 228 - "Community 228" -Cohesion: 0.12 -Nodes (11): GlobalEventUnit, OnApplicationFocus, Unity.VisualScripting, OnApplicationLostFocus, Unity.VisualScripting, OnApplicationPause, Unity.VisualScripting, OnApplicationQuit (+3 more) +Cohesion: 0.15 +Nodes (7): fsBaseConverter, fsConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer, fsDirectConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer ### Community 229 - "Community 229" -Cohesion: 0.13 -Nodes (12): ControlInputDefinition, Unity.VisualScripting, ControlOutputDefinition, Unity.VisualScripting, ControlPortDefinition, IUnitInputPortDefinition, IUnitOutputPortDefinition, Unity.VisualScripting (+4 more) +Cohesion: 0.15 +Nodes (7): BuiltinBuildPipeline, YooAsset.Editor, IBuildPipeline, RawFileBuildPipeline, YooAsset.Editor, ScriptableBuildPipeline, YooAsset.Editor ### Community 230 - "Community 230" Cohesion: 0.12 -Nodes (11): IUnitControlPortDefinition, Unity.VisualScripting, IUnitInputPortDefinition, Unity.VisualScripting, IUnitOutputPortDefinition, Unity.VisualScripting, IUnitPortDefinition, IUnitValuePortDefinition (+3 more) +Nodes (3): IEditablePathController, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 231 - "Community 231" -Cohesion: 0.12 -Nodes (11): IUnitControlPort, Unity.VisualScripting, IUnitInputPort, Unity.VisualScripting, IUnitInvalidPort, Unity.VisualScripting, IUnitOutputPort, Unity.VisualScripting (+3 more) +Cohesion: 0.13 +Nodes (7): ClickAction, CreatePointAction, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, SliderAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework ### Community 232 - "Community 232" Cohesion: 0.17 -Nodes (6): EditorPlayModeUpdatePackageVersionOperation, HostPlayModeUpdatePackageVersionOperation, OfflinePlayModeUpdatePackageVersionOperation, UpdatePackageVersionOperation, WebPlayModeUpdatePackageVersionOperation, YooAsset +Nodes (7): IPSDLayerMappingStrategy, IPSDLayerMappingStrategyComparable, LayerMappingStrategy, LayerMappingUseLayerName, LayerMappingUseLayerNameCaseSensitive, LayerMappingUserLayerID, UnityEditor.U2D.PSD ### Community 233 - "Community 233" -Cohesion: 0.13 -Nodes (4): FlexibleMenu, GridPalettesDropdown, MenuItemProvider, UnityEditor.Tilemaps +Cohesion: 0.12 +Nodes (11): AlphaChannelNames, PhotoshopFile, ImageResource, PhotoshopFile, RawImageResource, PhotoshopFile, ResolutionInfo, PhotoshopFile (+3 more) ### Community 234 - "Community 234" -Cohesion: 0.19 -Nodes (10): IComputeShaderVariantStripper, IComputeShaderVariantStripperScope, IComputeShaderVariantStripperSkipper, IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, IVariantStripper, IVariantStripperScope (+2 more) +Cohesion: 0.12 +Nodes (11): InfoLayers, PhotoshopFile, LayerId, PhotoshopFile, LayerInfo, LayerSectionInfo, PhotoshopFile, LayerUnicodeName (+3 more) ### Community 235 - "Community 235" Cohesion: 0.13 -Nodes (9): EnterPlayMode, UnityEngine.TestTools, ExitPlayMode, UnityEngine.TestTools, IEditModeTestYieldInstruction, RecompileScripts, UnityEngine.TestTools, UnityEngine.TestTools (+1 more) +Nodes (3): ITexture2D, Texture2DWrapper, UnityEditor.U2D.Sprites ### Community 236 - "Community 236" +Cohesion: 0.12 +Nodes (5): FlexibleMenu, GridPalettesDropdown, MenuItemProvider, UnityEditor.Tilemaps, IFlexibleMenuItemProvider + +### Community 237 - "Community 237" +Cohesion: 0.15 +Nodes (6): BurstRuntime, BurstRuntimeInternal, LoadAdditionalLibrary(), LoadAdditionalLibraryInternal(), PreserveAttribute, Unity.Burst + +### Community 238 - "Community 238" +Cohesion: 0.12 +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics + +### Community 239 - "Community 239" +Cohesion: 0.16 +Nodes (8): CheckIndexInRange(), CompareTo(), ElementAt(), Equals(), GetUnsafePtr(), MoveNext(), ToString(), Unity.Collections + +### Community 240 - "Community 240" +Cohesion: 0.16 +Nodes (7): IBuildContext, IContextObject, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, UnityEditor.Build.Pipeline.Interfaces + +### Community 241 - "Community 241" +Cohesion: 0.16 +Nodes (4): IExecuter, UnityEditor.TestTools.TestRunner.CommandLineTest, TestStarter, UnityEditor.TestTools.TestRunner.CommandLineTest + +### Community 242 - "Community 242" +Cohesion: 0.12 +Nodes (2): IReorderableListAdaptor, Unity.VisualScripting.ReorderableList + +### Community 243 - "Community 243" +Cohesion: 0.12 +Nodes (11): ContinuousNumberInspector, DecimalInspector, Unity.VisualScripting, DoubleInspector, Unity.VisualScripting, FloatInspector, Unity.VisualScripting, LongInspector (+3 more) + +### Community 244 - "Community 244" +Cohesion: 0.12 +Nodes (5): IGraphElementWidget, Unity.VisualScripting, IUnitPortWidget, Unity.VisualScripting, IWidget + +### Community 245 - "Community 245" +Cohesion: 0.12 +Nodes (11): DecrementHandler, Unity.VisualScripting, IncrementHandler, Unity.VisualScripting, LogicalNegationHandler, Unity.VisualScripting, NumericNegationHandler, Unity.VisualScripting (+3 more) + +### Community 246 - "Community 246" +Cohesion: 0.12 +Nodes (11): GlobalEventUnit, OnApplicationFocus, Unity.VisualScripting, OnApplicationLostFocus, Unity.VisualScripting, OnApplicationPause, Unity.VisualScripting, OnApplicationQuit (+3 more) + +### Community 247 - "Community 247" +Cohesion: 0.12 +Nodes (11): IApplicationVariableUnit, Unity.VisualScripting, IGraphVariableUnit, Unity.VisualScripting, IObjectVariableUnit, Unity.VisualScripting, ISavedVariableUnit, Unity.VisualScripting (+3 more) + +### Community 248 - "Community 248" +Cohesion: 0.12 +Nodes (11): IUnitControlPortDefinition, Unity.VisualScripting, IUnitInputPortDefinition, Unity.VisualScripting, IUnitOutputPortDefinition, Unity.VisualScripting, IUnitPortDefinition, IUnitValuePortDefinition (+3 more) + +### Community 249 - "Community 249" +Cohesion: 0.12 +Nodes (11): IUnitControlPort, Unity.VisualScripting, IUnitInputPort, Unity.VisualScripting, IUnitInvalidPort, Unity.VisualScripting, IUnitOutputPort, Unity.VisualScripting (+3 more) + +### Community 250 - "Community 250" +Cohesion: 0.13 +Nodes (12): ControlInputDefinition, Unity.VisualScripting, ControlOutputDefinition, Unity.VisualScripting, ControlPortDefinition, IUnitInputPortDefinition, IUnitOutputPortDefinition, Unity.VisualScripting (+4 more) + +### Community 251 - "Community 251" +Cohesion: 0.14 +Nodes (8): CharacterGroupCache, CharacterPartCache, UnityEditor.U2D.Animation, ICharacterOrder, SpriteCache, TH1Resource, UnityEditor.U2D.Animation, TransformCache + +### Community 252 - "Community 252" +Cohesion: 0.13 +Nodes (14): CatalogEntry, Dependency, DependencyGroup, Deprecation, IndexResponse, NugetForUnity.PackageSource, RegistrationLeafObject, RegistrationPageObject (+6 more) + +### Community 253 - "Community 253" +Cohesion: 0.17 +Nodes (6): EditorPlayModeUpdatePackageVersionOperation, HostPlayModeUpdatePackageVersionOperation, OfflinePlayModeUpdatePackageVersionOperation, UpdatePackageVersionOperation, WebPlayModeUpdatePackageVersionOperation, YooAsset + +### Community 254 - "Community 254" +Cohesion: 0.19 +Nodes (10): IComputeShaderVariantStripper, IComputeShaderVariantStripperScope, IComputeShaderVariantStripperSkipper, IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, IVariantStripper, IVariantStripperScope (+2 more) + +### Community 255 - "Community 255" +Cohesion: 0.13 +Nodes (13): DecalBlockMasks, DecalColorMasks, DecalData, DecalDefines, DecalIncludes, DecalKeywords, DecalPragmas, DecalRenderStates (+5 more) + +### Community 256 - "Community 256" +Cohesion: 0.3 +Nodes (3): ShaderPrefilteringTests, ShaderStrippingAndPrefiltering, TestHelper + +### Community 257 - "Community 257" Cohesion: 0.13 Nodes (3): IMoveItemDrawer, IMoveItemMode, UnityEditor.Timeline -### Community 237 - "Community 237" +### Community 258 - "Community 258" Cohesion: 0.14 Nodes (3): ISequenceState, NullSequenceState, UnityEditor.Timeline -### Community 238 - "Community 238" +### Community 259 - "Community 259" Cohesion: 0.17 Nodes (4): ITimelinePlaybackControls, TimelinePlaybackControlsImpl, TimelineWindow, UnityEditor.Timeline -### Community 239 - "Community 239" +### Community 260 - "Community 260" Cohesion: 0.13 Nodes (5): FuzzyOption, Unity.VisualScripting, IFuzzyOption, IUnitOption, Unity.VisualScripting -### Community 240 - "Community 240" +### Community 261 - "Community 261" Cohesion: 0.15 Nodes (3): FuzzyOptionTree, Unity.VisualScripting, IFuzzyOptionTree -### Community 241 - "Community 241" +### Community 262 - "Community 262" Cohesion: 0.13 Nodes (7): GetVariableUnitOption, Unity.VisualScripting, IsVariableDefinedUnitOption, Unity.VisualScripting, SetVariableUnitOption, Unity.VisualScripting, VariableUnitOption -### Community 242 - "Community 242" +### Community 263 - "Community 263" Cohesion: 0.15 Nodes (10): ControlConnection, Unity.VisualScripting, InvalidConnection, Unity.VisualScripting, IUnitConnection, UnitConnection, UnitConnectionDebugData, DebugData (+2 more) -### Community 243 - "Community 243" -Cohesion: 0.25 -Nodes (12): byref(), il2cpp_class_from_il2cpp_type(), il2cpp_class_get_declaring_type(), il2cpp_class_get_name(), il2cpp_class_get_namespace(), il2cpp_current_thread_walk_frame_stack(), il2cpp_method_get_class(), il2cpp_method_get_name() (+4 more) - -### Community 244 - "Community 244" +### Community 264 - "Community 264" Cohesion: 0.21 Nodes (11): Animancer.Units, AnimationSpeedAttribute, Animancer.Units, DegreesAttribute, DegreesPerSecondAttribute, MetersAttribute, MetersPerSecondAttribute, MetersPerSecondPerSecondAttribute (+3 more) -### Community 245 - "Community 245" -Cohesion: 0.16 -Nodes (3): Del(), HasAny(), ViMask - -### Community 246 - "Community 246" +### Community 265 - "Community 265" Cohesion: 0.19 Nodes (8): CollectAll, CollectPrefab, CollectScene, CollectShaderVariants, CollectSprite, DefaultFilterRule, YooAsset.Editor, IFilterRule -### Community 247 - "Community 247" +### Community 266 - "Community 266" +Cohesion: 0.36 +Nodes (2): TMP_DefaultControls, TMPro + +### Community 267 - "Community 267" +Cohesion: 0.25 +Nodes (2): Manipulator, UnityEditor.Timeline + +### Community 268 - "Community 268" Cohesion: 0.14 Nodes (4): BasicPlayableBehaviour, UnityEngine.Timeline, IPlayableAsset, IPlayableBehaviour -### Community 248 - "Community 248" +### Community 269 - "Community 269" Cohesion: 0.14 Nodes (9): AutomaticReflectedInspector, Unity.VisualScripting, GraphGroupInspector, Unity.VisualScripting, ReflectedInspector, StickyNoteInspector, Unity.VisualScripting, UnitInspector (+1 more) -### Community 249 - "Community 249" +### Community 270 - "Community 270" +Cohesion: 0.16 +Nodes (6): Unity.VisualScripting, UsageAnalytics, FlowMacroSavedEvent, Unity.VisualScripting.Analytics, StateMacroSavedEvent, Unity.VisualScripting.Analytics + +### Community 271 - "Community 271" Cohesion: 0.14 Nodes (9): IGraphElementWidget, INodeWidget, Unity.VisualScripting, IStateWidget, Unity.VisualScripting, IUnitConnectionWidget, Unity.VisualScripting, IUnitWidget (+1 more) -### Community 250 - "Community 250" -Cohesion: 0.21 -Nodes (3): IUnitPortCollection, UnitPortCollection, Unity.VisualScripting - -### Community 251 - "Community 251" +### Community 272 - "Community 272" Cohesion: 0.15 Nodes (4): Animancer, CreateDrawer(), Drawer, MixerState -### Community 252 - "Community 252" +### Community 273 - "Community 273" Cohesion: 0.15 Nodes (2): IPlayMode, YooAsset -### Community 253 - "Community 253" -Cohesion: 0.24 -Nodes (2): DragAndDropManipulator, UnityEditor.U2D.Animation.SpriteLibraryEditor +### Community 274 - "Community 274" +Cohesion: 0.17 +Nodes (4): IMeshPreviewBehaviour, DefaultPreviewBehaviour, MeshPreviewBehaviour, UnityEditor.U2D.Animation -### Community 254 - "Community 254" +### Community 275 - "Community 275" Cohesion: 0.26 Nodes (5): HexagonalRuleTile, UnityEngine, IsometricRuleTile, UnityEngine, RuleTile -### Community 255 - "Community 255" +### Community 276 - "Community 276" Cohesion: 0.15 Nodes (7): AsmTokenKindProvider, BurstDisassembler, LLVMIRAsmTokenKindProvider, Unity.Burst.Editor, BurstDisassembler, Unity.Burst.Editor, WasmAsmTokenKindProvider -### Community 256 - "Community 256" +### Community 277 - "Community 277" Cohesion: 0.27 Nodes (2): BringWindowToFront, Unity.PlasticSCM.Editor.Tool -### Community 257 - "Community 257" +### Community 278 - "Community 278" Cohesion: 0.18 Nodes (2): ScriptableRendererFeature, UnityEngine.Rendering.Universal -### Community 258 - "Community 258" +### Community 279 - "Community 279" Cohesion: 0.15 Nodes (9): ContextFilterableAttribute, NeverAllowedByTargetAttribute, UnityEditor.ShaderGraph, SRPFilterAttribute, UnityEditor.ShaderGraph, SubTargetFilterAttribute, UnityEditor.ShaderGraph, TitleAttribute (+1 more) -### Community 259 - "Community 259" -Cohesion: 0.15 -Nodes (7): BlackboardCategoryViewModel, UnityEditor.ShaderGraph.Drawing, InspectorViewModel, UnityEditor.ShaderGraph.Drawing, ISGViewModel, ShaderInputViewModel, UnityEditor.ShaderGraph.Drawing - -### Community 260 - "Community 260" +### Community 280 - "Community 280" Cohesion: 0.18 Nodes (8): IdentifierField, IdentifierInput, UnityEditor.ShaderGraph.Drawing, UxmlFactory, UxmlTraits, TextValueField, TextValueFieldTraits, TextValueInput -### Community 261 - "Community 261" +### Community 281 - "Community 281" Cohesion: 0.15 Nodes (12): AddItem, AddTrackMenu, ClipActionSection, ClipEditActionSection, CustomClipActionSection, CustomTimelineActionSection, CustomTrackActionSection, MarkerActionSection (+4 more) -### Community 262 - "Community 262" +### Community 282 - "Community 282" +Cohesion: 0.23 +Nodes (4): ILayoutIgnorer, LayoutElement, OnValidate(), UnityEngine.UI + +### Community 283 - "Community 283" Cohesion: 0.15 Nodes (4): ElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu, IElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu -### Community 263 - "Community 263" +### Community 284 - "Community 284" Cohesion: 0.15 Nodes (2): IFuzzyOptionTree, Unity.VisualScripting -### Community 264 - "Community 264" -Cohesion: 0.23 -Nodes (8): DigCast, DigIndex, DigIndexer, DigMember, DigStaticObject, NoAllocDelegate, NoAllocDig, Unity.VisualScripting - -### Community 265 - "Community 265" +### Community 285 - "Community 285" Cohesion: 0.19 Nodes (2): Page, Unity.VisualScripting -### Community 266 - "Community 266" +### Community 286 - "Community 286" +Cohesion: 0.15 +Nodes (7): GetMemberDescriptor, Unity.VisualScripting, InvokeMemberDescriptor, Unity.VisualScripting, MemberUnitDescriptor, SetMemberDescriptor, Unity.VisualScripting + +### Community 287 - "Community 287" Cohesion: 0.15 Nodes (7): IGraphNester, Unity.VisualScripting, IGraphParent, IGraphParentElement, Unity.VisualScripting, IGraphRoot, Unity.VisualScripting -### Community 267 - "Community 267" +### Community 288 - "Community 288" Cohesion: 0.15 Nodes (9): IGraphElementDebugData, IStateDebugData, Unity.VisualScripting, IStateTransitionDebugData, Unity.VisualScripting, IUnitConnectionDebugData, Unity.VisualScripting, IUnitDebugData (+1 more) -### Community 268 - "Community 268" +### Community 289 - "Community 289" +Cohesion: 0.15 +Nodes (7): EventUnit, GlobalEventUnit, Unity.VisualScripting, MachineEventUnit, Unity.VisualScripting, ManualEventUnit, Unity.VisualScripting + +### Community 290 - "Community 290" Cohesion: 0.23 Nodes (2): LayerUtils, ParadoxNotion -### Community 269 - "Community 269" +### Community 291 - "Community 291" Cohesion: 0.26 Nodes (2): Node, ViPriorityValue -### Community 270 - "Community 270" +### Community 292 - "Community 292" Cohesion: 0.3 Nodes (11): FragmentAttackAllyData, FragmentAttackAndCounterData, FragmentAttackGroundData, FragmentCityExpData, FragmentCityExpUpData, FragmentGridUpdateData, FragmentMoveData, FragmentMoveExplorerData (+3 more) -### Community 271 - "Community 271" +### Community 293 - "Community 293" Cohesion: 0.26 Nodes (10): Action_1_Invoke_m1DDC149E3BDDF7CAA1CCEBDA6D58D6971F126303_inline(), PlayableDirector_ClearReferenceValue_Injected_m9955C0A6558AA830976F3072700092D374A79A8B(), PlayableDirector_ClearReferenceValue_m011DC51A81993B00D95ACC74FD90291363AB534C(), PlayableDirector_GetReferenceValue_Injected_mE46AABB378E696DF9A413D98D24E1AA0A312D106(), PlayableDirector_GetReferenceValue_m635841386147673FFBBEF0CD9DA908337F3C97C8(), PlayableDirector_SendOnPlayableDirectorPause_m1B8EE7CBD23957C664AA417A9261194DFFFADFE1(), PlayableDirector_SendOnPlayableDirectorPlay_m7F75DBA4355DAA92F53AC337BB952069B63081A0(), PlayableDirector_SendOnPlayableDirectorStop_m4E9AEB579B8EA66ECC6FA9BE23BBF7973AB3EDD7() (+2 more) -### Community 272 - "Community 272" +### Community 294 - "Community 294" Cohesion: 0.24 Nodes (3): BaseTool, ITool, UnityEditor.U2D.Animation -### Community 273 - "Community 273" +### Community 295 - "Community 295" Cohesion: 0.17 Nodes (4): ISelection, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path -### Community 274 - "Community 274" -Cohesion: 0.24 -Nodes (11): CacheObject, SerializableDictionary, CharacterPartMap, MeshMap, MeshPreviewMap, SkeletonMap, SkinningObject, SpriteMap (+3 more) - -### Community 275 - "Community 275" +### Community 296 - "Community 296" Cohesion: 0.17 Nodes (6): Placeholder, UnityEditor.Experimental.U2D.Animation.Tests, UnityEditor.Experimental.U2D.Commons.Tests, UnityEditor.Experimental.U2D.PSDImporter.Tests, UnityEditor.U2D.Aseprite.Tests, UnityEngine.U2D.PixelPerfect.Tests -### Community 276 - "Community 276" +### Community 297 - "Community 297" Cohesion: 0.21 Nodes (3): Data, ProgressControlsForMigration, Unity.PlasticSCM.Editor.UI.Progress -### Community 277 - "Community 277" -Cohesion: 0.17 -Nodes (2): CubemapShaderProperty, UnityEditor.ShaderGraph.Internal - -### Community 278 - "Community 278" -Cohesion: 0.17 -Nodes (2): Texture2DArrayShaderProperty, UnityEditor.ShaderGraph.Internal - -### Community 279 - "Community 279" +### Community 298 - "Community 298" Cohesion: 0.17 Nodes (5): IMayRequireNDCPosition, IMayRequirePixelPosition, IMayRequireScreenPosition, MayRequireScreenPositionExtensions, UnityEditor.ShaderGraph -### Community 280 - "Community 280" +### Community 299 - "Community 299" Cohesion: 0.17 Nodes (2): Target, UnityEditor.ShaderGraph -### Community 281 - "Community 281" +### Community 300 - "Community 300" Cohesion: 0.17 Nodes (6): KeywordDescriptors, Passes, PreviewTarget, StructDescriptors, SubShaders, UnityEditor.ShaderGraph -### Community 282 - "Community 282" +### Community 301 - "Community 301" Cohesion: 0.17 Nodes (8): BoltCore, Styles, Unity.VisualScripting, BoltFlow, Unity.VisualScripting, BoltState, Unity.VisualScripting, Plugin -### Community 283 - "Community 283" +### Community 302 - "Community 302" Cohesion: 0.18 Nodes (9): FlowGraphData, Unity.VisualScripting, GraphData, IGraphDataAction, UnityEditor.ShaderGraph, IGraphDataWithVariables, IGraphEventListenerData, StateGraphData (+1 more) -### Community 284 - "Community 284" +### Community 303 - "Community 303" Cohesion: 0.18 Nodes (3): fsObjectProcessor, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer -### Community 285 - "Community 285" +### Community 304 - "Community 304" Cohesion: 0.22 Nodes (5): Demo_Provider, ViProvider, ViPtrProvider, ViPtrProviderClass, ViSimpleProvider -### Community 286 - "Community 286" +### Community 305 - "Community 305" Cohesion: 0.18 Nodes (7): EmpireStatisticLimit, EmpireStatisticResult, Logic.Editor, TechStatisticLimit, TechStatisticResult, UnitStatisticLimit, UnitStatisticResult -### Community 287 - "Community 287" +### Community 306 - "Community 306" Cohesion: 0.18 Nodes (7): BuildParameters, BuiltinBuildParameters, YooAsset.Editor, RawFileBuildParameters, YooAsset.Editor, ScriptableBuildParameters, YooAsset.Editor -### Community 288 - "Community 288" +### Community 307 - "Community 307" Cohesion: 0.24 Nodes (6): AddressByFileName, AddressByFolderAndFileName, AddressByGroupAndFileName, AddressDisable, YooAsset.Editor, IAddressRule -### Community 289 - "Community 289" +### Community 308 - "Community 308" Cohesion: 0.18 Nodes (4): CreateDefaultStatus(), YooAsset, HandleBase, YooAsset -### Community 290 - "Community 290" +### Community 309 - "Community 309" Cohesion: 0.18 Nodes (2): UniFramework.Utility, UniTimer -### Community 291 - "Community 291" +### Community 310 - "Community 310" +Cohesion: 0.31 +Nodes (2): FABRIK2D, UnityEngine.U2D.IK + +### Community 311 - "Community 311" Cohesion: 0.18 Nodes (4): ISelectable, UnityEditor.Rendering.Universal.Path2D, UnityEditor.Timeline, UnityEditor.U2D.Common.Path -### Community 292 - "Community 292" +### Community 312 - "Community 312" Cohesion: 0.25 Nodes (3): SceneViewOpenTilePaletteHelper, SceneViewOpenTilePaletteProperties, UnityEditor.Tilemaps -### Community 293 - "Community 293" -Cohesion: 0.27 -Nodes (6): GetOrCreatePartiallyUnsafeWithHashCode(), GetOrCreatePartiallyUnsafeWithSubHashCode(), GetOrCreateUnsafe(), PreserveAttribute, SharedStatic, Unity.Burst +### Community 313 - "Community 313" +Cohesion: 0.24 +Nodes (3): OpenTilemapInPrefabModeProperties, TilemapPrefabStageHelper, UnityEditor.Tilemaps -### Community 294 - "Community 294" +### Community 314 - "Community 314" Cohesion: 0.36 Nodes (3): IGetSelectedNodes, PendingChangesViewMenu, Unity.PlasticSCM.Editor.Views.PendingChanges -### Community 295 - "Community 295" +### Community 315 - "Community 315" Cohesion: 0.27 Nodes (3): GCAllocRecorder, GcAllocRecorderTest, Unity.Collections.Tests -### Community 296 - "Community 296" +### Community 316 - "Community 316" Cohesion: 0.18 Nodes (2): IAssemblyNameProvider, Microsoft.Unity.VisualStudio.Editor -### Community 297 - "Community 297" +### Community 317 - "Community 317" Cohesion: 0.2 Nodes (5): GUIDProvider, IGUIDGenerator, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor.ProjectGeneration, IGUIDGenerator -### Community 298 - "Community 298" +### Community 318 - "Community 318" Cohesion: 0.2 Nodes (5): Element, GroupElement, IProvider, Styles, UnityEditor.Rendering -### Community 299 - "Community 299" +### Community 319 - "Community 319" Cohesion: 0.22 Nodes (2): SerializedPropertyExtension, UnityEditor.Rendering -### Community 300 - "Community 300" -Cohesion: 0.18 -Nodes (6): AnimationClipUpgrader, IAnimationClip, IAssetPath, IRenderer, ReplaceBindings(), UnityEditor.Rendering - -### Community 301 - "Community 301" +### Community 320 - "Community 320" Cohesion: 0.18 Nodes (2): IShaderNodeView, UnityEditor.ShaderGraph -### Community 302 - "Community 302" +### Community 321 - "Community 321" Cohesion: 0.2 Nodes (2): SubTarget, UnityEditor.ShaderGraph -### Community 303 - "Community 303" +### Community 322 - "Community 322" +Cohesion: 0.24 +Nodes (2): AndroidPlatformSetup, UnityEditor.TestTools.TestRunner + +### Community 323 - "Community 323" Cohesion: 0.22 Nodes (6): ILayoutController, ILayoutElement, ILayoutGroup, ILayoutIgnorer, ILayoutSelfController, UnityEngine.UI -### Community 304 - "Community 304" +### Community 324 - "Community 324" Cohesion: 0.18 Nodes (7): FuzzyOptionTreeExtensionProvider, Unity.VisualScripting, XFuzzyOptionTreeExtensionProvider, GraphContextExtensionProvider, Unity.VisualScripting, XCanvasExtensionProvider, MultiDecoratorProvider -### Community 305 - "Community 305" +### Community 325 - "Community 325" Cohesion: 0.18 Nodes (7): ControlInputWidget, Unity.VisualScripting, InvalidInputWidget, Unity.VisualScripting, UnitInputPortWidget, Unity.VisualScripting, ValueInputWidget -### Community 306 - "Community 306" +### Community 326 - "Community 326" Cohesion: 0.2 Nodes (4): NugetForUnity.Ui, ParadoxNotion.Design, Styles, UnityEditor.Timeline.Signals -### Community 307 - "Community 307" +### Community 327 - "Community 327" Cohesion: 0.2 Nodes (9): AddUnitCollectData, CollectData, DamageCollectData, LearnTechCollectData, MatchGameEndCollectData, OnTurnStartCollectData, PlayerGameEndCollectData, TH1_Logic.Collect (+1 more) -### Community 308 - "Community 308" +### Community 328 - "Community 328" Cohesion: 0.2 Nodes (2): IUnitLogic, Logic -### Community 309 - "Community 309" +### Community 329 - "Community 329" Cohesion: 0.27 Nodes (2): GameAsyncOperation, YooAsset -### Community 310 - "Community 310" +### Community 330 - "Community 330" Cohesion: 0.33 Nodes (2): Cysharp.Threading.Tasks.Internal, MinimumQueue -### Community 311 - "Community 311" -Cohesion: 0.36 -Nodes (2): FABRIK2D, UnityEngine.U2D.IK +### Community 331 - "Community 331" +Cohesion: 0.2 +Nodes (4): ICacheUndo, UnityEditor.U2D.Animation, UndoScope, UnityEditor.U2D.Animation -### Community 312 - "Community 312" +### Community 332 - "Community 332" Cohesion: 0.24 Nodes (3): PopulateRuleOverideTileWizard, UnityEditor.Tilemaps, ScriptableWizard -### Community 313 - "Community 313" +### Community 333 - "Community 333" Cohesion: 0.29 Nodes (8): BurstIntrinsicGetCSRFromManaged(), BurstIntrinsicSetCSRFromManaged(), DoGetCSRTrampoline(), DoSetCSRTrampoline(), getcsr_raw(), setcsr_raw(), Unity.Burst.Intrinsics, X86 -### Community 314 - "Community 314" +### Community 334 - "Community 334" Cohesion: 0.22 Nodes (3): AssetStatusCache, IAssetStatusCache, Unity.PlasticSCM.Editor.AssetsOverlays.Cache -### Community 315 - "Community 315" +### Community 335 - "Community 335" Cohesion: 0.2 Nodes (5): IPlasticTimer, IPlasticTimerBuilder, Unity.PlasticSCM.Editor.UI, UnityPlasticTimer, UnityPlasticTimerBuilder -### Community 316 - "Community 316" +### Community 336 - "Community 336" Cohesion: 0.22 Nodes (4): Discovery, IDiscovery, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor -### Community 317 - "Community 317" +### Community 337 - "Community 337" +Cohesion: 0.31 +Nodes (5): INotifyValueChanged, ToolbarRadio, UnityEditor.Rendering.LookDev, UxmlFactory, UxmlTraits + +### Community 338 - "Community 338" Cohesion: 0.2 Nodes (5): IDebugDisplaySettings, UnityEngine.Rendering, IDebugDisplaySettingsData, UnityEngine.Rendering, IDebugDisplaySettingsQuery -### Community 318 - "Community 318" +### Community 339 - "Community 339" +Cohesion: 0.29 +Nodes (2): DebugUIHandlerIndirectFloatField, UnityEngine.Rendering.UI + +### Community 340 - "Community 340" Cohesion: 0.2 Nodes (2): RTHandles, UnityEngine.Rendering -### Community 319 - "Community 319" +### Community 341 - "Community 341" Cohesion: 0.29 Nodes (2): CoreMatrixUtils, UnityEngine.Rendering -### Community 320 - "Community 320" +### Community 342 - "Community 342" Cohesion: 0.2 Nodes (7): BuiltInToURP2DConverterContainer, UnityEditor.Rendering.Universal, BuiltInToURPConverterContainer, UnityEditor.Rendering.Universal, RenderPipelineConverterContainer, UnityEditor.Rendering.Universal, UpgradeURP2DAssetsContainer -### Community 321 - "Community 321" +### Community 343 - "Community 343" Cohesion: 0.22 -Nodes (2): TimelineMode, UnityEditor.Timeline +Nodes (5): ActivationTrackEditor, UnityEditor.Timeline, MarkerTrackEditor, UnityEditor.Timeline, TrackEditor -### Community 322 - "Community 322" +### Community 344 - "Community 344" Cohesion: 0.2 Nodes (2): ExtensibleFuzzyOptionTree, Unity.VisualScripting -### Community 323 - "Community 323" -Cohesion: 0.2 -Nodes (7): BoltCoreConfiguration, Unity.VisualScripting, BoltFlowConfiguration, Unity.VisualScripting, BoltStateConfiguration, Unity.VisualScripting, PluginConfiguration - -### Community 324 - "Community 324" +### Community 345 - "Community 345" Cohesion: 0.2 Nodes (5): IAboutable, PluginManifest, Unity.VisualScripting, Product, Unity.VisualScripting -### Community 325 - "Community 325" +### Community 346 - "Community 346" Cohesion: 0.29 Nodes (3): GraphGroupEditor, Styles, Unity.VisualScripting -### Community 326 - "Community 326" +### Community 347 - "Community 347" Cohesion: 0.2 Nodes (2): IUnitDescriptor, Unity.VisualScripting -### Community 327 - "Community 327" +### Community 348 - "Community 348" Cohesion: 0.2 Nodes (7): GraphElementAnalysis, StateAnalysis, Unity.VisualScripting, StateTransitionAnalysis, Unity.VisualScripting, UnitAnalysis, Unity.VisualScripting -### Community 328 - "Community 328" +### Community 349 - "Community 349" +Cohesion: 0.2 +Nodes (7): BoltCoreConfiguration, Unity.VisualScripting, BoltFlowConfiguration, Unity.VisualScripting, BoltStateConfiguration, Unity.VisualScripting, PluginConfiguration + +### Community 350 - "Community 350" Cohesion: 0.2 Nodes (7): BoltCoreManifest, Unity.VisualScripting, BoltFlowManifest, Unity.VisualScripting, BoltStateManifest, Unity.VisualScripting, PluginManifest -### Community 329 - "Community 329" +### Community 351 - "Community 351" Cohesion: 0.2 Nodes (7): ControlOutputWidget, Unity.VisualScripting, InvalidOutputWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, ValueOutputWidget -### Community 330 - "Community 330" +### Community 352 - "Community 352" Cohesion: 0.2 Nodes (7): GraphElementDescription, StateDescription, Unity.VisualScripting, StateTransitionDescription, Unity.VisualScripting, UnitDescription, Unity.VisualScripting -### Community 331 - "Community 331" +### Community 353 - "Community 353" Cohesion: 0.24 Nodes (2): ApplicationVariables, Unity.VisualScripting -### Community 332 - "Community 332" +### Community 354 - "Community 354" +Cohesion: 0.2 +Nodes (5): Macro, ScriptGraphAsset, Unity.VisualScripting, StateGraphAsset, Unity.VisualScripting + +### Community 355 - "Community 355" Cohesion: 0.2 Nodes (7): CollisionEventUnit, OnCollisionEnter, Unity.VisualScripting, OnCollisionExit, Unity.VisualScripting, OnCollisionStay, Unity.VisualScripting -### Community 333 - "Community 333" +### Community 356 - "Community 356" Cohesion: 0.2 Nodes (7): OnTriggerEnter, Unity.VisualScripting, OnTriggerExit, Unity.VisualScripting, OnTriggerStay, Unity.VisualScripting, TriggerEventUnit -### Community 334 - "Community 334" +### Community 357 - "Community 357" Cohesion: 0.2 Nodes (7): CollisionEvent2DUnit, OnCollisionEnter2D, Unity.VisualScripting, OnCollisionExit2D, Unity.VisualScripting, OnCollisionStay2D, Unity.VisualScripting -### Community 335 - "Community 335" +### Community 358 - "Community 358" Cohesion: 0.2 Nodes (7): OnTriggerEnter2D, Unity.VisualScripting, OnTriggerExit2D, Unity.VisualScripting, OnTriggerStay2D, Unity.VisualScripting, TriggerEvent2DUnit -### Community 336 - "Community 336" +### Community 359 - "Community 359" Cohesion: 0.2 Nodes (4): INesterState, NesterState, Unity.VisualScripting, State -### Community 337 - "Community 337" +### Community 360 - "Community 360" Cohesion: 0.28 Nodes (7): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterState, OnValidate(), StateMachine, IOwnedState, StateBehaviour -### Community 338 - "Community 338" +### Community 361 - "Community 361" +Cohesion: 0.22 +Nodes (4): Animancer.Examples.InverseKinematics, IKPuppet, Animancer.Examples.InverseKinematics, IKPuppetTarget + +### Community 362 - "Community 362" Cohesion: 0.22 Nodes (2): GUIStyleUtils, ParadoxNotion -### Community 339 - "Community 339" +### Community 363 - "Community 363" Cohesion: 0.39 Nodes (7): Demo_Angle, Diff(), IsBetween(), Lerp(), Normalize(), SameSignAngle(), SetValue() -### Community 340 - "Community 340" +### Community 364 - "Community 364" Cohesion: 0.22 Nodes (2): IPlayerLogic, Logic -### Community 341 - "Community 341" +### Community 365 - "Community 365" Cohesion: 0.22 Nodes (5): ISkinningSerializer, SkinningCopyData, SkinningCopySpriteData, SpriteBoneCopyData, UnityEditor.U2D.Animation -### Community 342 - "Community 342" +### Community 366 - "Community 366" Cohesion: 0.22 Nodes (2): IUndo, UnityEditor.U2D.Animation -### Community 343 - "Community 343" +### Community 367 - "Community 367" +Cohesion: 0.22 +Nodes (4): GUIAction, HoveredControlAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework + +### Community 368 - "Community 368" Cohesion: 0.28 Nodes (4): DrawBatchDataKey, IShapeEditorFactory, ShapeEditorFactory, UnityEditor.U2D.Sprites -### Community 344 - "Community 344" +### Community 369 - "Community 369" +Cohesion: 0.25 +Nodes (6): SpriteMetaData, SpriteOutline, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD, OutlineSpriteRect, SpriteRect + +### Community 370 - "Community 370" Cohesion: 0.33 Nodes (3): ISerializedCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedCamera -### Community 345 - "Community 345" +### Community 371 - "Community 371" Cohesion: 0.22 Nodes (7): GenericShaderGraphMaterialGUI, ShaderGraphLitGUI, ShaderGraphUnlitGUI, UnityEditor.Rendering.Universal, VFXGenericShaderGraphMaterialGUI, VFXShaderGraphLitGUI, VFXShaderGraphUnlitGUI -### Community 346 - "Community 346" -Cohesion: 0.22 -Nodes (8): BuildContent, BundleBuildContent, CustomAssets, UnityEditor.Build.Pipeline, IBuildContent, IBundleBuildContent, ICustomAssets, TestBundleBuildContent - -### Community 347 - "Community 347" +### Community 372 - "Community 372" Cohesion: 0.22 Nodes (6): CoreRPHelpURLAttribute, Documentation, UnityEngine.Rendering.ShaderGraph, UnityEngine.Rendering.Universal, URPHelpURLAttribute, DocumentationInfo -### Community 348 - "Community 348" -Cohesion: 0.25 -Nodes (4): CommandLineOptionSet, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption, UnityEditor.TestRunner.CommandLineParser - -### Community 349 - "Community 349" -Cohesion: 0.22 -Nodes (5): EditmodeWorkItemFactory, UnityEditor.TestTools.TestRunner, PlaymodeWorkItemFactory, UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory - -### Community 350 - "Community 350" -Cohesion: 0.22 -Nodes (2): ITestRunnerApiMapper, UnityEditor.TestTools.TestRunner.UnityTestProtocol - -### Community 351 - "Community 351" -Cohesion: 0.22 -Nodes (2): TimelineNavigator, UnityEditor.Timeline - -### Community 352 - "Community 352" -Cohesion: 0.22 -Nodes (7): AnnotationMarker, Timeline.Samples, INotification, INotificationOptionProvider, Marker, SignalEmitter, UnityEngine.Timeline - -### Community 353 - "Community 353" -Cohesion: 0.22 -Nodes (3): GraphContextExtension, Unity.VisualScripting, IGraphContextExtension - -### Community 354 - "Community 354" -Cohesion: 0.25 -Nodes (5): AccessorInfoStubWriter, Unity.VisualScripting, MemberInfoStubWriter, MethodBaseStubWriter, Unity.VisualScripting - -### Community 355 - "Community 355" -Cohesion: 0.22 -Nodes (5): FlowGraphContext, Unity.VisualScripting, GraphContext, StateGraphContext, Unity.VisualScripting - -### Community 356 - "Community 356" -Cohesion: 0.22 -Nodes (5): AnyStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, Unity.VisualScripting, StateDescriptor - -### Community 357 - "Community 357" -Cohesion: 0.22 -Nodes (3): Cloner, Unity.VisualScripting, ICloner - -### Community 358 - "Community 358" -Cohesion: 0.22 -Nodes (7): ControlPortDefinition, Unity.VisualScripting, IUnitControlPortDefinition, IUnitValuePortDefinition, UnitPortDefinition, Unity.VisualScripting, ValuePortDefinition - -### Community 359 - "Community 359" -Cohesion: 0.29 -Nodes (2): ExcelConfig, ExcelConfigBase - -### Community 360 - "Community 360" -Cohesion: 0.32 -Nodes (2): GCloud.UQM, UQMLog - -### Community 361 - "Community 361" -Cohesion: 0.25 -Nodes (3): Animancer.Editor, ObjectReference, Serialization - -### Community 362 - "Community 362" -Cohesion: 0.29 -Nodes (2): ParadoxNotion, WeakReferenceList - -### Community 363 - "Community 363" -Cohesion: 0.29 -Nodes (3): INodeReference, NodeCanvas.Framework, NodeReference - -### Community 364 - "Community 364" -Cohesion: 0.29 -Nodes (5): IFixedSizeMemoryPackable, IMemoryPackable, IMemoryPackFormatterRegister, MemoryPack, RegisterFormatter() - -### Community 365 - "Community 365" -Cohesion: 0.29 -Nodes (3): IMemoryPackFormatter, MemoryPack, MemoryPackFormatter - -### Community 366 - "Community 366" -Cohesion: 0.25 -Nodes (2): INugetPackageSource, NugetForUnity.PackageSource - -### Community 367 - "Community 367" -Cohesion: 0.25 -Nodes (2): IWebRequester, YooAsset - -### Community 368 - "Community 368" -Cohesion: 0.25 -Nodes (2): IBundleQuery, YooAsset - -### Community 369 - "Community 369" -Cohesion: 0.25 -Nodes (4): ICharacterDataProvider, ICharacterOrder, IMainSkeletonDataProvider, UnityEditor.U2D.Animation - -### Community 370 - "Community 370" -Cohesion: 0.25 -Nodes (4): ISelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path - -### Community 371 - "Community 371" -Cohesion: 0.25 -Nodes (3): ITriangulator, Triangulator, UnityEditor.U2D.Animation - -### Community 372 - "Community 372" -Cohesion: 0.25 -Nodes (4): ClickAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework, HoveredControlAction - ### Community 373 - "Community 373" -Cohesion: 0.29 -Nodes (3): AssetDatabaseSystem, IAssetDatabase, UnityEditor.U2D.Sprites +Cohesion: 0.22 +Nodes (8): BuildContent, BundleBuildContent, CustomAssets, UnityEditor.Build.Pipeline, IBuildContent, IBundleBuildContent, ICustomAssets, TestBundleBuildContent ### Community 374 - "Community 374" Cohesion: 0.25 -Nodes (1): SpriteEditorModuleBase +Nodes (4): CommandLineOptionSet, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption, UnityEditor.TestRunner.CommandLineParser ### Community 375 - "Community 375" -Cohesion: 0.25 -Nodes (4): GridSelectionToolEditor, UnityEditor.Tilemaps, ICreateHorizontalToolbar, ICreateVerticalToolbar +Cohesion: 0.22 +Nodes (5): EditmodeWorkItemFactory, UnityEditor.TestTools.TestRunner, PlaymodeWorkItemFactory, UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory ### Community 376 - "Community 376" -Cohesion: 0.25 -Nodes (1): IAssetMenuOperations +Cohesion: 0.22 +Nodes (2): ITestRunnerApiMapper, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 377 - "Community 377" -Cohesion: 0.39 -Nodes (2): CooldownWindowDelayer, Unity.PlasticSCM.Editor.UI +Cohesion: 0.22 +Nodes (2): TimelineNavigator, UnityEditor.Timeline ### Community 378 - "Community 378" -Cohesion: 0.25 -Nodes (2): IIncomingChangesTab, Unity.PlasticSCM.Editor.Views.IncomingChanges +Cohesion: 0.22 +Nodes (7): AnnotationMarker, Timeline.Samples, INotification, INotificationOptionProvider, Marker, SignalEmitter, UnityEngine.Timeline ### Community 379 - "Community 379" -Cohesion: 0.25 -Nodes (3): NativeContainderTests_ValidateTypes_JobDebugger, NativeContainerTests_ValidateTypes, NativeContainerTests_ValidateTypesFixture +Cohesion: 0.22 +Nodes (3): GraphContextExtension, Unity.VisualScripting, IGraphContextExtension ### Community 380 - "Community 380" Cohesion: 0.25 -Nodes (2): IFileIO, Packages.Rider.Editor.ProjectGeneration +Nodes (5): AccessorInfoStubWriter, Unity.VisualScripting, MemberInfoStubWriter, MethodBaseStubWriter, Unity.VisualScripting ### Community 381 - "Community 381" -Cohesion: 0.36 -Nodes (3): Microsoft.Unity.VisualStudio.Editor.Messaging, State, TcpClient +Cohesion: 0.22 +Nodes (5): FlowGraphContext, Unity.VisualScripting, GraphContext, StateGraphContext, Unity.VisualScripting ### Community 382 - "Community 382" -Cohesion: 0.25 -Nodes (2): ListBufferExtensions, UnityEngine.Rendering +Cohesion: 0.22 +Nodes (5): SelectOnIntegerDescriptor, Unity.VisualScripting, SelectOnStringDescriptor, Unity.VisualScripting, SelectUnitDescriptor ### Community 383 - "Community 383" -Cohesion: 0.29 -Nodes (3): IVolumeDebugSettings, IVolumeDebugSettings2, UnityEngine.Rendering +Cohesion: 0.22 +Nodes (5): AnyStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, Unity.VisualScripting, StateDescriptor ### Community 384 - "Community 384" -Cohesion: 0.39 -Nodes (6): SavedBool, SavedFloat, SavedInt, SavedParameter, SavedString, UnityEditor.Rendering.Universal +Cohesion: 0.22 +Nodes (3): Cloner, Unity.VisualScripting, ICloner ### Community 385 - "Community 385" -Cohesion: 0.25 -Nodes (3): RenderPipelineGlobalSettingsProvider, UnityEditor.Rendering.Universal, UniversalGlobalSettingsPanelProvider +Cohesion: 0.22 +Nodes (3): INesterUnit, NesterUnit, Unity.VisualScripting ### Community 386 - "Community 386" -Cohesion: 0.29 -Nodes (3): Equals(), Identifier(), UnityEngine.Rendering.Universal +Cohesion: 0.22 +Nodes (7): ControlPortDefinition, Unity.VisualScripting, IUnitControlPortDefinition, IUnitValuePortDefinition, UnitPortDefinition, Unity.VisualScripting, ValuePortDefinition ### Community 387 - "Community 387" -Cohesion: 0.25 -Nodes (7): BuildResults, BundleBuildResults, SerializedFileMetaData, UnityEditor.Build.Pipeline, IBuildResults, IBundleBuildResults, TestBuildResultsBase +Cohesion: 0.29 +Nodes (2): ExcelConfig, ExcelConfigBase ### Community 388 - "Community 388" -Cohesion: 0.25 -Nodes (3): IMaySupportVFX, MaySupportVFXExtensions, UnityEditor.ShaderGraph +Cohesion: 0.32 +Nodes (2): GCloud.UQM, UQMLog ### Community 389 - "Community 389" Cohesion: 0.25 -Nodes (3): IColorProvider, NoColors, UnityEditor.ShaderGraph.Drawing.Colors +Nodes (3): Animancer.Editor, ObjectReference, Serialization ### Community 390 - "Community 390" -Cohesion: 0.25 -Nodes (2): ITestAdaptorFactory, UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.32 +Nodes (3): Animancer, Curve, CustomFade ### Community 391 - "Community 391" -Cohesion: 0.25 -Nodes (5): ITestResultAdaptor, Microsoft.Unity.VisualStudio.Editor.Testing, TestResultAdaptor, TestResultAdaptorContainer, UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.29 +Nodes (2): ParadoxNotion, WeakReferenceList ### Community 392 - "Community 392" -Cohesion: 0.25 -Nodes (2): IPlatformSetup, UnityEditor.TestTools.TestRunner +Cohesion: 0.29 +Nodes (3): INodeReference, NodeCanvas.Framework, NodeReference ### Community 393 - "Community 393" -Cohesion: 0.25 -Nodes (2): StadiaPlatformSetup, UnityEditor.TestTools.TestRunner +Cohesion: 0.29 +Nodes (5): IFixedSizeMemoryPackable, IMemoryPackable, IMemoryPackFormatterRegister, MemoryPack, RegisterFormatter() ### Community 394 - "Community 394" -Cohesion: 0.25 -Nodes (2): SwitchPlatformSetup, UnityEditor.TestTools.TestRunner +Cohesion: 0.29 +Nodes (3): IMemoryPackFormatter, MemoryPack, MemoryPackFormatter ### Community 395 - "Community 395" Cohesion: 0.25 -Nodes (2): ILogScope, UnityEngine.TestTools.Logging +Nodes (2): INugetPackageSource, NugetForUnity.PackageSource ### Community 396 - "Community 396" -Cohesion: 0.25 -Nodes (3): GetHashCode(), MarkerEditor, UnityEditor.Timeline +Cohesion: 0.29 +Nodes (5): EncryptionNone, YooAsset.Editor, FileOffsetEncryption, FileStreamEncryption, IEncryptionServices ### Community 397 - "Community 397" Cohesion: 0.25 -Nodes (3): ITrimItemDrawer, ITrimItemMode, UnityEditor.Timeline +Nodes (2): IBundleQuery, YooAsset ### Community 398 - "Community 398" -Cohesion: 0.29 -Nodes (3): SignalEventDrawer, UnityEditor.Timeline.Signals, UnityEventDrawer +Cohesion: 0.25 +Nodes (4): ICharacterDataProvider, ICharacterOrder, IMainSkeletonDataProvider, UnityEditor.U2D.Animation ### Community 399 - "Community 399" Cohesion: 0.25 -Nodes (5): AnimationTrackKeyDataSource, UnityEditor.Timeline, BasePropertyKeyDataSource, TrackPropertyCurvesDataSource, UnityEditor.Timeline +Nodes (4): ISelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path ### Community 400 - "Community 400" -Cohesion: 0.32 -Nodes (3): AnimationPlayableAsset, AnimationPlayableAssetUpgrade, UnityEngine.Timeline +Cohesion: 0.25 +Nodes (3): ITriangulator, Triangulator, UnityEditor.U2D.Animation ### Community 401 - "Community 401" -Cohesion: 0.36 -Nodes (3): AnimationTrack, AnimationTrackUpgrade, UnityEngine.Timeline +Cohesion: 0.25 +Nodes (4): ClickAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework, HoveredControlAction ### Community 402 - "Community 402" -Cohesion: 0.25 -Nodes (2): DragAndDropUtility, Unity.VisualScripting +Cohesion: 0.29 +Nodes (3): AssetDatabaseSystem, IAssetDatabase, UnityEditor.U2D.Sprites ### Community 403 - "Community 403" Cohesion: 0.25 -Nodes (2): IDragAndDropHandler, Unity.VisualScripting +Nodes (1): SpriteEditorModuleBase ### Community 404 - "Community 404" Cohesion: 0.25 -Nodes (5): GetMemberOption, Unity.VisualScripting, MemberUnitOption, SetMemberOption, Unity.VisualScripting +Nodes (4): GridSelectionToolEditor, UnityEditor.Tilemaps, ICreateHorizontalToolbar, ICreateVerticalToolbar ### Community 405 - "Community 405" Cohesion: 0.25 -Nodes (5): NesterUnitDescriptor, StateUnitDescriptor, Unity.VisualScripting, SuperUnitDescriptor, Unity.VisualScripting +Nodes (1): IAssetMenuOperations ### Community 406 - "Community 406" -Cohesion: 0.25 -Nodes (2): ICloner, Unity.VisualScripting +Cohesion: 0.39 +Nodes (2): CooldownWindowDelayer, Unity.PlasticSCM.Editor.UI ### Community 407 - "Community 407" -Cohesion: 0.29 -Nodes (3): CFriendsList(), CFriendsListMenu, Show() +Cohesion: 0.25 +Nodes (2): IIncomingChangesTab, Unity.PlasticSCM.Editor.Views.IncomingChanges ### Community 408 - "Community 408" -Cohesion: 0.33 -Nodes (4): IHasKey, IPolymorphic, Animancer, ITransition +Cohesion: 0.25 +Nodes (3): NativeContainderTests_ValidateTypes_JobDebugger, NativeContainerTests_ValidateTypes, NativeContainerTests_ValidateTypesFixture ### Community 409 - "Community 409" -Cohesion: 0.33 -Nodes (4): MixerParameterTween, Animancer, MixerParameterTweenFloat, MixerParameterTweenVector2 +Cohesion: 0.25 +Nodes (2): IFileIO, Packages.Rider.Editor.ProjectGeneration ### Community 410 - "Community 410" -Cohesion: 0.33 -Nodes (3): AnimancerTransitionAssetBase, Animancer, AnimancerTransitionAsset +Cohesion: 0.36 +Nodes (3): Microsoft.Unity.VisualStudio.Editor.Messaging, State, TcpClient ### Community 411 - "Community 411" -Cohesion: 0.29 -Nodes (2): Colors, ParadoxNotion.Design +Cohesion: 0.25 +Nodes (2): ListBufferExtensions, UnityEngine.Rendering ### Community 412 - "Community 412" Cohesion: 0.29 -Nodes (3): ISerializationCollectable, ISerializationCollector, ParadoxNotion.Serialization.FullSerializer +Nodes (3): IVolumeDebugSettings, IVolumeDebugSettings2, UnityEngine.Rendering ### Community 413 - "Community 413" -Cohesion: 0.29 -Nodes (3): NodeCanvas.Framework.Internal, ReflectedAction, ReflectedActionWrapper +Cohesion: 0.39 +Nodes (6): SavedBool, SavedFloat, SavedInt, SavedParameter, SavedString, UnityEditor.Rendering.Universal ### Community 414 - "Community 414" -Cohesion: 0.29 -Nodes (3): NodeCanvas.Framework.Internal, ReflectedFunction, ReflectedFunctionWrapper +Cohesion: 0.25 +Nodes (3): RenderPipelineGlobalSettingsProvider, UnityEditor.Rendering.Universal, UniversalGlobalSettingsPanelProvider ### Community 415 - "Community 415" -Cohesion: 0.48 -Nodes (6): EditorSimulateModeParameters, HostPlayModeParameters, InitializeParameters, OfflinePlayModeParameters, WebPlayModeParameters, YooAsset +Cohesion: 0.29 +Nodes (3): Equals(), Identifier(), UnityEngine.Rendering.Universal ### Community 416 - "Community 416" -Cohesion: 0.29 -Nodes (2): ILogger, YooAsset +Cohesion: 0.25 +Nodes (7): BuildResults, BundleBuildResults, SerializedFileMetaData, UnityEditor.Build.Pipeline, IBuildResults, IBundleBuildResults, TestBuildResultsBase ### Community 417 - "Community 417" -Cohesion: 0.29 -Nodes (2): IStateNode, UniFramework.Machine +Cohesion: 0.25 +Nodes (3): IMaySupportVFX, MaySupportVFXExtensions, UnityEditor.ShaderGraph ### Community 418 - "Community 418" -Cohesion: 0.29 -Nodes (1): UniFramework.Utility +Cohesion: 0.25 +Nodes (3): IColorProvider, NoColors, UnityEditor.ShaderGraph.Drawing.Colors ### Community 419 - "Community 419" -Cohesion: 0.29 -Nodes (1): UniFramework.Utility +Cohesion: 0.25 +Nodes (2): ITestAdaptorFactory, UnityEditor.TestTools.TestRunner.Api ### Community 420 - "Community 420" -Cohesion: 0.29 -Nodes (4): TextContent, UnityEditor.U2D.Animation, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD +Cohesion: 0.25 +Nodes (5): ITestResultAdaptor, Microsoft.Unity.VisualStudio.Editor.Testing, TestResultAdaptor, TestResultAdaptorContainer, UnityEditor.TestTools.TestRunner.Api ### Community 421 - "Community 421" -Cohesion: 0.29 -Nodes (2): IMeshPreviewBehaviour, UnityEditor.U2D.Animation +Cohesion: 0.25 +Nodes (2): IPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 422 - "Community 422" -Cohesion: 0.29 -Nodes (2): ITriangulator, UnityEditor.U2D.Animation +Cohesion: 0.25 +Nodes (2): StadiaPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 423 - "Community 423" -Cohesion: 0.29 -Nodes (1): UnityEngine.U2D.Animation +Cohesion: 0.25 +Nodes (2): SwitchPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 424 - "Community 424" -Cohesion: 0.33 -Nodes (4): SpriteMetaData, SpriteOutline, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD +Cohesion: 0.25 +Nodes (2): ILogScope, UnityEngine.TestTools.Logging ### Community 425 - "Community 425" -Cohesion: 0.29 -Nodes (4): PointRectSelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, RectSelector +Cohesion: 0.25 +Nodes (3): GetHashCode(), MarkerEditor, UnityEditor.Timeline ### Community 426 - "Community 426" -Cohesion: 0.33 -Nodes (3): DocumentLoadContext, PaintDotNet.Data.PhotoshopFileType, LoadContext +Cohesion: 0.25 +Nodes (3): ITrimItemDrawer, ITrimItemMode, UnityEditor.Timeline ### Community 427 - "Community 427" -Cohesion: 0.33 -Nodes (3): GUIUtilitySystem, IGUIUtility, UnityEditor.U2D.Sprites +Cohesion: 0.29 +Nodes (3): SignalEventDrawer, UnityEditor.Timeline.Signals, UnityEventDrawer ### Community 428 - "Community 428" -Cohesion: 0.38 -Nodes (2): TilemapEditorToolButton, UnityEditor.Tilemaps +Cohesion: 0.25 +Nodes (5): AnimationTrackKeyDataSource, UnityEditor.Timeline, BasePropertyKeyDataSource, TrackPropertyCurvesDataSource, UnityEditor.Timeline ### Community 429 - "Community 429" -Cohesion: 0.29 -Nodes (4): ManagedResolverFunction(), FromIntPtr(), IFunctionPointer, Unity.Burst +Cohesion: 0.32 +Nodes (3): AnimationPlayableAsset, AnimationPlayableAssetUpgrade, UnityEngine.Timeline ### Community 430 - "Community 430" -Cohesion: 0.29 -Nodes (2): CheckWorkspaceTreeNodeStatus, Codice +Cohesion: 0.36 +Nodes (3): AnimationTrack, AnimationTrackUpgrade, UnityEngine.Timeline ### Community 431 - "Community 431" -Cohesion: 0.38 -Nodes (2): Unity.PlasticSCM.Editor, VCSPlugin +Cohesion: 0.32 +Nodes (3): Assigner, Unity.VisualScripting, IAssigner ### Community 432 - "Community 432" -Cohesion: 0.43 -Nodes (2): IsSolved, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer +Cohesion: 0.25 +Nodes (2): DragAndDropUtility, Unity.VisualScripting ### Community 433 - "Community 433" -Cohesion: 0.29 -Nodes (2): IGenerator, Packages.Rider.Editor.ProjectGeneration +Cohesion: 0.25 +Nodes (2): IDragAndDropHandler, Unity.VisualScripting ### Community 434 - "Community 434" -Cohesion: 0.29 -Nodes (3): IApplyRevertPropertyContextMenuItemProvider, UnityEngine.Rendering, VolumeComponent +Cohesion: 0.25 +Nodes (5): GetMemberOption, Unity.VisualScripting, MemberUnitOption, SetMemberOption, Unity.VisualScripting ### Community 435 - "Community 435" -Cohesion: 0.29 -Nodes (2): RenderPipelineConverter, UnityEditor.Rendering.Universal +Cohesion: 0.25 +Nodes (5): NesterUnitDescriptor, StateUnitDescriptor, Unity.VisualScripting, SuperUnitDescriptor, Unity.VisualScripting ### Community 436 - "Community 436" -Cohesion: 0.29 -Nodes (6): BaseColorProperties, EmissiveColorProperties, SpecularColorProperties, StandardProperties, UnityEditor.VFX.URP, URPLitInputProperties +Cohesion: 0.25 +Nodes (2): ICloner, Unity.VisualScripting ### Community 437 - "Community 437" Cohesion: 0.29 -Nodes (6): BuildDependencyData, ObjectDependencyData, UnityEditor.Build.Pipeline, IDependencyData, IObjectDependencyData, TestDependencyDataBase +Nodes (3): CFriendsList(), CFriendsListMenu, Show() ### Community 438 - "Community 438" -Cohesion: 0.29 -Nodes (6): BuildWriteData, BundleWriteData, UnityEditor.Build.Pipeline, IBundleWriteData, IWriteData, TestWriteDataBase +Cohesion: 0.33 +Nodes (4): IHasKey, IPolymorphic, Animancer, ITransition ### Community 439 - "Community 439" -Cohesion: 0.29 -Nodes (4): LightmappingShaderProperties, LightmapTextureArrayProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty +Cohesion: 0.33 +Nodes (4): MixerParameterTween, Animancer, MixerParameterTweenFloat, MixerParameterTweenVector2 ### Community 440 - "Community 440" -Cohesion: 0.29 -Nodes (3): PlatformExtensions, PragmaRenderers, UnityEditor.ShaderGraph +Cohesion: 0.33 +Nodes (3): AnimancerTransitionAssetBase, Animancer, AnimancerTransitionAsset ### Community 441 - "Community 441" Cohesion: 0.29 -Nodes (5): BuiltInShaderGraphSaveContext, ShaderGraphMaterialsUpdater, UnityEditor.Rendering.BuiltIn, UnityEditor.Rendering.Universal, UniversalShaderGraphSaveContext +Nodes (2): Colors, ParadoxNotion.Design ### Community 442 - "Community 442" Cohesion: 0.29 -Nodes (6): RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSOT, UnityEngine.Rendering +Nodes (3): NodeCanvas.Framework.Internal, ReflectedAction, ReflectedActionWrapper ### Community 443 - "Community 443" Cohesion: 0.29 -Nodes (6): PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSOT, UnityEngine.Rendering +Nodes (3): NodeCanvas.Framework.Internal, ReflectedFunction, ReflectedFunctionWrapper ### Community 444 - "Community 444" -Cohesion: 0.29 -Nodes (3): MyExercise_1, MyExercise_1s, MyMath +Cohesion: 0.48 +Nodes (6): EditorSimulateModeParameters, HostPlayModeParameters, InitializeParameters, OfflinePlayModeParameters, WebPlayModeParameters, YooAsset ### Community 445 - "Community 445" Cohesion: 0.29 -Nodes (2): ICallbacks, UnityEditor.TestTools.TestRunner.Api +Nodes (2): IWebRequester, YooAsset ### Community 446 - "Community 446" Cohesion: 0.29 -Nodes (3): IgnoreTest, UnityEditor.TestTools.TestRunner.Api, UnityEngine.TestTools +Nodes (2): ILogger, YooAsset ### Community 447 - "Community 447" Cohesion: 0.29 -Nodes (2): ITestRunnerApi, UnityEditor.TestTools.TestRunner.Api +Nodes (2): IStateNode, UniFramework.Machine ### Community 448 - "Community 448" Cohesion: 0.29 -Nodes (2): AnalyticsTestCallback, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (1): UniFramework.Utility ### Community 449 - "Community 449" Cohesion: 0.29 -Nodes (5): AttributeFinderBase, PostbuildCleanupAttributeFinder, UnityEditor.TestTools.TestRunner, PrebuildSetupAttributeFinder, UnityEditor.TestTools.TestRunner +Nodes (1): UniFramework.Utility ### Community 450 - "Community 450" Cohesion: 0.29 -Nodes (2): ITestJobDataHolder, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): IMeshPreviewBehaviour, UnityEditor.U2D.Animation ### Community 451 - "Community 451" Cohesion: 0.29 -Nodes (2): ITestJobRunner, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): ITriangulator, UnityEditor.U2D.Animation ### Community 452 - "Community 452" Cohesion: 0.29 -Nodes (5): AllocatingGCMemoryConstraint, AllocatingGCMemoryResult, UnityEngine.TestTools.Constraints, Constraint, ConstraintResult +Nodes (1): UnityEngine.U2D.Animation ### Community 453 - "Community 453" Cohesion: 0.29 -Nodes (2): ITestRunCallback, UnityEngine.TestRunner +Nodes (4): TextContent, UnityEditor.U2D.Animation, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD ### Community 454 - "Community 454" -Cohesion: 0.38 -Nodes (2): TMP_EditorCoroutine, TMPro.EditorUtilities +Cohesion: 0.29 +Nodes (4): PointRectSelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, RectSelector ### Community 455 - "Community 455" -Cohesion: 0.29 -Nodes (5): TMP_Character, TMPro, TMP_SpriteCharacter, TMPro, TMP_TextElement +Cohesion: 0.33 +Nodes (3): DocumentLoadContext, PaintDotNet.Data.PhotoshopFileType, LoadContext ### Community 456 - "Community 456" -Cohesion: 0.29 -Nodes (2): RawImage, RawImageTestHook +Cohesion: 0.33 +Nodes (3): GUIUtilitySystem, IGUIUtility, UnityEditor.U2D.Sprites ### Community 457 - "Community 457" Cohesion: 0.29 -Nodes (5): Analysis, Unity.VisualScripting, IAnalysis, IGraphElementAnalysis, Unity.VisualScripting +Nodes (4): ManagedResolverFunction(), FromIntPtr(), IFunctionPointer, Unity.Burst ### Community 458 - "Community 458" Cohesion: 0.29 -Nodes (5): EventMachineEditor, Unity.VisualScripting, FlowMachineEditor, Unity.VisualScripting, MachineEditor +Nodes (2): CheckWorkspaceTreeNodeStatus, Codice ### Community 459 - "Community 459" -Cohesion: 0.29 -Nodes (2): IndividualPropertyDrawer, Unity.VisualScripting +Cohesion: 0.38 +Nodes (2): Unity.PlasticSCM.Editor, VCSPlugin ### Community 460 - "Community 460" -Cohesion: 0.29 -Nodes (5): LudiqBehaviourEditor, Unity.VisualScripting, LudiqRootObjectEditor, LudiqScriptableObjectEditor, Unity.VisualScripting +Cohesion: 0.43 +Nodes (2): IsSolved, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer ### Community 461 - "Community 461" Cohesion: 0.29 -Nodes (5): BoltCorePaths, Unity.VisualScripting, BoltFlowPaths, Unity.VisualScripting, PluginPaths +Nodes (2): IGenerator, Packages.Rider.Editor.ProjectGeneration ### Community 462 - "Community 462" Cohesion: 0.29 -Nodes (5): EditorPrefAttribute, Unity.VisualScripting, PluginConfigurationItemAttribute, ProjectSettingAttribute, Unity.VisualScripting +Nodes (3): IApplyRevertPropertyContextMenuItemProvider, UnityEngine.Rendering, VolumeComponent ### Community 463 - "Community 463" Cohesion: 0.29 -Nodes (5): FlowMacroDescriptor, Unity.VisualScripting, MacroDescriptor, StateMacroDescriptor, Unity.VisualScripting +Nodes (5): BuiltInShaderGraphSaveContext, ShaderGraphMaterialsUpdater, UnityEditor.Rendering.BuiltIn, UnityEditor.Rendering.Universal, UniversalShaderGraphSaveContext ### Community 464 - "Community 464" Cohesion: 0.29 -Nodes (5): NesterUnitEditor, StateUnitEditor, Unity.VisualScripting, SuperUnitEditor, Unity.VisualScripting +Nodes (6): BaseColorProperties, EmissiveColorProperties, SpecularColorProperties, StandardProperties, UnityEditor.VFX.URP, URPLitInputProperties ### Community 465 - "Community 465" Cohesion: 0.29 -Nodes (5): UnitInputPortWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, UnitPortWidget +Nodes (6): BuildDependencyData, ObjectDependencyData, UnityEditor.Build.Pipeline, IDependencyData, IObjectDependencyData, TestDependencyDataBase ### Community 466 - "Community 466" Cohesion: 0.29 -Nodes (5): FlowGraphDescriptor, Unity.VisualScripting, GraphDescriptor, StateGraphDescriptor, Unity.VisualScripting +Nodes (6): BuildWriteData, BundleWriteData, UnityEditor.Build.Pipeline, IBundleWriteData, IWriteData, TestWriteDataBase ### Community 467 - "Community 467" Cohesion: 0.29 -Nodes (5): FlowMachineDescriptor, Unity.VisualScripting, MachineDescriptor, StateMachineDescriptor, Unity.VisualScripting +Nodes (4): LightmappingShaderProperties, LightmapTextureArrayProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty ### Community 468 - "Community 468" Cohesion: 0.29 -Nodes (5): FlowStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, SuperStateDescriptor, Unity.VisualScripting +Nodes (3): PlatformExtensions, PragmaRenderers, UnityEditor.ShaderGraph ### Community 469 - "Community 469" Cohesion: 0.29 -Nodes (5): GraphElementEditor, StateEditor, Unity.VisualScripting, StateTransitionEditor, Unity.VisualScripting +Nodes (6): RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSOT, UnityEngine.Rendering ### Community 470 - "Community 470" Cohesion: 0.29 -Nodes (5): FlowStateEditor, Unity.VisualScripting, NesterStateEditor, SuperStateEditor, Unity.VisualScripting +Nodes (6): PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSOT, UnityEngine.Rendering ### Community 471 - "Community 471" Cohesion: 0.29 -Nodes (2): INotifiedCollectionItem, Unity.VisualScripting +Nodes (3): MyExercise_1, MyExercise_1s, MyMath ### Community 472 - "Community 472" Cohesion: 0.29 -Nodes (2): IProxyableNotifyCollectionChanged, Unity.VisualScripting +Nodes (2): ICallbacks, UnityEditor.TestTools.TestRunner.Api ### Community 473 - "Community 473" Cohesion: 0.29 -Nodes (3): VariantCollection, Unity.VisualScripting, VariantKeyedCollection +Nodes (3): IgnoreTest, UnityEditor.TestTools.TestRunner.Api, UnityEngine.TestTools ### Community 474 - "Community 474" Cohesion: 0.29 -Nodes (5): InvalidCastException, InvalidConversionException, Unity.VisualScripting, OperatorException, Unity.VisualScripting +Nodes (2): ITestRunnerApi, UnityEditor.TestTools.TestRunner.Api ### Community 475 - "Community 475" Cohesion: 0.29 -Nodes (5): IGraphData, IGraphDataWithVariables, Unity.VisualScripting, IGraphEventListenerData, Unity.VisualScripting +Nodes (2): AnalyticsTestCallback, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 476 - "Community 476" Cohesion: 0.29 -Nodes (5): AmbiguousOperatorException, Unity.VisualScripting, InvalidOperatorException, Unity.VisualScripting, OperatorException +Nodes (5): AttributeFinderBase, PostbuildCleanupAttributeFinder, UnityEditor.TestTools.TestRunner, PrebuildSetupAttributeFinder, UnityEditor.TestTools.TestRunner ### Community 477 - "Community 477" Cohesion: 0.29 -Nodes (5): InstanceActionInvokerBase, Unity.VisualScripting, InstanceFunctionInvokerBase, Unity.VisualScripting, InstanceInvokerBase +Nodes (2): ITestJobDataHolder, UnityEditor.TestTools.TestRunner.TestRun ### Community 478 - "Community 478" Cohesion: 0.29 -Nodes (5): StaticActionInvokerBase, Unity.VisualScripting, StaticFunctionInvokerBase, Unity.VisualScripting, StaticInvokerBase +Nodes (2): ITestJobRunner, UnityEditor.TestTools.TestRunner.TestRun ### Community 479 - "Community 479" -Cohesion: 0.33 -Nodes (3): HashUtility, Unity.VisualScripting, UnityEngine.Timeline +Cohesion: 0.29 +Nodes (5): AllocatingGCMemoryConstraint, AllocatingGCMemoryResult, UnityEngine.TestTools.Constraints, Constraint, ConstraintResult ### Community 480 - "Community 480" Cohesion: 0.29 -Nodes (5): SelectOnInteger, Unity.VisualScripting, SelectOnString, Unity.VisualScripting, SelectUnit +Nodes (2): ITestRunCallback, UnityEngine.TestRunner ### Community 481 - "Community 481" -Cohesion: 0.29 -Nodes (5): SwitchOnInteger, Unity.VisualScripting, SwitchOnString, Unity.VisualScripting, SwitchUnit +Cohesion: 0.38 +Nodes (2): TMP_EditorCoroutine, TMPro.EditorUtilities ### Community 482 - "Community 482" Cohesion: 0.29 -Nodes (5): GetGraphs, GetScriptGraphs, Unity.VisualScripting, GetStateGraphs, Unity.VisualScripting +Nodes (5): TMP_Character, TMPro, TMP_SpriteCharacter, TMPro, TMP_TextElement ### Community 483 - "Community 483" Cohesion: 0.29 -Nodes (5): HasGraph, HasScriptGraph, Unity.VisualScripting, HasStateGraph, Unity.VisualScripting +Nodes (2): RawImage, RawImageTestHook ### Community 484 - "Community 484" Cohesion: 0.29 -Nodes (5): SetGraph, SetScriptGraph, Unity.VisualScripting, SetStateGraph, Unity.VisualScripting +Nodes (5): Analysis, Unity.VisualScripting, IAnalysis, IGraphElementAnalysis, Unity.VisualScripting ### Community 485 - "Community 485" -Cohesion: 0.47 -Nodes (4): Get-GraphifyPython(), Invoke-GraphifyRebuild(), Test-GraphifyPython(), Write-HookLog() +Cohesion: 0.29 +Nodes (5): EventMachineEditor, Unity.VisualScripting, FlowMachineEditor, Unity.VisualScripting, MachineEditor ### Community 486 - "Community 486" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): IndividualPropertyDrawer, Unity.VisualScripting ### Community 487 - "Community 487" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): LudiqBehaviourEditor, Unity.VisualScripting, LudiqRootObjectEditor, LudiqScriptableObjectEditor, Unity.VisualScripting ### Community 488 - "Community 488" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): EditorPrefAttribute, Unity.VisualScripting, PluginConfigurationItemAttribute, ProjectSettingAttribute, Unity.VisualScripting ### Community 489 - "Community 489" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowMachineDescriptor, Unity.VisualScripting, MachineDescriptor, StateMachineDescriptor, Unity.VisualScripting ### Community 490 - "Community 490" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowMacroDescriptor, Unity.VisualScripting, MacroDescriptor, StateMacroDescriptor, Unity.VisualScripting ### Community 491 - "Community 491" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): NesterUnitEditor, StateUnitEditor, Unity.VisualScripting, SuperUnitEditor, Unity.VisualScripting ### Community 492 - "Community 492" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): BoltCorePaths, Unity.VisualScripting, BoltFlowPaths, Unity.VisualScripting, PluginPaths ### Community 493 - "Community 493" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): UnitInputPortWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, UnitPortWidget ### Community 494 - "Community 494" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowGraphDescriptor, Unity.VisualScripting, GraphDescriptor, StateGraphDescriptor, Unity.VisualScripting ### Community 495 - "Community 495" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowStateEditor, Unity.VisualScripting, NesterStateEditor, SuperStateEditor, Unity.VisualScripting ### Community 496 - "Community 496" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, SuperStateDescriptor, Unity.VisualScripting ### Community 497 - "Community 497" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): GraphElementEditor, StateEditor, Unity.VisualScripting, StateTransitionEditor, Unity.VisualScripting ### Community 498 - "Community 498" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): INotifiedCollectionItem, Unity.VisualScripting ### Community 499 - "Community 499" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): IProxyableNotifyCollectionChanged, Unity.VisualScripting ### Community 500 - "Community 500" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): InvalidCastException, InvalidConversionException, Unity.VisualScripting, OperatorException, Unity.VisualScripting ### Community 501 - "Community 501" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): IGraphData, IGraphDataWithVariables, Unity.VisualScripting, IGraphEventListenerData, Unity.VisualScripting ### Community 502 - "Community 502" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): AmbiguousOperatorException, Unity.VisualScripting, InvalidOperatorException, Unity.VisualScripting, OperatorException ### Community 503 - "Community 503" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): InstanceActionInvokerBase, Unity.VisualScripting, InstanceFunctionInvokerBase, Unity.VisualScripting, InstanceInvokerBase ### Community 504 - "Community 504" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): StaticActionInvokerBase, Unity.VisualScripting, StaticFunctionInvokerBase, Unity.VisualScripting, StaticInvokerBase ### Community 505 - "Community 505" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (3): HashUtility, Unity.VisualScripting, UnityEngine.Timeline ### Community 506 - "Community 506" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): SelectOnInteger, Unity.VisualScripting, SelectOnString, Unity.VisualScripting, SelectUnit ### Community 507 - "Community 507" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): SwitchOnInteger, Unity.VisualScripting, SwitchOnString, Unity.VisualScripting, SwitchUnit ### Community 508 - "Community 508" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): GetGraphs, GetScriptGraphs, Unity.VisualScripting, GetStateGraphs, Unity.VisualScripting ### Community 509 - "Community 509" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): HasGraph, HasScriptGraph, Unity.VisualScripting, HasStateGraph, Unity.VisualScripting ### Community 510 - "Community 510" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.43 +Nodes (2): Round, Unity.VisualScripting ### Community 511 - "Community 511" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): SetGraph, SetScriptGraph, Unity.VisualScripting, SetStateGraph, Unity.VisualScripting ### Community 512 - "Community 512" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.47 +Nodes (4): Get-GraphifyPython(), Invoke-GraphifyRebuild(), Test-GraphifyPython(), Write-HookLog() ### Community 513 - "Community 513" Cohesion: 0.33 @@ -4257,4367 +4312,4367 @@ Nodes (1): Steamworks ### Community 526 - "Community 526" Cohesion: 0.33 -Nodes (2): CrashSightCallback, CrashSightLogCallback +Nodes (1): Steamworks ### Community 527 - "Community 527" -Cohesion: 0.4 -Nodes (3): Animancer, AnimancerUtilities, ICopyable +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 528 - "Community 528" -Cohesion: 0.4 -Nodes (3): IBlackboard, IGlobalBlackboard, NodeCanvas.Framework +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 529 - "Community 529" Cohesion: 0.33 -Nodes (1): ViActiveValue +Nodes (1): Steamworks ### Community 530 - "Community 530" Cohesion: 0.33 -Nodes (4): DiplomacyChatInfo, DiplomacyStateInfo, FeelingStateInfo, FeelingStrategyInfo +Nodes (1): Steamworks ### Community 531 - "Community 531" Cohesion: 0.33 -Nodes (5): CityInfo, MapRecordData, PlayerInfo, TH1_Logic.MatchConfig, UnitInfo +Nodes (1): Steamworks ### Community 532 - "Community 532" Cohesion: 0.33 -Nodes (3): SpriteCache, TH1Resource, UnityEditor.U2D.Animation +Nodes (1): Steamworks ### Community 533 - "Community 533" Cohesion: 0.33 -Nodes (3): Cache, MemoryPack.Internal, TypeHelpers +Nodes (1): Steamworks ### Community 534 - "Community 534" -Cohesion: 0.4 -Nodes (4): DisableGroup, EnableGroup, YooAsset.Editor, IActiveRule +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 535 - "Community 535" Cohesion: 0.33 -Nodes (3): Cysharp.Threading.Tasks.Internal, RuntimeHelpersAbstraction, WellKnownNoReferenceContainsType +Nodes (1): Steamworks ### Community 536 - "Community 536" Cohesion: 0.33 -Nodes (5): BindingData, Contents, ConvertedKeyData, KeyData, UnityEditor.U2D.Animation.Upgrading +Nodes (1): Steamworks ### Community 537 - "Community 537" Cohesion: 0.33 -Nodes (3): EditablePathUtility, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 538 - "Community 538" Cohesion: 0.33 -Nodes (3): ISnapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 539 - "Community 539" Cohesion: 0.33 -Nodes (3): IUndoObject, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 540 - "Community 540" Cohesion: 0.33 -Nodes (3): DefaultControl, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework +Nodes (1): Steamworks ### Community 541 - "Community 541" Cohesion: 0.33 -Nodes (3): IShape, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 542 - "Community 542" -Cohesion: 0.4 -Nodes (4): AnalyticFactory, Analytics, IAnalytics, UnityEditor.U2D.PSD +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 543 - "Community 543" -Cohesion: 0.47 -Nodes (2): ImageDataFactory, PhotoshopFile.Compression +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 544 - "Community 544" -Cohesion: 0.4 -Nodes (2): TilePaletteBrushesDropdownToggle, UnityEditor.Tilemaps +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 545 - "Community 545" Cohesion: 0.33 -Nodes (2): Hint, Unity.Burst.CompilerServices +Nodes (1): Steamworks ### Community 546 - "Community 546" Cohesion: 0.33 -Nodes (3): Popcnt, Unity.Burst.Intrinsics, X86 +Nodes (1): Steamworks ### Community 547 - "Community 547" Cohesion: 0.33 -Nodes (2): ApplicationDataPath, Unity.PlasticSCM.Editor +Nodes (1): Steamworks ### Community 548 - "Community 548" -Cohesion: 0.4 -Nodes (2): QueryVisualElementsExtensions, Unity.PlasticSCM.Editor +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 549 - "Community 549" -Cohesion: 0.4 -Nodes (2): ProjectViewAssetSelection, Unity.PlasticSCM.Editor.AssetMenu +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 550 - "Community 550" Cohesion: 0.33 -Nodes (3): CheckinProgress, Unity.PlasticSCM.Editor.Developer, Unity.PlasticSCM.Editor.Gluon +Nodes (1): Steamworks ### Community 551 - "Community 551" Cohesion: 0.33 -Nodes (5): Gluon, Installer, Plastic, ToolConstants, Unity.PlasticSCM.Editor.Tool +Nodes (1): Steamworks ### Community 552 - "Community 552" Cohesion: 0.33 -Nodes (5): BranchesColumns, ChangesetsColumns, LocksColumns, Unity.PlasticSCM.Editor.UI, UnityConstants +Nodes (1): Steamworks ### Community 553 - "Community 553" Cohesion: 0.33 -Nodes (4): CustomEditor, IRemoveAdditionalDataContextualMenu, UnityEditor.Rendering, VolumeComponentEditorAttribute +Nodes (2): CrashSightCallback, CrashSightLogCallback ### Community 554 - "Community 554" -Cohesion: 0.33 -Nodes (2): ISerializedCamera, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (3): Animancer, AnimancerUtilities, ICopyable ### Community 555 - "Community 555" -Cohesion: 0.47 -Nodes (3): DebugDisplaySettingsPanel, UnityEngine.Rendering, IDebugDisplaySettingsPanelDisposable +Cohesion: 0.4 +Nodes (3): IBlackboard, IGlobalBlackboard, NodeCanvas.Framework ### Community 556 - "Community 556" Cohesion: 0.33 -Nodes (5): GenerateHLSL, HLSLArray, PackingAttribute, SurfaceDataAttributes, UnityEngine.Rendering +Nodes (1): ViActiveValue ### Community 557 - "Community 557" -Cohesion: 0.53 -Nodes (4): Append(), GetFuncHashCode(), GetHashCode(), UnityEngine.Rendering +Cohesion: 0.33 +Nodes (4): DiplomacyChatInfo, DiplomacyStateInfo, FeelingStateInfo, FeelingStrategyInfo ### Community 558 - "Community 558" Cohesion: 0.33 -Nodes (2): TileLayoutUtils, UnityEngine.Rendering +Nodes (5): CityInfo, MapRecordData, PlayerInfo, TH1_Logic.MatchConfig, UnitInfo ### Community 559 - "Community 559" Cohesion: 0.33 -Nodes (4): DefaultLightingExplorerExtension, LightExplorer, Styles, UnityEditor +Nodes (3): Cache, MemoryPack.Internal, TypeHelpers ### Community 560 - "Community 560" Cohesion: 0.4 -Nodes (4): IAnalytics, IAnalyticsData, Renderer2DAnalytics, UnityEditor.Rendering.Universal.Analytics +Nodes (4): DisableGroup, EnableGroup, YooAsset.Editor, IActiveRule ### Community 561 - "Community 561" Cohesion: 0.33 -Nodes (3): ISerializedLight, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedLight +Nodes (3): Cysharp.Threading.Tasks.Internal, RuntimeHelpersAbstraction, WellKnownNoReferenceContainsType ### Community 562 - "Community 562" -Cohesion: 0.47 -Nodes (1): AutoLoadPipelineAsset +Cohesion: 0.33 +Nodes (5): BindingData, Contents, ConvertedKeyData, KeyData, UnityEditor.U2D.Animation.Upgrading ### Community 563 - "Community 563" -Cohesion: 0.47 -Nodes (2): ShaderGraphShortcuts, UnityEditor.ShaderGraph +Cohesion: 0.33 +Nodes (3): EditablePathUtility, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 564 - "Community 564" Cohesion: 0.33 -Nodes (3): IMayRequireBitangent, MayRequireBitangentExtensions, UnityEditor.ShaderGraph +Nodes (3): ISnapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 565 - "Community 565" Cohesion: 0.33 -Nodes (3): IMayRequireCameraOpaqueTexture, MayRequireCameraOpaqueTextureExtensions, UnityEditor.ShaderGraph +Nodes (3): IUndoObject, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 566 - "Community 566" Cohesion: 0.33 -Nodes (3): IMayRequireDepthTexture, MayRequireDepthTextureExtensions, UnityEditor.ShaderGraph +Nodes (3): DefaultControl, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework ### Community 567 - "Community 567" Cohesion: 0.33 -Nodes (3): IMayRequireFaceSign, IMayRequireFaceSignExtensions, UnityEditor.ShaderGraph +Nodes (3): IShape, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 568 - "Community 568" -Cohesion: 0.33 -Nodes (3): IMayRequireMeshUV, MayRequireMeshUVExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): ArrayDebugView, Dispose(), ResizeIfRequired(), UnityEngine.U2D.Common.UTess ### Community 569 - "Community 569" -Cohesion: 0.33 -Nodes (3): IMayRequireNormal, MayRequireNormalExtensions, UnityEditor.ShaderGraph +Cohesion: 0.47 +Nodes (2): ImageDataFactory, PhotoshopFile.Compression ### Community 570 - "Community 570" Cohesion: 0.33 -Nodes (3): IMayRequirePosition, MayRequirePositionExtensions, UnityEditor.ShaderGraph +Nodes (2): Hint, Unity.Burst.CompilerServices ### Community 571 - "Community 571" Cohesion: 0.33 -Nodes (3): IMayRequirePositionPredisplacement, MayRequirePositionPredisplacementExtensions, UnityEditor.ShaderGraph +Nodes (3): Popcnt, Unity.Burst.Intrinsics, X86 ### Community 572 - "Community 572" Cohesion: 0.33 -Nodes (3): IMayRequireTangent, MayRequireTangentExtensions, UnityEditor.ShaderGraph +Nodes (2): ApplicationDataPath, Unity.PlasticSCM.Editor ### Community 573 - "Community 573" -Cohesion: 0.33 -Nodes (3): IMayRequireTime, MayRequireTimeExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (2): QueryVisualElementsExtensions, Unity.PlasticSCM.Editor ### Community 574 - "Community 574" -Cohesion: 0.33 -Nodes (3): IMayRequireVertexColor, MayRequireVertexColorExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (2): ProjectViewAssetSelection, Unity.PlasticSCM.Editor.AssetMenu ### Community 575 - "Community 575" Cohesion: 0.33 -Nodes (3): IMayRequireVertexID, MayRequireVertexIDExtensions, UnityEditor.ShaderGraph +Nodes (3): CheckinProgress, Unity.PlasticSCM.Editor.Developer, Unity.PlasticSCM.Editor.Gluon ### Community 576 - "Community 576" Cohesion: 0.33 -Nodes (3): IMayRequireVertexSkinning, MayRequireVertexSkinningExtensions, UnityEditor.ShaderGraph +Nodes (5): Gluon, Installer, Plastic, ToolConstants, Unity.PlasticSCM.Editor.Tool ### Community 577 - "Community 577" Cohesion: 0.33 -Nodes (3): IMayRequireViewDirection, MayRequireViewDirectionExtensions, UnityEditor.ShaderGraph +Nodes (5): BranchesColumns, ChangesetsColumns, LocksColumns, Unity.PlasticSCM.Editor.UI, UnityConstants ### Community 578 - "Community 578" Cohesion: 0.33 -Nodes (2): NodeExtensions, UnityEditor.Graphing +Nodes (3): PostNormalizedVectorDrawer, QuaternionDrawer, Unity.Mathematics.Editor ### Community 579 - "Community 579" Cohesion: 0.33 -Nodes (3): AdditionalCommandCollection, Item, UnityEditor.ShaderGraph +Nodes (4): CustomEditor, IRemoveAdditionalDataContextualMenu, UnityEditor.Rendering, VolumeComponentEditorAttribute ### Community 580 - "Community 580" Cohesion: 0.33 -Nodes (3): DependencyCollection, Item, UnityEditor.ShaderGraph +Nodes (2): ISerializedCamera, UnityEditor.Rendering ### Community 581 - "Community 581" -Cohesion: 0.33 -Nodes (3): FieldCollection, Item, UnityEditor.ShaderGraph +Cohesion: 0.47 +Nodes (3): DebugDisplaySettingsPanel, UnityEngine.Rendering, IDebugDisplaySettingsPanelDisposable ### Community 582 - "Community 582" Cohesion: 0.33 -Nodes (1): UnityEditor.ShaderGraph.Serialization +Nodes (5): GenerateHLSL, HLSLArray, PackingAttribute, SurfaceDataAttributes, UnityEngine.Rendering ### Community 583 - "Community 583" -Cohesion: 0.33 -Nodes (2): TestSlot, UnityEditor.ShaderGraph +Cohesion: 0.53 +Nodes (4): Append(), GetFuncHashCode(), GetHashCode(), UnityEngine.Rendering ### Community 584 - "Community 584" Cohesion: 0.33 -Nodes (3): StringFormatterTests, Tests_2, Tests_2s +Nodes (2): TileLayoutUtils, UnityEngine.Rendering ### Community 585 - "Community 585" Cohesion: 0.33 -Nodes (3): ApplicationPlayingTests, PlayModeTests_7, PlayModeTests_8 +Nodes (4): DefaultLightingExplorerExtension, LightExplorer, Styles, UnityEditor ### Community 586 - "Community 586" -Cohesion: 0.33 -Nodes (3): MovementScript, PlayModeTests_9, PlayModeTests_9s +Cohesion: 0.4 +Nodes (4): IAnalytics, IAnalyticsData, Renderer2DAnalytics, UnityEditor.Rendering.Universal.Analytics ### Community 587 - "Community 587" Cohesion: 0.33 -Nodes (2): ICallbacksHolder, UnityEditor.TestTools.TestRunner.Api +Nodes (3): ISerializedLight, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedLight ### Community 588 - "Community 588" -Cohesion: 0.4 -Nodes (2): EditModeLauncherContextSettings, UnityEditor.TestTools.TestRunner +Cohesion: 0.47 +Nodes (1): AutoLoadPipelineAsset ### Community 589 - "Community 589" -Cohesion: 0.33 -Nodes (3): EditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner, IEditorCompilationInterfaceProxy +Cohesion: 0.47 +Nodes (2): ShaderGraphShortcuts, UnityEditor.ShaderGraph ### Community 590 - "Community 590" Cohesion: 0.33 -Nodes (2): IUtpMessageReporter, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (3): IMayRequireBitangent, MayRequireBitangentExtensions, UnityEditor.ShaderGraph ### Community 591 - "Community 591" Cohesion: 0.33 -Nodes (3): ITestExecutionContext, UnityEngine.TestRunner.NUnitExtensions.Runner, UnityTestExecutionContext +Nodes (3): IMayRequireCameraOpaqueTexture, MayRequireCameraOpaqueTextureExtensions, UnityEditor.ShaderGraph ### Community 592 - "Community 592" Cohesion: 0.33 -Nodes (2): SortingLayerHelper, TMPro +Nodes (3): IMayRequireDepthTexture, MayRequireDepthTextureExtensions, UnityEditor.ShaderGraph ### Community 593 - "Community 593" Cohesion: 0.33 -Nodes (4): TMP_Glyph, TMP_Sprite, TMPro, TMP_TextElement_Legacy +Nodes (3): IMayRequireFaceSign, IMayRequireFaceSignExtensions, UnityEditor.ShaderGraph ### Community 594 - "Community 594" -Cohesion: 0.4 -Nodes (2): TimelineAssetViewModel, UnityEditor.Timeline +Cohesion: 0.33 +Nodes (3): IMayRequireMeshUV, MayRequireMeshUVExtensions, UnityEditor.ShaderGraph ### Community 595 - "Community 595" -Cohesion: 0.4 -Nodes (3): TimelineClip, TimelineClipUpgrade, UnityEngine.Timeline +Cohesion: 0.33 +Nodes (3): IMayRequireNormal, MayRequireNormalExtensions, UnityEditor.ShaderGraph ### Community 596 - "Community 596" Cohesion: 0.33 -Nodes (3): IInterval, RuntimeElement, UnityEngine.Timeline +Nodes (3): IMayRequirePosition, MayRequirePositionExtensions, UnityEditor.ShaderGraph ### Community 597 - "Community 597" -Cohesion: 0.4 -Nodes (3): AbstractEventData, BaseEventData, UnityEngine.EventSystems +Cohesion: 0.33 +Nodes (3): IMayRequirePositionPredisplacement, MayRequirePositionPredisplacementExtensions, UnityEditor.ShaderGraph ### Community 598 - "Community 598" Cohesion: 0.33 -Nodes (3): IMeshModifier, IVertexModifier, UnityEngine.UI +Nodes (3): IMayRequireTangent, MayRequireTangentExtensions, UnityEditor.ShaderGraph ### Community 599 - "Community 599" Cohesion: 0.33 -Nodes (2): IndividualEditor, Unity.VisualScripting +Nodes (3): IMayRequireTime, MayRequireTimeExtensions, UnityEditor.ShaderGraph ### Community 600 - "Community 600" Cohesion: 0.33 -Nodes (2): IFuzzyOption, Unity.VisualScripting +Nodes (3): IMayRequireVertexColor, MayRequireVertexColorExtensions, UnityEditor.ShaderGraph ### Community 601 - "Community 601" Cohesion: 0.33 -Nodes (3): CastMetadata, Unity.VisualScripting, ProxyMetadata +Nodes (3): IMayRequireVertexID, MayRequireVertexIDExtensions, UnityEditor.ShaderGraph ### Community 602 - "Community 602" Cohesion: 0.33 -Nodes (3): CustomEventDescriptor, Unity.VisualScripting, EventUnitDescriptor +Nodes (3): IMayRequireVertexSkinning, MayRequireVertexSkinningExtensions, UnityEditor.ShaderGraph ### Community 603 - "Community 603" Cohesion: 0.33 -Nodes (3): NesterStateTransitionDescriptor, Unity.VisualScripting, StateTransitionDescriptor +Nodes (3): IMayRequireViewDirection, MayRequireViewDirectionExtensions, UnityEditor.ShaderGraph ### Community 604 - "Community 604" Cohesion: 0.33 -Nodes (3): FieldsCloner, Unity.VisualScripting, ReflectedCloner +Nodes (2): NodeExtensions, UnityEditor.Graphing ### Community 605 - "Community 605" Cohesion: 0.33 -Nodes (2): GradientCloner, Unity.VisualScripting +Nodes (3): AdditionalCommandCollection, Item, UnityEditor.ShaderGraph ### Community 606 - "Community 606" Cohesion: 0.33 -Nodes (3): IEventMachine, Unity.VisualScripting, IMachine +Nodes (3): DependencyCollection, Item, UnityEditor.ShaderGraph ### Community 607 - "Community 607" Cohesion: 0.33 -Nodes (2): IGraphEventHandler, Unity.VisualScripting +Nodes (3): FieldCollection, Item, UnityEditor.ShaderGraph ### Community 608 - "Community 608" Cohesion: 0.33 -Nodes (2): PlatformUtility, Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 609 - "Community 609" Cohesion: 0.33 -Nodes (3): EqualityComparer, MemberInfoComparer, Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 610 - "Community 610" Cohesion: 0.33 -Nodes (2): IOptimizedAccessor, Unity.VisualScripting +Nodes (2): TestSlot, UnityEditor.ShaderGraph ### Community 611 - "Community 611" Cohesion: 0.33 -Nodes (2): ReflectionPropertyAccessor, Unity.VisualScripting +Nodes (3): StringFormatterTests, Tests_2, Tests_2s ### Community 612 - "Community 612" Cohesion: 0.33 -Nodes (3): IGettable, Unity.VisualScripting, XGettable +Nodes (3): ApplicationPlayingTests, PlayModeTests_7, PlayModeTests_8 ### Community 613 - "Community 613" Cohesion: 0.33 -Nodes (0): +Nodes (3): MovementScript, PlayModeTests_9, PlayModeTests_9s ### Community 614 - "Community 614" Cohesion: 0.4 -Nodes (1): Steamworks +Nodes (5): AssetPipelineIgnore, IgnoreInV1, IgnoreInV2, UnityEditor.TestTools, AssetPipelineIgnoreAttribute ### Community 615 - "Community 615" Cohesion: 0.4 -Nodes (3): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterParameters +Nodes (2): EditModeLauncherContextSettings, UnityEditor.TestTools.TestRunner ### Community 616 - "Community 616" -Cohesion: 0.4 -Nodes (4): Animancer, DocsURLs, Strings, Tooltips +Cohesion: 0.33 +Nodes (3): EditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner, IEditorCompilationInterfaceProxy ### Community 617 - "Community 617" -Cohesion: 0.5 -Nodes (3): Animancer.FSM, CurrentToString(), ToString() +Cohesion: 0.33 +Nodes (2): IUtpMessageReporter, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 618 - "Community 618" -Cohesion: 0.5 -Nodes (3): Animancer.FSM, CurrentToString(), ToString() +Cohesion: 0.33 +Nodes (3): ITestExecutionContext, UnityEngine.TestRunner.NUnitExtensions.Runner, UnityTestExecutionContext ### Community 619 - "Community 619" -Cohesion: 0.4 -Nodes (2): ISerializedReflectedInfo, ParadoxNotion.Serialization +Cohesion: 0.33 +Nodes (2): SortingLayerHelper, TMPro ### Community 620 - "Community 620" -Cohesion: 0.4 -Nodes (2): ITaskSystem, NodeCanvas.Framework +Cohesion: 0.33 +Nodes (4): TMP_Glyph, TMP_Sprite, TMPro, TMP_TextElement_Legacy ### Community 621 - "Community 621" -Cohesion: 0.6 -Nodes (2): ViTuple, ViTupleInterface +Cohesion: 0.4 +Nodes (2): TimelineAssetViewModel, UnityEditor.Timeline ### Community 622 - "Community 622" Cohesion: 0.4 -Nodes (1): ViAccumulateVersion +Nodes (3): TimelineClip, TimelineClipUpgrade, UnityEngine.Timeline ### Community 623 - "Community 623" -Cohesion: 0.4 -Nodes (3): BaseCondition, CountryStrategyCondition, NodeCanvas.Tasks.Actions +Cohesion: 0.33 +Nodes (3): IInterval, RuntimeElement, UnityEngine.Timeline ### Community 624 - "Community 624" Cohesion: 0.4 -Nodes (2): ISequencerTask, TH1_Presentation.Sequencer.Task +Nodes (3): AbstractEventData, BaseEventData, UnityEngine.EventSystems ### Community 625 - "Community 625" -Cohesion: 0.4 -Nodes (2): IEscClosable, TH1_UI.Controller.Base +Cohesion: 0.33 +Nodes (3): IMeshModifier, IVertexModifier, UnityEngine.UI ### Community 626 - "Community 626" -Cohesion: 0.4 -Nodes (0): +Cohesion: 0.33 +Nodes (2): IndividualEditor, Unity.VisualScripting ### Community 627 - "Community 627" -Cohesion: 0.5 -Nodes (4): TwoPaneSplitView, SplitView, UxmlFactory, YooAsset.Editor +Cohesion: 0.33 +Nodes (2): IFuzzyOption, Unity.VisualScripting ### Community 628 - "Community 628" -Cohesion: 0.4 -Nodes (2): IDecryptionServices, YooAsset +Cohesion: 0.33 +Nodes (3): CastMetadata, Unity.VisualScripting, ProxyMetadata ### Community 629 - "Community 629" -Cohesion: 0.4 -Nodes (2): IDeliveryLoadServices, YooAsset +Cohesion: 0.33 +Nodes (3): CustomEventDescriptor, Unity.VisualScripting, EventUnitDescriptor ### Community 630 - "Community 630" -Cohesion: 0.4 -Nodes (2): IRemoteServices, YooAsset +Cohesion: 0.33 +Nodes (3): NesterStateTransitionDescriptor, Unity.VisualScripting, StateTransitionDescriptor ### Community 631 - "Community 631" -Cohesion: 0.4 -Nodes (1): Cysharp.Threading.Tasks +Cohesion: 0.33 +Nodes (3): FieldsCloner, Unity.VisualScripting, ReflectedCloner ### Community 632 - "Community 632" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks.Internal, Entry +Cohesion: 0.33 +Nodes (2): GradientCloner, Unity.VisualScripting ### Community 633 - "Community 633" -Cohesion: 0.4 -Nodes (3): CircleVertexSelector, UnityEditor.U2D.Animation, ICircleSelector +Cohesion: 0.33 +Nodes (3): IEventMachine, Unity.VisualScripting, IMachine ### Community 634 - "Community 634" -Cohesion: 0.4 -Nodes (2): ISpriteLibDataProvider, UnityEditor.U2D.Animation +Cohesion: 0.33 +Nodes (2): IGraphEventHandler, Unity.VisualScripting ### Community 635 - "Community 635" -Cohesion: 0.4 -Nodes (2): BaseUpgrader, UnityEditor.U2D.Animation.Upgrading +Cohesion: 0.33 +Nodes (2): PlatformUtility, Unity.VisualScripting ### Community 636 - "Community 636" -Cohesion: 0.4 -Nodes (3): IconUtility, UnityEngine.U2D.Animation, UnityEngine.U2D.IK +Cohesion: 0.33 +Nodes (3): EqualityComparer, MemberInfoComparer, Unity.VisualScripting ### Community 637 - "Community 637" -Cohesion: 0.4 -Nodes (2): Aliasing, Unity.Burst.CompilerServices +Cohesion: 0.33 +Nodes (2): IOptimizedAccessor, Unity.VisualScripting ### Community 638 - "Community 638" -Cohesion: 0.4 -Nodes (2): Loop, Unity.Burst.CompilerServices +Cohesion: 0.33 +Nodes (2): ReflectionPropertyAccessor, Unity.VisualScripting ### Community 639 - "Community 639" Cohesion: 0.4 -Nodes (4): Unity.Burst.Intrinsics, V128DebugView, V256DebugView, V64DebugView +Nodes (2): Unity.VisualScripting, UnityObjectOwnershipUtility ### Community 640 - "Community 640" -Cohesion: 0.5 -Nodes (2): CloudProjectId, Unity.PlasticSCM.Editor.CollabMigration +Cohesion: 0.33 +Nodes (3): IGettable, Unity.VisualScripting, XGettable ### Community 641 - "Community 641" -Cohesion: 0.5 -Nodes (2): IsCurrent, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer +Cohesion: 0.33 +Nodes (0): ### Community 642 - "Community 642" Cohesion: 0.4 -Nodes (4): CameraUI, Environment, Styles, UnityEditor.Rendering +Nodes (3): ET, ExcelConfig, Program ### Community 643 - "Community 643" Cohesion: 0.4 -Nodes (4): CameraUI, Output, Styles, UnityEditor.Rendering +Nodes (1): Steamworks ### Community 644 - "Community 644" Cohesion: 0.4 -Nodes (4): CameraUI, PhysicalCamera, Styles, UnityEditor.Rendering +Nodes (3): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterParameters ### Community 645 - "Community 645" Cohesion: 0.4 -Nodes (4): CameraUI, Rendering, Styles, UnityEditor.Rendering +Nodes (2): Animancer.Examples.Jobs, SimpleLeanComponent ### Community 646 - "Community 646" Cohesion: 0.4 -Nodes (2): ISerializedLight, UnityEditor.Rendering +Nodes (2): Animancer.Examples, TimeScale ### Community 647 - "Community 647" Cohesion: 0.4 -Nodes (2): IEnvironmentDisplayer, Style +Nodes (4): Animancer, DocsURLs, Strings, Tooltips ### Community 648 - "Community 648" Cohesion: 0.4 -Nodes (2): SerializedDataParameter, UnityEditor.Rendering +Nodes (3): Animancer, AnimancerUtilities, IWrapper ### Community 649 - "Community 649" -Cohesion: 0.4 -Nodes (2): CommandBufferPool, UnityEngine.Rendering +Cohesion: 0.5 +Nodes (3): Animancer.FSM, CurrentToString(), ToString() ### Community 650 - "Community 650" -Cohesion: 0.4 -Nodes (4): Environment, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.5 +Nodes (3): Animancer.FSM, CurrentToString(), ToString() ### Community 651 - "Community 651" Cohesion: 0.4 -Nodes (4): Rendering, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (2): ISerializedReflectedInfo, ParadoxNotion.Serialization ### Community 652 - "Community 652" Cohesion: 0.4 -Nodes (2): ComponentUtility, UnityEngine.Rendering.Universal +Nodes (2): ITaskSystem, NodeCanvas.Framework ### Community 653 - "Community 653" -Cohesion: 0.4 -Nodes (2): IWriteOperation, UnityEditor.Build.Pipeline.Interfaces +Cohesion: 0.6 +Nodes (2): ViTuple, ViTupleInterface ### Community 654 - "Community 654" -Cohesion: 0.5 -Nodes (2): TextureSamplerState, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (1): ViAccumulateVersion ### Community 655 - "Community 655" Cohesion: 0.4 -Nodes (2): IHasCustomDeprecationMessage, UnityEditor.ShaderGraph +Nodes (3): BaseCondition, CountryStrategyCondition, NodeCanvas.Tasks.Actions ### Community 656 - "Community 656" Cohesion: 0.4 -Nodes (2): IInspectable, UnityEditor.ShaderGraph.Drawing +Nodes (2): ISequencerTask, TH1_Presentation.Sequencer.Task ### Community 657 - "Community 657" Cohesion: 0.4 -Nodes (2): IPropertyDrawer, UnityEditor.ShaderGraph.Drawing +Nodes (2): UI, UnitTypeMono ### Community 658 - "Community 658" Cohesion: 0.4 -Nodes (2): StackPool, UnityEditor.Graphing +Nodes (2): UI, VersionLabelMono ### Community 659 - "Community 659" -Cohesion: 0.5 -Nodes (4): BlockFieldDescriptor, CustomSlotBlockFieldDescriptor, UnityEditor.ShaderGraph, FieldDescriptor +Cohesion: 0.4 +Nodes (2): IEscClosable, TH1_UI.Controller.Base ### Community 660 - "Community 660" Cohesion: 0.4 -Nodes (1): UnityEditor.ShaderGraph.Serialization +Nodes (0): ### Community 661 - "Community 661" -Cohesion: 0.4 -Nodes (2): AssertHelpers, UnityEditor.ShaderGraph +Cohesion: 0.5 +Nodes (4): TwoPaneSplitView, SplitView, UxmlFactory, YooAsset.Editor ### Community 662 - "Community 662" -Cohesion: 0.5 -Nodes (2): TestRunnerWindowSettings, UnityEditor.TestTools.TestRunner +Cohesion: 0.4 +Nodes (2): IDecryptionServices, YooAsset ### Community 663 - "Community 663" Cohesion: 0.4 -Nodes (2): ISettingsBuilder, UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (2): IDeliveryLoadServices, YooAsset ### Community 664 - "Community 664" Cohesion: 0.4 -Nodes (3): AssemblyWrapper, EditorAssemblyWrapper, UnityEditor.TestTools.TestRunner +Nodes (2): IDeliveryQueryServices, YooAsset ### Community 665 - "Community 665" Cohesion: 0.4 -Nodes (2): IEditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner +Nodes (2): IRemoteServices, YooAsset ### Community 666 - "Community 666" Cohesion: 0.4 -Nodes (2): ITestListCache, UnityEditor.TestTools.TestRunner +Nodes (1): Cysharp.Threading.Tasks ### Community 667 - "Community 667" -Cohesion: 0.4 -Nodes (3): IAsyncTestAssemblyBuilder, UnityEngine.TestTools.NUnitExtensions, ITestAssemblyBuilder +Cohesion: 0.5 +Nodes (2): Cysharp.Threading.Tasks.Internal, Entry ### Community 668 - "Community 668" Cohesion: 0.4 -Nodes (3): TestMethodCommand, UnityEngine.TestTools, UnityTestMethodCommand +Nodes (2): IDraggable, UnityEditor.U2D.Layout ### Community 669 - "Community 669" Cohesion: 0.4 -Nodes (2): IRemoteTestResultDataFactory, UnityEngine.TestRunner.TestLaunchers +Nodes (3): CircleVertexSelector, UnityEditor.U2D.Animation, ICircleSelector ### Community 670 - "Community 670" Cohesion: 0.4 -Nodes (3): AssemblyLoadProxy, UnityEngine.TestTools.Utils, IAssemblyLoadProxy +Nodes (2): IWeightsGenerator, UnityEditor.U2D.Animation ### Community 671 - "Community 671" Cohesion: 0.4 -Nodes (3): AssemblyWrapper, UnityEngine.TestTools.Utils, IAssemblyWrapper +Nodes (2): ISpriteLibDataProvider, UnityEditor.U2D.Animation ### Community 672 - "Community 672" Cohesion: 0.4 -Nodes (2): TMP_ListPool, TMPro +Nodes (2): BaseUpgrader, UnityEditor.U2D.Animation.Upgrading ### Community 673 - "Community 673" Cohesion: 0.4 -Nodes (3): SpriteDataObject, TexturePacker_JsonArray, TMPro.SpriteAssetUtilities +Nodes (3): IconUtility, UnityEngine.U2D.Animation, UnityEngine.U2D.IK ### Community 674 - "Community 674" Cohesion: 0.4 -Nodes (1): UnityEditor.Timeline +Nodes (3): ScriptableData, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 675 - "Community 675" Cohesion: 0.4 -Nodes (3): TimelineAssetEditionMode, UnityEditor.Timeline, TimelineInactiveMode +Nodes (2): LoadContext, PhotoshopFile ### Community 676 - "Community 676" Cohesion: 0.4 -Nodes (3): TimelineAsset, TimelineAssetUpgrade, UnityEngine.Timeline +Nodes (2): ImageData, PhotoshopFile.Compression ### Community 677 - "Community 677" Cohesion: 0.4 -Nodes (2): IReorderableListDropTarget, Unity.VisualScripting.ReorderableList +Nodes (3): BurstDisassembler, Unity.Burst.Editor, WasmInstructionInfo ### Community 678 - "Community 678" Cohesion: 0.4 -Nodes (2): Plugin, Unity.VisualScripting +Nodes (2): Aliasing, Unity.Burst.CompilerServices ### Community 679 - "Community 679" Cohesion: 0.4 -Nodes (2): EditorTypeUtility, Unity.VisualScripting +Nodes (2): Loop, Unity.Burst.CompilerServices ### Community 680 - "Community 680" Cohesion: 0.4 -Nodes (2): ISidebarPanelContent, Unity.VisualScripting +Nodes (4): Unity.Burst.Intrinsics, V128DebugView, V256DebugView, V64DebugView ### Community 681 - "Community 681" Cohesion: 0.4 -Nodes (1): Unity.VisualScripting +Nodes (2): AssetsProcessors, Unity.PlasticSCM.Editor.AssetUtils.Processor ### Community 682 - "Community 682" -Cohesion: 0.4 -Nodes (2): IPoolable, Unity.VisualScripting +Cohesion: 0.5 +Nodes (2): CloudProjectId, Unity.PlasticSCM.Editor.CollabMigration ### Community 683 - "Community 683" -Cohesion: 0.4 -Nodes (1): Unity.VisualScripting +Cohesion: 0.5 +Nodes (2): IsCurrent, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer ### Community 684 - "Community 684" Cohesion: 0.4 -Nodes (2): IOptimizedInvoker, Unity.VisualScripting +Nodes (3): CameraUI, Environment, UnityEditor.Rendering ### Community 685 - "Community 685" Cohesion: 0.4 -Nodes (2): IGizmoDrawer, Unity.VisualScripting +Nodes (4): CameraUI, Environment, Styles, UnityEditor.Rendering ### Community 686 - "Community 686" Cohesion: 0.4 -Nodes (3): AnalyticsIdentifier, IAnalyticsIdentifiable, Unity.VisualScripting +Nodes (4): CameraUI, Output, Styles, UnityEditor.Rendering ### Community 687 - "Community 687" Cohesion: 0.4 -Nodes (0): +Nodes (4): CameraUI, PhysicalCamera, Styles, UnityEditor.Rendering ### Community 688 - "Community 688" -Cohesion: 0.5 -Nodes (2): DiagnosticIds, ET.Analyzer +Cohesion: 0.4 +Nodes (4): CameraUI, Rendering, Styles, UnityEditor.Rendering ### Community 689 - "Community 689" -Cohesion: 0.5 -Nodes (2): DiagnosticCategories, ET.Analyzer +Cohesion: 0.4 +Nodes (2): ISerializedLight, UnityEditor.Rendering ### Community 690 - "Community 690" -Cohesion: 0.5 -Nodes (2): Packsize, Steamworks +Cohesion: 0.4 +Nodes (2): IEnvironmentDisplayer, Style ### Community 691 - "Community 691" -Cohesion: 0.5 -Nodes (2): Animancer.Examples.FineControl, IInteractable +Cohesion: 0.4 +Nodes (2): SerializedDataParameter, UnityEditor.Rendering ### Community 692 - "Community 692" -Cohesion: 0.5 -Nodes (3): Animancer, DefaultFadeValueAttribute, DefaultValueAttribute +Cohesion: 0.4 +Nodes (2): CommandBufferPool, UnityEngine.Rendering ### Community 693 - "Community 693" -Cohesion: 0.5 -Nodes (2): Animancer.Editor, ScriptableObjectEditor +Cohesion: 0.4 +Nodes (4): Environment, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 694 - "Community 694" -Cohesion: 0.5 -Nodes (2): Animancer, IUpdatable +Cohesion: 0.4 +Nodes (4): Rendering, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 695 - "Community 695" -Cohesion: 0.67 -Nodes (2): Animancer, AnimancerTransitionAsset +Cohesion: 0.4 +Nodes (2): SerializedUniversalRenderPipelineAsset, UnityEditor.Rendering.Universal ### Community 696 - "Community 696" -Cohesion: 0.5 -Nodes (2): CanvasCoreExpand, IGraphExporter +Cohesion: 0.4 +Nodes (2): ComponentUtility, UnityEngine.Rendering.Universal ### Community 697 - "Community 697" -Cohesion: 0.67 -Nodes (2): IMigratable, ParadoxNotion.Serialization.FullSerializer +Cohesion: 0.4 +Nodes (2): IWriteOperation, UnityEditor.Build.Pipeline.Interfaces ### Community 698 - "Community 698" Cohesion: 0.5 -Nodes (3): BBMappingParameter, NodeCanvas.Framework.Internal, BBObjectParameter +Nodes (2): TextureSamplerState, UnityEditor.ShaderGraph ### Community 699 - "Community 699" -Cohesion: 0.5 -Nodes (3): MultipleChoiceRequestInfo, NodeCanvas.DialogueTrees, SubtitlesRequestInfo +Cohesion: 0.4 +Nodes (2): IHasCustomDeprecationMessage, UnityEditor.ShaderGraph ### Community 700 - "Community 700" -Cohesion: 0.67 -Nodes (3): IDialogueActor, NodeCanvas.DialogueTrees, ProxyDialogueActor +Cohesion: 0.4 +Nodes (2): IInspectable, UnityEditor.ShaderGraph.Drawing ### Community 701 - "Community 701" -Cohesion: 0.5 -Nodes (1): ViDelegateAssisstant +Cohesion: 0.4 +Nodes (2): IPropertyDrawer, UnityEditor.ShaderGraph.Drawing ### Community 702 - "Community 702" -Cohesion: 0.5 -Nodes (2): LobbyManager, TH1_Logic.Net +Cohesion: 0.4 +Nodes (2): StackPool, UnityEditor.Graphing ### Community 703 - "Community 703" Cohesion: 0.5 -Nodes (2): AnimCache, TH1Resource +Nodes (4): BlockFieldDescriptor, CustomSlotBlockFieldDescriptor, UnityEditor.ShaderGraph, FieldDescriptor ### Community 704 - "Community 704" -Cohesion: 0.5 -Nodes (2): ResourceCache, TH1Resource +Cohesion: 0.4 +Nodes (2): UnityEditor.ShaderGraph, VirtualTextureMaterialSlot ### Community 705 - "Community 705" -Cohesion: 0.5 -Nodes (3): IsExternalInit, MemoryPack, System.Runtime.CompilerServices +Cohesion: 0.4 +Nodes (3): CreateUnlitShaderGraph, UnityEditor.Rendering.BuiltIn.ShaderGraph, UnityEditor.Rendering.Universal.ShaderGraph ### Community 706 - "Community 706" -Cohesion: 0.5 -Nodes (2): AssemblyLoader, NugetForUnity.Helper +Cohesion: 0.4 +Nodes (3): MaterialAccess, UnityEditor.Rendering.BuiltIn.ShaderGraph, UnityEditor.Rendering.Universal ### Community 707 - "Community 707" -Cohesion: 0.67 -Nodes (3): Compare(), CompareTo(), NugetForUnity.Models +Cohesion: 0.4 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 708 - "Community 708" -Cohesion: 0.5 -Nodes (2): HomePageWindow, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): AssertHelpers, UnityEditor.ShaderGraph ### Community 709 - "Community 709" -Cohesion: 0.5 -Nodes (2): IBuildPipeline, YooAsset.Editor +Cohesion: 0.4 +Nodes (3): FasterThan500msAttribute, Tests_16s, IWrapTestMethod ### Community 710 - "Community 710" Cohesion: 0.5 -Nodes (2): IBuildTask, YooAsset.Editor +Nodes (2): TestRunnerWindowSettings, UnityEditor.TestTools.TestRunner ### Community 711 - "Community 711" -Cohesion: 0.5 -Nodes (2): IActiveRule, YooAsset.Editor +Cohesion: 0.4 +Nodes (3): CommandLineOption, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption ### Community 712 - "Community 712" -Cohesion: 0.5 -Nodes (2): IAddressRule, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): ISettingsBuilder, UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 713 - "Community 713" -Cohesion: 0.5 -Nodes (2): IFilterRule, YooAsset.Editor +Cohesion: 0.4 +Nodes (3): AssemblyWrapper, EditorAssemblyWrapper, UnityEditor.TestTools.TestRunner ### Community 714 - "Community 714" -Cohesion: 0.5 -Nodes (2): UIElementsTools, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): IEditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner ### Community 715 - "Community 715" -Cohesion: 0.5 -Nodes (2): IBuildinQueryServices, YooAsset +Cohesion: 0.4 +Nodes (2): ITestListCache, UnityEditor.TestTools.TestRunner ### Community 716 - "Community 716" -Cohesion: 0.5 -Nodes (2): IEncryptionServices, YooAsset +Cohesion: 0.4 +Nodes (3): IAsyncTestAssemblyBuilder, UnityEngine.TestTools.NUnitExtensions, ITestAssemblyBuilder ### Community 717 - "Community 717" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks, EnumerableAsyncExtensions +Cohesion: 0.4 +Nodes (3): TestMethodCommand, UnityEngine.TestTools, UnityTestMethodCommand ### Community 718 - "Community 718" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks, ExceptionExtensions +Cohesion: 0.4 +Nodes (3): CategoryFilter, CategoryFilterExtended, UnityEngine.TestRunner.NUnitExtensions.Filters ### Community 719 - "Community 719" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable +Cohesion: 0.4 +Nodes (2): IRemoteTestResultDataFactory, UnityEngine.TestRunner.TestLaunchers ### Community 720 - "Community 720" -Cohesion: 0.5 -Nodes (2): IOutlineGenerator, UnityEditor.U2D.Animation +Cohesion: 0.4 +Nodes (3): AssemblyLoadProxy, UnityEngine.TestTools.Utils, IAssemblyLoadProxy ### Community 721 - "Community 721" -Cohesion: 0.5 -Nodes (3): IBoneSelection, UnityEditor.U2D.Animation, ITransformSelection +Cohesion: 0.4 +Nodes (3): AssemblyWrapper, UnityEngine.TestTools.Utils, IAssemblyWrapper ### Community 722 - "Community 722" -Cohesion: 0.5 -Nodes (3): ControllerEvents, UnityEditor.U2D.Animation.SpriteLibraryEditor, ViewEvents +Cohesion: 0.4 +Nodes (2): TMP_ListPool, TMPro ### Community 723 - "Community 723" -Cohesion: 0.5 -Nodes (3): IAnimationPreviewable, IPreviewable, UnityEngine.U2D.Common +Cohesion: 0.4 +Nodes (3): SpriteDataObject, TexturePacker_JsonArray, TMPro.SpriteAssetUtilities ### Community 724 - "Community 724" -Cohesion: 0.5 -Nodes (2): Document, PDNWrapper +Cohesion: 0.4 +Nodes (1): UnityEditor.Timeline ### Community 725 - "Community 725" -Cohesion: 0.5 -Nodes (3): RawImageResource, PhotoshopFile, Thumbnail +Cohesion: 0.4 +Nodes (3): TimelineAssetEditionMode, UnityEditor.Timeline, TimelineInactiveMode ### Community 726 - "Community 726" -Cohesion: 0.5 -Nodes (3): MouseStyles, TilePaletteMouseCursorUtility, UnityEditor.Tilemaps +Cohesion: 0.4 +Nodes (3): TimelineAsset, TimelineAssetUpgrade, UnityEngine.Timeline ### Community 727 - "Community 727" -Cohesion: 0.5 -Nodes (2): ParentWindow, Unity.PlasticSCM.Editor +Cohesion: 0.4 +Nodes (2): PackageEventListener, Unity.VisualScripting ### Community 728 - "Community 728" -Cohesion: 0.5 -Nodes (2): ProjectWindow, Unity.PlasticSCM.Editor +Cohesion: 0.4 +Nodes (2): IReorderableListDropTarget, Unity.VisualScripting.ReorderableList ### Community 729 - "Community 729" -Cohesion: 0.5 -Nodes (2): BuildPathDictionary, Unity.PlasticSCM.Editor.AssetsOverlays.Cache +Cohesion: 0.4 +Nodes (2): IElementAdderMenuCommand, Unity.VisualScripting.ReorderableList.Element_Adder_Menu ### Community 730 - "Community 730" -Cohesion: 0.5 -Nodes (2): GenericProgress, Unity.PlasticSCM.Editor.Developer +Cohesion: 0.4 +Nodes (3): DropdownOption, Unity.VisualScripting, IDropdownOption ### Community 731 - "Community 731" -Cohesion: 0.5 -Nodes (2): IncomingChangesNotification, Unity.PlasticSCM.Editor.UI.StatusBar +Cohesion: 0.4 +Nodes (2): Plugin, Unity.VisualScripting ### Community 732 - "Community 732" -Cohesion: 0.5 -Nodes (2): CreateWorkspaceViewState, Unity.PlasticSCM.Editor.Views.CreateWorkspace +Cohesion: 0.4 +Nodes (2): EditorTypeUtility, Unity.VisualScripting ### Community 733 - "Community 733" -Cohesion: 0.5 -Nodes (2): ConflictResolutionState, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer.DirectoryConflicts +Cohesion: 0.4 +Nodes (2): ISidebarPanelContent, Unity.VisualScripting ### Community 734 - "Community 734" -Cohesion: 0.5 -Nodes (2): LaunchCheckinConflictsDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs +Cohesion: 0.4 +Nodes (3): NesterStateAnalyser, Unity.VisualScripting, StateAnalyser ### Community 735 - "Community 735" -Cohesion: 0.5 -Nodes (2): LaunchDependenciesDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs +Cohesion: 0.4 +Nodes (1): Unity.VisualScripting ### Community 736 - "Community 736" -Cohesion: 0.67 -Nodes (3): Allocate(), CheckAllocationDoesNotExceedCapacity(), Unity.Collections.LowLevel.Unsafe +Cohesion: 0.4 +Nodes (2): IPoolable, Unity.VisualScripting ### Community 737 - "Community 737" -Cohesion: 0.5 -Nodes (2): JetBrains.Rider.Unity.Editor, StartUpMethodExecutor +Cohesion: 0.4 +Nodes (1): Unity.VisualScripting ### Community 738 - "Community 738" -Cohesion: 0.5 -Nodes (2): IGUIDGenerator, Packages.Rider.Editor.ProjectGeneration +Cohesion: 0.4 +Nodes (2): IOptimizedInvoker, Unity.VisualScripting ### Community 739 - "Community 739" -Cohesion: 0.5 -Nodes (3): DoNotNormalizeAttribute, PostNormalizeAttribute, Unity.Mathematics +Cohesion: 0.4 +Nodes (2): IGizmoDrawer, Unity.VisualScripting ### Community 740 - "Community 740" -Cohesion: 0.5 -Nodes (2): ICoreRenderPipelinePreferencesProvider, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (3): AnalyticsIdentifier, IAnalyticsIdentifiable, Unity.VisualScripting ### Community 741 - "Community 741" -Cohesion: 0.5 -Nodes (3): CameraUI, Styles, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (3): IGraph, IGraphWithVariables, Unity.VisualScripting ### Community 742 - "Community 742" -Cohesion: 0.5 -Nodes (3): LightUI, Styles, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (0): ### Community 743 - "Community 743" Cohesion: 0.5 -Nodes (3): ProbeVolumeUI, Styles, UnityEditor.Rendering +Nodes (2): DiagnosticIds, ET.Analyzer ### Community 744 - "Community 744" Cohesion: 0.5 -Nodes (3): RenderPipelineGlobalSettingsUI, Styles, UnityEditor.Rendering +Nodes (2): DiagnosticCategories, ET.Analyzer ### Community 745 - "Community 745" Cohesion: 0.5 -Nodes (2): SwapCollectionExtensions, UnityEngine.Rendering +Nodes (2): Packsize, Steamworks ### Community 746 - "Community 746" Cohesion: 0.5 -Nodes (3): DebugManager, UIState, UnityEngine.Rendering +Nodes (2): Animancer.Examples.FineControl, IInteractable ### Community 747 - "Community 747" Cohesion: 0.5 -Nodes (2): IDebugDisplaySettingsQuery, UnityEngine.Rendering +Nodes (3): Animancer, DefaultFadeValueAttribute, DefaultValueAttribute ### Community 748 - "Community 748" Cohesion: 0.5 -Nodes (2): ICloudBackground, UnityEngine.Rendering +Nodes (2): Animancer.Editor, ScriptableObjectEditor ### Community 749 - "Community 749" Cohesion: 0.5 -Nodes (2): HaltonSequence, UnityEngine.Rendering +Nodes (2): Animancer, IUpdatable ### Community 750 - "Community 750" -Cohesion: 0.5 -Nodes (2): UnityEngine.Rendering, XRUtils +Cohesion: 0.67 +Nodes (2): Animancer, AnimancerTransitionAsset ### Community 751 - "Community 751" Cohesion: 0.5 -Nodes (1): EditorExampleTest +Nodes (2): CanvasCoreExpand, IGraphExporter ### Community 752 - "Community 752" -Cohesion: 0.5 -Nodes (1): RuntimeExampleTest +Cohesion: 0.67 +Nodes (2): IMigratable, ParadoxNotion.Serialization.FullSerializer ### Community 753 - "Community 753" Cohesion: 0.5 -Nodes (2): ConfigurationTest, UnityEngine.Rendering.Universal.Test +Nodes (3): BBMappingParameter, NodeCanvas.Framework.Internal, BBObjectParameter ### Community 754 - "Community 754" Cohesion: 0.5 -Nodes (3): PhysicalCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (3): MultipleChoiceRequestInfo, NodeCanvas.DialogueTrees, SubtitlesRequestInfo ### Community 755 - "Community 755" -Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.67 +Nodes (3): IDialogueActor, NodeCanvas.DialogueTrees, ProxyDialogueActor ### Community 756 - "Community 756" Cohesion: 0.5 -Nodes (2): BIRPToURPConversionExtensions, PropertyConversions +Nodes (1): ViDelegateAssisstant ### Community 757 - "Community 757" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineGlobalSettingsUI +Nodes (2): LobbyManager, TH1_Logic.Net ### Community 758 - "Community 758" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI +Nodes (2): AnimCache, TH1Resource ### Community 759 - "Community 759" Cohesion: 0.5 -Nodes (2): NewRendererFeatureDropdownItem, UnityEditor.Rendering.Universal +Nodes (2): ResourceCache, TH1Resource ### Community 760 - "Community 760" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineAssetUI +Nodes (3): IsExternalInit, MemoryPack, System.Runtime.CompilerServices ### Community 761 - "Community 761" Cohesion: 0.5 -Nodes (3): VFXSRPSubOutput, UnityEditor.VFX.URP, VFXURPSubOutput +Nodes (2): AssemblyLoader, NugetForUnity.Helper ### Community 762 - "Community 762" -Cohesion: 0.5 -Nodes (3): IShaderVariantSettings, UnityEngine.Rendering.Universal, UniversalRenderPipelineGlobalSettings +Cohesion: 0.67 +Nodes (3): Compare(), CompareTo(), NugetForUnity.Models ### Community 763 - "Community 763" Cohesion: 0.5 -Nodes (3): UnityEngine.Rendering.Universal, UniversalRenderPipelineVolumeDebugSettings, VolumeDebugSettings +Nodes (2): HomePageWindow, YooAsset.Editor ### Community 764 - "Community 764" Cohesion: 0.5 -Nodes (2): TileSizeExtensions, UnityEngine.Rendering.Universal +Nodes (2): IBuildPipeline, YooAsset.Editor ### Community 765 - "Community 765" Cohesion: 0.5 -Nodes (2): IBuildTask, UnityEditor.Build.Pipeline.Interfaces +Nodes (2): IBuildTask, YooAsset.Editor ### Community 766 - "Community 766" Cohesion: 0.5 -Nodes (3): BuildSpriteData, UnityEditor.Build.Pipeline, IBuildSpriteData +Nodes (2): IActiveRule, YooAsset.Editor ### Community 767 - "Community 767" Cohesion: 0.5 -Nodes (1): UnityEngine.Build.Pipeline +Nodes (2): IAddressRule, YooAsset.Editor ### Community 768 - "Community 768" Cohesion: 0.5 -Nodes (3): BuildCacheTestBase, LocalBuildCacheTests, UnityEditor.Build.Pipeline.Tests +Nodes (2): IFilterRule, YooAsset.Editor ### Community 769 - "Community 769" Cohesion: 0.5 -Nodes (3): SerializableVirtualTexture, SerializableVirtualTextureLayer, UnityEditor.ShaderGraph.Internal +Nodes (2): UIElementsTools, YooAsset.Editor ### Community 770 - "Community 770" Cohesion: 0.5 -Nodes (2): IHasDependencies, UnityEditor.ShaderGraph +Nodes (2): IBuildinQueryServices, YooAsset ### Community 771 - "Community 771" Cohesion: 0.5 -Nodes (2): IGeneratesBodyCode, UnityEditor.ShaderGraph +Nodes (2): IEncryptionServices, YooAsset ### Community 772 - "Community 772" Cohesion: 0.5 -Nodes (2): IGeneratesFunction, UnityEditor.ShaderGraph +Nodes (2): Cysharp.Threading.Tasks, EnumerableAsyncExtensions ### Community 773 - "Community 773" Cohesion: 0.5 -Nodes (2): IMayRequireTransform, UnityEditor.ShaderGraph +Nodes (2): Cysharp.Threading.Tasks, ExceptionExtensions ### Community 774 - "Community 774" Cohesion: 0.5 -Nodes (2): IOnAssetEnabled, UnityEditor.Graphing +Nodes (2): Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable ### Community 775 - "Community 775" Cohesion: 0.5 -Nodes (2): ILegacyTarget, UnityEditor.ShaderGraph.Legacy +Nodes (2): IOutlineGenerator, UnityEditor.U2D.Animation ### Community 776 - "Community 776" Cohesion: 0.5 -Nodes (2): IPropertyFromNode, UnityEditor.ShaderGraph +Nodes (3): IBoneSelection, UnityEditor.U2D.Animation, ITransformSelection ### Community 777 - "Community 777" Cohesion: 0.5 -Nodes (2): PropertyUtil, UnityEditor.ShaderGraph +Nodes (3): ControllerEvents, UnityEditor.U2D.Animation.SpriteLibraryEditor, ViewEvents ### Community 778 - "Community 778" Cohesion: 0.5 -Nodes (2): AbstractMaterialNodeModificationListener, UnityEditor.ShaderGraph.Drawing +Nodes (3): IAnimationPreviewable, IPreviewable, UnityEngine.U2D.Common ### Community 779 - "Community 779" Cohesion: 0.5 -Nodes (2): IControlAttribute, UnityEditor.ShaderGraph.Drawing.Controls +Nodes (2): Document, PDNWrapper ### Community 780 - "Community 780" Cohesion: 0.5 -Nodes (2): ISGViewModel, UnityEditor.ShaderGraph.Drawing +Nodes (3): RawImageResource, PhotoshopFile, Thumbnail ### Community 781 - "Community 781" Cohesion: 0.5 -Nodes (2): IShaderInputObserver, UnityEditor.ShaderGraph.Drawing +Nodes (3): MouseStyles, TilePaletteMouseCursorUtility, UnityEditor.Tilemaps ### Community 782 - "Community 782" Cohesion: 0.5 -Nodes (2): IHasMetadata, UnityEditor.ShaderGraph +Nodes (2): ParentWindow, Unity.PlasticSCM.Editor ### Community 783 - "Community 783" Cohesion: 0.5 -Nodes (2): InstancingOptionsExtensions, UnityEditor.ShaderGraph +Nodes (2): ProjectWindow, Unity.PlasticSCM.Editor ### Community 784 - "Community 784" Cohesion: 0.5 -Nodes (2): ShaderModelExtensions, UnityEditor.ShaderGraph +Nodes (2): BuildPathDictionary, Unity.PlasticSCM.Editor.AssetsOverlays.Cache ### Community 785 - "Community 785" Cohesion: 0.5 -Nodes (2): FakeJsonObject, UnityEditor.ShaderGraph.Serialization +Nodes (2): GenericProgress, Unity.PlasticSCM.Editor.Developer ### Community 786 - "Community 786" Cohesion: 0.5 -Nodes (3): IRequiredSetting, RequiredSettingBase, UnityEngine.Rendering +Nodes (2): IncomingChangesNotification, Unity.PlasticSCM.Editor.UI.StatusBar ### Community 787 - "Community 787" Cohesion: 0.5 -Nodes (3): PRSIRequiredSetting, PRSRequiredSettingBase, UnityEngine.Rendering +Nodes (2): CreateWorkspaceViewState, Unity.PlasticSCM.Editor.Views.CreateWorkspace ### Community 788 - "Community 788" Cohesion: 0.5 -Nodes (2): PlayModeTests_10s, SlowTests +Nodes (2): ConflictResolutionState, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer.DirectoryConflicts ### Community 789 - "Community 789" Cohesion: 0.5 -Nodes (2): ITestResultAdaptor, UnityEditor.TestTools.TestRunner.Api +Nodes (2): LaunchCheckinConflictsDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs ### Community 790 - "Community 790" Cohesion: 0.5 -Nodes (2): ResultSummarizer, UnityEditor.TestTools.TestRunner.GUI +Nodes (2): LaunchDependenciesDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs ### Community 791 - "Community 791" -Cohesion: 0.5 -Nodes (3): ISceneWrapper, SceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene +Cohesion: 0.67 +Nodes (3): Allocate(), CheckAllocationDoesNotExceedCapacity(), Unity.Collections.LowLevel.Unsafe ### Community 792 - "Community 792" Cohesion: 0.5 -Nodes (3): EditorAssembliesProxy, UnityEditor.TestTools.TestRunner, IEditorAssembliesProxy +Nodes (2): JetBrains.Rider.Unity.Editor, StartUpMethodExecutor ### Community 793 - "Community 793" Cohesion: 0.5 -Nodes (2): ITestListProvider, UnityEditor.TestTools.TestRunner +Nodes (2): IGUIDGenerator, Packages.Rider.Editor.ProjectGeneration ### Community 794 - "Community 794" Cohesion: 0.5 -Nodes (2): ITestSettingsDeserializer, UnityEditor.TestTools.TestRunner +Nodes (3): DoNotNormalizeAttribute, PostNormalizeAttribute, Unity.Mathematics ### Community 795 - "Community 795" Cohesion: 0.5 -Nodes (2): IUtpLogger, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): ICoreRenderPipelinePreferencesProvider, UnityEditor.Rendering ### Community 796 - "Community 796" Cohesion: 0.5 -Nodes (2): Is, UnityEngine.TestTools.Constraints +Nodes (3): CameraUI, Styles, UnityEditor.Rendering ### Community 797 - "Community 797" Cohesion: 0.5 -Nodes (2): ITestSuiteModifier, UnityEngine.TestRunner.NUnitExtensions +Nodes (3): LightUI, Styles, UnityEditor.Rendering ### Community 798 - "Community 798" Cohesion: 0.5 -Nodes (2): IEnumerableTestMethodCommand, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (3): ProbeVolumeUI, Styles, UnityEditor.Rendering ### Community 799 - "Community 799" Cohesion: 0.5 -Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory +Nodes (3): RenderPipelineGlobalSettingsUI, Styles, UnityEditor.Rendering ### Community 800 - "Community 800" Cohesion: 0.5 -Nodes (2): IPrebuildSetup, UnityEngine.TestTools +Nodes (2): SwapCollectionExtensions, UnityEngine.Rendering ### Community 801 - "Community 801" Cohesion: 0.5 -Nodes (2): IAssemblyLoadProxy, UnityEngine.TestTools.Utils +Nodes (3): DebugManager, UIState, UnityEngine.Rendering ### Community 802 - "Community 802" Cohesion: 0.5 -Nodes (2): IScriptingRuntimeProxy, UnityEngine.TestTools.Utils +Nodes (2): IDebugDisplaySettingsQuery, UnityEngine.Rendering ### Community 803 - "Community 803" Cohesion: 0.5 -Nodes (3): CustomYieldInstruction, MonoBehaviourTest, UnityEngine.TestTools +Nodes (2): ICloudBackground, UnityEngine.Rendering ### Community 804 - "Community 804" Cohesion: 0.5 -Nodes (2): TMP_ResourcesLoader, TMPro.EditorUtilities +Nodes (2): HaltonSequence, UnityEngine.Rendering ### Community 805 - "Community 805" Cohesion: 0.5 -Nodes (1): TMPro +Nodes (2): UnityEngine.Rendering, XRUtils ### Community 806 - "Community 806" Cohesion: 0.5 -Nodes (3): Glyph, TMP_SpriteGlyph, TMPro +Nodes (1): EditorExampleTest ### Community 807 - "Community 807" Cohesion: 0.5 -Nodes (2): BuiltInPresets, UnityEditor.Timeline +Nodes (1): RuntimeExampleTest ### Community 808 - "Community 808" Cohesion: 0.5 -Nodes (2): ICurvesOwnerInspectorWrapper, UnityEditor.Timeline +Nodes (2): ConfigurationTest, UnityEngine.Rendering.Universal.Test ### Community 809 - "Community 809" Cohesion: 0.5 -Nodes (1): UnityEditor.Timeline +Nodes (3): PhysicalCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 810 - "Community 810" Cohesion: 0.5 -Nodes (2): IRowGUI, UnityEditor.Timeline +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 811 - "Community 811" Cohesion: 0.5 -Nodes (1): UnityEditor.Timeline +Nodes (2): BIRPToURPConversionExtensions, PropertyConversions ### Community 812 - "Community 812" Cohesion: 0.5 -Nodes (2): ISnappable, UnityEditor.Timeline +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineGlobalSettingsUI ### Community 813 - "Community 813" -Cohesion: 0.67 -Nodes (3): CloseScope(), Dispose(), UnityEditor +Cohesion: 0.5 +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI ### Community 814 - "Community 814" Cohesion: 0.5 -Nodes (2): ILayerable, UnityEngine.Timeline +Nodes (2): NewRendererFeatureDropdownItem, UnityEditor.Rendering.Universal ### Community 815 - "Community 815" Cohesion: 0.5 -Nodes (2): IMarker, UnityEngine.Timeline +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineAssetUI ### Community 816 - "Community 816" Cohesion: 0.5 -Nodes (3): MarkerTrack, SignalTrack, UnityEngine.Timeline +Nodes (3): VFXSRPSubOutput, UnityEditor.VFX.URP, VFXURPSubOutput ### Community 817 - "Community 817" Cohesion: 0.5 -Nodes (2): IPropertyPreview, UnityEngine.Timeline +Nodes (3): IShaderVariantSettings, UnityEngine.Rendering.Universal, UniversalRenderPipelineGlobalSettings ### Community 818 - "Community 818" Cohesion: 0.5 -Nodes (1): UnityEngine.EventSystems +Nodes (3): UnityEngine.Rendering.Universal, UniversalRenderPipelineVolumeDebugSettings, VolumeDebugSettings ### Community 819 - "Community 819" Cohesion: 0.5 -Nodes (1): UnityEngine.UI +Nodes (2): TileSizeExtensions, UnityEngine.Rendering.Universal ### Community 820 - "Community 820" Cohesion: 0.5 -Nodes (2): IGraphicEnabledDisabled, UnityEngine.UI +Nodes (2): IBuildTask, UnityEditor.Build.Pipeline.Interfaces ### Community 821 - "Community 821" Cohesion: 0.5 -Nodes (2): IMask, UnityEngine.UI +Nodes (3): BuildSpriteData, UnityEditor.Build.Pipeline, IBuildSpriteData ### Community 822 - "Community 822" Cohesion: 0.5 -Nodes (2): IMaskable, UnityEngine.UI +Nodes (1): UnityEngine.Build.Pipeline ### Community 823 - "Community 823" Cohesion: 0.5 -Nodes (2): RectangularVertexClipper, UnityEngine.UI +Nodes (3): BuildCacheTestBase, LocalBuildCacheTests, UnityEditor.Build.Pipeline.Tests ### Community 824 - "Community 824" Cohesion: 0.5 -Nodes (3): GraphElementAnalysis, Unity.VisualScripting, IGraphElementAnalysis +Nodes (3): SerializableVirtualTexture, SerializableVirtualTextureLayer, UnityEditor.ShaderGraph.Internal ### Community 825 - "Community 825" Cohesion: 0.5 -Nodes (2): IAnalyser, Unity.VisualScripting +Nodes (2): IHasDependencies, UnityEditor.ShaderGraph ### Community 826 - "Community 826" Cohesion: 0.5 -Nodes (2): IAssigner, Unity.VisualScripting +Nodes (2): IGeneratesBodyCode, UnityEditor.ShaderGraph ### Community 827 - "Community 827" Cohesion: 0.5 -Nodes (2): IElementAdderMenu, Unity.VisualScripting.ReorderableList.Element_Adder_Menu +Nodes (2): IGeneratesFunction, UnityEditor.ShaderGraph ### Community 828 - "Community 828" Cohesion: 0.5 -Nodes (2): IDescriptor, Unity.VisualScripting +Nodes (2): IMayRequireTransform, UnityEditor.ShaderGraph ### Community 829 - "Community 829" Cohesion: 0.5 -Nodes (2): DraggedListItem, Unity.VisualScripting +Nodes (2): IOnAssetEnabled, UnityEditor.Graphing ### Community 830 - "Community 830" Cohesion: 0.5 -Nodes (3): DropdownOption, DropdownSeparator, Unity.VisualScripting +Nodes (2): ILegacyTarget, UnityEditor.ShaderGraph.Legacy ### Community 831 - "Community 831" Cohesion: 0.5 -Nodes (1): Unity.VisualScripting +Nodes (2): IPropertyFromNode, UnityEditor.ShaderGraph ### Community 832 - "Community 832" Cohesion: 0.5 -Nodes (2): AotStubWriter, Unity.VisualScripting +Nodes (2): PropertyUtil, UnityEditor.ShaderGraph ### Community 833 - "Community 833" Cohesion: 0.5 -Nodes (2): TypeExtensions, Unity.VisualScripting +Nodes (2): AbstractMaterialNodeModificationListener, UnityEditor.ShaderGraph.Drawing ### Community 834 - "Community 834" Cohesion: 0.5 -Nodes (2): EditorTimeUtility, Unity.VisualScripting +Nodes (2): IControlAttribute, UnityEditor.ShaderGraph.Drawing.Controls ### Community 835 - "Community 835" Cohesion: 0.5 -Nodes (3): AboutPluginsPage, Unity.VisualScripting, ListPage +Nodes (2): ISGViewModel, UnityEditor.ShaderGraph.Drawing ### Community 836 - "Community 836" Cohesion: 0.5 -Nodes (2): Unity.VisualScripting, XUnitOptionProvider +Nodes (2): IShaderInputObserver, UnityEditor.ShaderGraph.Drawing ### Community 837 - "Community 837" Cohesion: 0.5 -Nodes (3): FlowStateTransitionEditor, Unity.VisualScripting, NesterStateTransitionEditor +Nodes (2): IHasMetadata, UnityEditor.ShaderGraph ### Community 838 - "Community 838" Cohesion: 0.5 -Nodes (3): fsConfig, fsGlobalConfig, Unity.VisualScripting.FullSerializer +Nodes (2): InstancingOptionsExtensions, UnityEditor.ShaderGraph ### Community 839 - "Community 839" Cohesion: 0.5 -Nodes (2): EnsureThat, Unity.VisualScripting +Nodes (2): ShaderModelExtensions, UnityEditor.ShaderGraph ### Community 840 - "Community 840" Cohesion: 0.5 -Nodes (1): Unity.VisualScripting +Nodes (2): FakeJsonObject, UnityEditor.ShaderGraph.Serialization ### Community 841 - "Community 841" Cohesion: 0.5 -Nodes (2): DebugUtility, Unity.VisualScripting +Nodes (3): IRequiredSetting, RequiredSettingBase, UnityEngine.Rendering ### Community 842 - "Community 842" Cohesion: 0.5 -Nodes (2): IGraphParent, Unity.VisualScripting +Nodes (3): PRSIRequiredSetting, PRSRequiredSettingBase, UnityEngine.Rendering ### Community 843 - "Community 843" Cohesion: 0.5 -Nodes (2): IAotStubbable, Unity.VisualScripting +Nodes (2): PlayModeTests_10s, SlowTests ### Community 844 - "Community 844" Cohesion: 0.5 -Nodes (2): IPrewarmable, Unity.VisualScripting +Nodes (2): ITestResultAdaptor, UnityEditor.TestTools.TestRunner.Api ### Community 845 - "Community 845" Cohesion: 0.5 -Nodes (3): fsObjectAttribute, SerializationVersionAttribute, Unity.VisualScripting +Nodes (2): ResultSummarizer, UnityEditor.TestTools.TestRunner.GUI ### Community 846 - "Community 846" Cohesion: 0.5 -Nodes (3): fsPropertyAttribute, SerializeAsAttribute, Unity.VisualScripting +Nodes (3): ISceneWrapper, SceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene ### Community 847 - "Community 847" Cohesion: 0.5 -Nodes (2): ExceptionUtility, Unity.VisualScripting +Nodes (3): EditorAssembliesProxy, UnityEditor.TestTools.TestRunner, IEditorAssembliesProxy ### Community 848 - "Community 848" Cohesion: 0.5 -Nodes (2): IInitializable, Unity.VisualScripting +Nodes (2): ITestListProvider, UnityEditor.TestTools.TestRunner ### Community 849 - "Community 849" Cohesion: 0.5 -Nodes (3): IUnitConnectionDebugData, UnitConnectionDebugData, Unity.VisualScripting +Nodes (2): ITestSettingsDeserializer, UnityEditor.TestTools.TestRunner ### Community 850 - "Community 850" Cohesion: 0.5 -Nodes (3): IUnitRelation, UnitRelation, Unity.VisualScripting +Nodes (2): IUtpLogger, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 851 - "Community 851" Cohesion: 0.5 -Nodes (3): ApplicationException, EvaluationException, Unity.VisualScripting.Dependencies.NCalc +Nodes (2): Is, UnityEngine.TestTools.Constraints ### Community 852 - "Community 852" Cohesion: 0.5 -Nodes (2): LogicalExpressionVisitor, Unity.VisualScripting.Dependencies.NCalc +Nodes (2): ITestSuiteModifier, UnityEngine.TestRunner.NUnitExtensions ### Community 853 - "Community 853" Cohesion: 0.5 -Nodes (3): GLApplication, -sendEvent, -windowWillClose +Nodes (2): IEnumerableTestMethodCommand, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 854 - "Community 854" -Cohesion: 0.67 -Nodes (2): PropertyAttribute, Unity.Mathematics.UnityEngine +Cohesion: 0.5 +Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory ### Community 855 - "Community 855" -Cohesion: 0.67 -Nodes (2): AnalyzerGlobalSetting, ET.Analyzer +Cohesion: 0.5 +Nodes (2): IPrebuildSetup, UnityEngine.TestTools ### Community 856 - "Community 856" -Cohesion: 0.67 -Nodes (2): AnalyzeAssembly, ET.Analyzer +Cohesion: 0.5 +Nodes (2): IAssemblyLoadProxy, UnityEngine.TestTools.Utils ### Community 857 - "Community 857" -Cohesion: 0.67 -Nodes (2): Definition, ET.Analyzer +Cohesion: 0.5 +Nodes (2): IScriptingRuntimeProxy, UnityEngine.TestTools.Utils ### Community 858 - "Community 858" -Cohesion: 0.67 -Nodes (2): Steamworks, Version +Cohesion: 0.5 +Nodes (3): CustomYieldInstruction, MonoBehaviourTest, UnityEngine.TestTools ### Community 859 - "Community 859" -Cohesion: 0.67 -Nodes (2): Constants, Steamworks +Cohesion: 0.5 +Nodes (2): TMP_ResourcesLoader, TMPro.EditorUtilities ### Community 860 - "Community 860" -Cohesion: 0.67 -Nodes (1): Steamworks +Cohesion: 0.5 +Nodes (1): TMPro ### Community 861 - "Community 861" -Cohesion: 0.67 -Nodes (1): Steamworks +Cohesion: 0.5 +Nodes (3): Glyph, TMP_SpriteGlyph, TMPro ### Community 862 - "Community 862" -Cohesion: 0.67 -Nodes (2): DoNotRenameAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): BuiltInPresets, UnityEditor.Timeline ### Community 863 - "Community 863" -Cohesion: 0.67 -Nodes (2): NotObfuscatedCauseAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): ICurvesOwnerInspectorWrapper, UnityEditor.Timeline ### Community 864 - "Community 864" -Cohesion: 0.67 -Nodes (2): ObfuscateAnywayAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (1): UnityEditor.Timeline ### Community 865 - "Community 865" -Cohesion: 0.67 -Nodes (2): DoNotObfuscateClassAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): IRowGUI, UnityEditor.Timeline ### Community 866 - "Community 866" -Cohesion: 0.67 -Nodes (2): DoNotUseClassForFakeCodeAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (1): UnityEditor.Timeline ### Community 867 - "Community 867" -Cohesion: 0.67 -Nodes (2): DoNotObfuscateMethodBodyAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): ISnappable, UnityEditor.Timeline ### Community 868 - "Community 868" Cohesion: 0.67 -Nodes (2): Animancer.Examples.Events, EventUtilities +Nodes (3): CloseScope(), Dispose(), UnityEditor ### Community 869 - "Community 869" -Cohesion: 0.67 -Nodes (2): Animancer.Examples.AnimatorControllers, Animations +Cohesion: 0.5 +Nodes (2): ILayerable, UnityEngine.Timeline ### Community 870 - "Community 870" -Cohesion: 0.67 -Nodes (2): Animancer, IHasKey +Cohesion: 0.5 +Nodes (2): IMarker, UnityEngine.Timeline ### Community 871 - "Community 871" -Cohesion: 0.67 -Nodes (0): +Cohesion: 0.5 +Nodes (3): MarkerTrack, SignalTrack, UnityEngine.Timeline ### Community 872 - "Community 872" -Cohesion: 0.67 -Nodes (2): CanvasCoreExpand, ExpandGraphEditor +Cohesion: 0.5 +Nodes (2): IPropertyPreview, UnityEngine.Timeline ### Community 873 - "Community 873" -Cohesion: 0.67 -Nodes (2): IEventData, ParadoxNotion +Cohesion: 0.5 +Nodes (1): UnityEngine.EventSystems ### Community 874 - "Community 874" -Cohesion: 0.67 -Nodes (2): IMissingRecoverable, ParadoxNotion.Serialization +Cohesion: 0.5 +Nodes (1): UnityEngine.UI ### Community 875 - "Community 875" -Cohesion: 0.67 -Nodes (2): ParadoxNotion.Serialization, SerializationPair +Cohesion: 0.5 +Nodes (2): IGraphicEnabledDisabled, UnityEngine.UI ### Community 876 - "Community 876" -Cohesion: 0.67 -Nodes (2): fsGlobalConfig, ParadoxNotion.Serialization.FullSerializer +Cohesion: 0.5 +Nodes (2): IMask, UnityEngine.UI ### Community 877 - "Community 877" -Cohesion: 0.67 -Nodes (2): LogTag, NodeCanvas.Framework +Cohesion: 0.5 +Nodes (2): IMaskable, UnityEngine.UI ### Community 878 - "Community 878" -Cohesion: 0.67 -Nodes (2): NodeCanvas.Framework, VariableSeperator +Cohesion: 0.5 +Nodes (2): RectangularVertexClipper, UnityEngine.UI ### Community 879 - "Community 879" -Cohesion: 0.67 -Nodes (2): AnimPhase, TH1_Anim.Fragments +Cohesion: 0.5 +Nodes (3): GraphElementAnalysis, Unity.VisualScripting, IGraphElementAnalysis ### Community 880 - "Community 880" -Cohesion: 0.67 -Nodes (2): FragmentStep, TH1_Anim.Fragments +Cohesion: 0.5 +Nodes (2): IAnalyser, Unity.VisualScripting ### Community 881 - "Community 881" -Cohesion: 0.67 -Nodes (2): ICityLogic, Logic +Cohesion: 0.5 +Nodes (2): IAssigner, Unity.VisualScripting ### Community 882 - "Community 882" -Cohesion: 0.67 -Nodes (2): MatchLevelData, TH1_Logic.MatchConfig +Cohesion: 0.5 +Nodes (2): IElementAdderMenu, Unity.VisualScripting.ReorderableList.Element_Adder_Menu ### Community 883 - "Community 883" -Cohesion: 0.67 -Nodes (2): MemberInfo, TH1_Logic.Net +Cohesion: 0.5 +Nodes (2): IDescriptor, Unity.VisualScripting ### Community 884 - "Community 884" -Cohesion: 0.67 -Nodes (2): OssData, TH1_Logic.Oss +Cohesion: 0.5 +Nodes (2): DraggedListItem, Unity.VisualScripting ### Community 885 - "Community 885" -Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillOwner +Cohesion: 0.5 +Nodes (3): DropdownOption, DropdownSeparator, Unity.VisualScripting ### Community 886 - "Community 886" -Cohesion: 0.67 -Nodes (2): AllYCounterSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): Unity.VisualScripting ### Community 887 - "Community 887" -Cohesion: 0.67 -Nodes (2): AllYTranSportSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): AotStubWriter, Unity.VisualScripting ### Community 888 - "Community 888" -Cohesion: 0.67 -Nodes (2): AssaultFortressSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): TypeExtensions, Unity.VisualScripting ### Community 889 - "Community 889" -Cohesion: 0.67 -Nodes (2): AttackAfterKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): EditorTimeUtility, Unity.VisualScripting ### Community 890 - "Community 890" -Cohesion: 0.67 -Nodes (2): AttackGetAttackPointSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): AboutPluginsPage, Unity.VisualScripting, ListPage ### Community 891 - "Community 891" -Cohesion: 0.67 -Nodes (2): AttackRangeUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): Unity.VisualScripting, XUnitOptionProvider ### Community 892 - "Community 892" -Cohesion: 0.67 -Nodes (2): AttackUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): FlowStateTransitionEditor, Unity.VisualScripting, NesterStateTransitionEditor ### Community 893 - "Community 893" -Cohesion: 0.67 -Nodes (2): AutoHealSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): fsConfig, fsGlobalConfig, Unity.VisualScripting.FullSerializer ### Community 894 - "Community 894" -Cohesion: 0.67 -Nodes (2): AyaBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): EnsureThat, Unity.VisualScripting ### Community 895 - "Community 895" -Cohesion: 0.67 -Nodes (2): AyaDamageDebuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): Unity.VisualScripting ### Community 896 - "Community 896" -Cohesion: 0.67 -Nodes (2): AyaMoveAgainBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): DebugUtility, Unity.VisualScripting ### Community 897 - "Community 897" -Cohesion: 0.67 -Nodes (2): AyaMoveAgainSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IGraphParent, Unity.VisualScripting ### Community 898 - "Community 898" -Cohesion: 0.67 -Nodes (2): BambooMoveSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IAotStubbable, Unity.VisualScripting ### Community 899 - "Community 899" -Cohesion: 0.67 -Nodes (2): BoneAttackUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IPrewarmable, Unity.VisualScripting ### Community 900 - "Community 900" -Cohesion: 0.67 -Nodes (2): BonePileSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): fsObjectAttribute, SerializationVersionAttribute, Unity.VisualScripting ### Community 901 - "Community 901" -Cohesion: 0.67 -Nodes (2): BoneSacrificeSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): fsPropertyAttribute, SerializeAsAttribute, Unity.VisualScripting ### Community 902 - "Community 902" -Cohesion: 0.67 -Nodes (2): CanHideSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ExceptionUtility, Unity.VisualScripting ### Community 903 - "Community 903" -Cohesion: 0.67 -Nodes (2): CantMoveSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IInitializable, Unity.VisualScripting ### Community 904 - "Community 904" -Cohesion: 0.67 -Nodes (2): CarrySkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): IUnitConnectionDebugData, UnitConnectionDebugData, Unity.VisualScripting ### Community 905 - "Community 905" -Cohesion: 0.67 -Nodes (2): CatCartSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): IUnitRelation, UnitRelation, Unity.VisualScripting ### Community 906 - "Community 906" -Cohesion: 0.67 -Nodes (2): CityStolenSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): ApplicationException, EvaluationException, Unity.VisualScripting.Dependencies.NCalc ### Community 907 - "Community 907" -Cohesion: 0.67 -Nodes (2): CityTransportSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): LogicalExpressionVisitor, Unity.VisualScripting.Dependencies.NCalc ### Community 908 - "Community 908" -Cohesion: 0.67 -Nodes (2): ConvertSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): GLApplication, -sendEvent, -windowWillClose ### Community 909 - "Community 909" Cohesion: 0.67 -Nodes (2): CorpseBuffSkill, Logic.Skill +Nodes (2): PropertyAttribute, Unity.Mathematics.UnityEngine ### Community 910 - "Community 910" Cohesion: 0.67 -Nodes (2): CreepSkill, Logic.Skill +Nodes (2): AnalyzerGlobalSetting, ET.Analyzer ### Community 911 - "Community 911" Cohesion: 0.67 -Nodes (2): CriticalSkill, Logic.Skill +Nodes (2): AnalyzeAssembly, ET.Analyzer ### Community 912 - "Community 912" Cohesion: 0.67 -Nodes (2): CurseGodSkill, Logic.Skill +Nodes (2): Definition, ET.Analyzer ### Community 913 - "Community 913" Cohesion: 0.67 -Nodes (2): DashSkill, Logic.Skill +Nodes (2): Steamworks, Version ### Community 914 - "Community 914" Cohesion: 0.67 -Nodes (2): DieBonePileSkill, Logic.Skill +Nodes (2): Constants, Steamworks ### Community 915 - "Community 915" Cohesion: 0.67 -Nodes (2): DuoSkill, Logic.Skill +Nodes (1): Steamworks ### Community 916 - "Community 916" Cohesion: 0.67 -Nodes (2): EirinFrenchAttackSkill, Logic.Skill +Nodes (1): Steamworks ### Community 917 - "Community 917" Cohesion: 0.67 -Nodes (2): EirinFrenchBuffSkill, Logic.Skill +Nodes (2): DoNotRenameAttribute, OPS.Obfuscator.Attribute ### Community 918 - "Community 918" Cohesion: 0.67 -Nodes (2): EirinFrenchKillSkill, Logic.Skill +Nodes (2): NotObfuscatedCauseAttribute, OPS.Obfuscator.Attribute ### Community 919 - "Community 919" Cohesion: 0.67 -Nodes (2): EirinFrenchOverHealSkill, Logic.Skill +Nodes (2): ObfuscateAnywayAttribute, OPS.Obfuscator.Attribute ### Community 920 - "Community 920" Cohesion: 0.67 -Nodes (2): EirinFrenchSuperAttackSkill, Logic.Skill +Nodes (2): DoNotObfuscateClassAttribute, OPS.Obfuscator.Attribute ### Community 921 - "Community 921" Cohesion: 0.67 -Nodes (2): EscapeProSkill, Logic.Skill +Nodes (2): DoNotUseClassForFakeCodeAttribute, OPS.Obfuscator.Attribute ### Community 922 - "Community 922" Cohesion: 0.67 -Nodes (2): EscapeSkill, Logic.Skill +Nodes (2): DoNotObfuscateMethodBodyAttribute, OPS.Obfuscator.Attribute ### Community 923 - "Community 923" Cohesion: 0.67 -Nodes (2): EternitySkill, Logic.Skill +Nodes (2): Animancer.Examples.Events, EventUtilities ### Community 924 - "Community 924" Cohesion: 0.67 -Nodes (2): FearMakerSkill, Logic.Skill +Nodes (2): Animancer.Examples.AnimatorControllers, Animations ### Community 925 - "Community 925" Cohesion: 0.67 -Nodes (2): FlandreAttackSkill, Logic.Skill +Nodes (2): Animancer, IHasKey ### Community 926 - "Community 926" Cohesion: 0.67 -Nodes (2): FlandreBuffSkill, Logic.Skill +Nodes (0): ### Community 927 - "Community 927" Cohesion: 0.67 -Nodes (2): FlandreKillSkill, Logic.Skill +Nodes (2): CanvasCoreExpand, ExpandGraphEditor ### Community 928 - "Community 928" Cohesion: 0.67 -Nodes (2): FlySkill, Logic.Skill +Nodes (2): IEventData, ParadoxNotion ### Community 929 - "Community 929" Cohesion: 0.67 -Nodes (2): ForestDefenseSkill, Logic.Skill +Nodes (2): IMissingRecoverable, ParadoxNotion.Serialization ### Community 930 - "Community 930" Cohesion: 0.67 -Nodes (2): ForestStartDashSkill, Logic.Skill +Nodes (2): ParadoxNotion.Serialization, SerializationPair ### Community 931 - "Community 931" Cohesion: 0.67 -Nodes (2): FortifySkill, Logic.Skill +Nodes (2): fsGlobalConfig, ParadoxNotion.Serialization.FullSerializer ### Community 932 - "Community 932" Cohesion: 0.67 -Nodes (2): GalaxyArrowSkill, Logic.Skill +Nodes (2): LogTag, NodeCanvas.Framework ### Community 933 - "Community 933" Cohesion: 0.67 -Nodes (2): GridMomijiPerySkill, Logic.Skill +Nodes (2): NodeCanvas.Framework, VariableSeperator ### Community 934 - "Community 934" Cohesion: 0.67 -Nodes (2): GridMountainSkill, Logic.Skill +Nodes (2): AnimPhase, TH1_Anim.Fragments ### Community 935 - "Community 935" Cohesion: 0.67 -Nodes (2): GridRadiationSkill, Logic.Skill +Nodes (2): FragmentStep, TH1_Anim.Fragments ### Community 936 - "Community 936" Cohesion: 0.67 -Nodes (2): GridSanaeNineContinueDamageSkill, Logic.Skill +Nodes (2): ICityLogic, Logic ### Community 937 - "Community 937" Cohesion: 0.67 -Nodes (2): HealSkill, Logic.Skill +Nodes (2): MatchLevelData, TH1_Logic.MatchConfig ### Community 938 - "Community 938" Cohesion: 0.67 -Nodes (2): HideStateSkill, Logic.Skill +Nodes (2): MemberInfo, TH1_Logic.Net ### Community 939 - "Community 939" Cohesion: 0.67 -Nodes (2): HouraisanFrenchFakeMoonSkill, Logic.Skill +Nodes (2): OssData, TH1_Logic.Oss ### Community 940 - "Community 940" Cohesion: 0.67 -Nodes (2): HouraisanFrenchWolfMoonSkill, Logic.Skill +Nodes (2): Logic.Skill, SkillOwner ### Community 941 - "Community 941" Cohesion: 0.67 -Nodes (2): HouraisanFrenchWolfStartSkill, Logic.Skill +Nodes (2): AllYCounterSkill, Logic.Skill ### Community 942 - "Community 942" Cohesion: 0.67 -Nodes (2): IllusionSkill, Logic.Skill +Nodes (2): AllYTranSportSkill, Logic.Skill ### Community 943 - "Community 943" Cohesion: 0.67 -Nodes (2): InfiltrateSkill, Logic.Skill +Nodes (2): AssaultFortressSkill, Logic.Skill ### Community 944 - "Community 944" Cohesion: 0.67 -Nodes (2): JunkerOfficerSkill, Logic.Skill +Nodes (2): AttackAfterKillSkill, Logic.Skill ### Community 945 - "Community 945" Cohesion: 0.67 -Nodes (2): KaguyaFrenchAroundSkill, Logic.Skill +Nodes (2): AttackGetAttackPointSkill, Logic.Skill ### Community 946 - "Community 946" Cohesion: 0.67 -Nodes (2): KaguyaFrenchAttackProSkill, Logic.Skill +Nodes (2): AttackRangeUpSkill, Logic.Skill ### Community 947 - "Community 947" Cohesion: 0.67 -Nodes (2): KaguyaFrenchAttackSkill, Logic.Skill +Nodes (2): AttackUpSkill, Logic.Skill ### Community 948 - "Community 948" Cohesion: 0.67 -Nodes (2): KaguyaFrenchCrescentMoonSkill, Logic.Skill +Nodes (2): AutoHealSkill, Logic.Skill ### Community 949 - "Community 949" Cohesion: 0.67 -Nodes (2): KaguyaFrenchForeverBuffSkill, Logic.Skill +Nodes (2): AyaBuffSkill, Logic.Skill ### Community 950 - "Community 950" Cohesion: 0.67 -Nodes (2): KaguyaFrenchNapoleonicCodeSkill, Logic.Skill +Nodes (2): AyaDamageDebuffSkill, Logic.Skill ### Community 951 - "Community 951" Cohesion: 0.67 -Nodes (2): KaguyaFrenchNewMoonSkill, Logic.Skill +Nodes (2): AyaMoveAgainBuffSkill, Logic.Skill ### Community 952 - "Community 952" Cohesion: 0.67 -Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill +Nodes (2): AyaMoveAgainSkill, Logic.Skill ### Community 953 - "Community 953" Cohesion: 0.67 -Nodes (2): KaguyaFrenchSynergySkill, Logic.Skill +Nodes (2): BambooMoveSkill, Logic.Skill ### Community 954 - "Community 954" Cohesion: 0.67 -Nodes (2): KanakoBattlefieldProSkill, Logic.Skill +Nodes (2): BoneAttackUpSkill, Logic.Skill ### Community 955 - "Community 955" Cohesion: 0.67 -Nodes (2): KanakoBattlefieldSkill, Logic.Skill +Nodes (2): BonePileSkill, Logic.Skill ### Community 956 - "Community 956" Cohesion: 0.67 -Nodes (2): KanakoMountainAttackSkill, Logic.Skill +Nodes (2): BoneSacrificeSkill, Logic.Skill ### Community 957 - "Community 957" Cohesion: 0.67 -Nodes (2): KanakoMountainBuffSkill, Logic.Skill +Nodes (2): CanHideSkill, Logic.Skill ### Community 958 - "Community 958" Cohesion: 0.67 -Nodes (2): KanakoMountainSkill, Logic.Skill +Nodes (2): CantMoveSkill, Logic.Skill ### Community 959 - "Community 959" Cohesion: 0.67 -Nodes (2): KanakoSittingSkill, Logic.Skill +Nodes (2): CarrySkill, Logic.Skill ### Community 960 - "Community 960" Cohesion: 0.67 -Nodes (2): KanakoTechSkill, Logic.Skill +Nodes (2): CatCartSkill, Logic.Skill ### Community 961 - "Community 961" Cohesion: 0.67 -Nodes (2): KanakoWarProSkill, Logic.Skill +Nodes (2): CityStolenSkill, Logic.Skill ### Community 962 - "Community 962" Cohesion: 0.67 -Nodes (2): KanakoWarSkill, Logic.Skill +Nodes (2): CityTransportSkill, Logic.Skill ### Community 963 - "Community 963" Cohesion: 0.67 -Nodes (2): KanakoWindProSkill, Logic.Skill +Nodes (2): ConvertSkill, Logic.Skill ### Community 964 - "Community 964" Cohesion: 0.67 -Nodes (2): KanakoWindSkill, Logic.Skill +Nodes (2): CorpseBuffSkill, Logic.Skill ### Community 965 - "Community 965" Cohesion: 0.67 -Nodes (2): KingCoinSkill, Logic.Skill +Nodes (2): CreepSkill, Logic.Skill ### Community 966 - "Community 966" Cohesion: 0.67 -Nodes (2): KoakumaDevotionSkill, Logic.Skill +Nodes (2): CriticalSkill, Logic.Skill ### Community 967 - "Community 967" Cohesion: 0.67 -Nodes (2): KoakumaHeroSkill, Logic.Skill +Nodes (2): CurseGodSkill, Logic.Skill ### Community 968 - "Community 968" Cohesion: 0.67 -Nodes (2): KoishiAutoMoveSkill, Logic.Skill +Nodes (2): DashSkill, Logic.Skill ### Community 969 - "Community 969" Cohesion: 0.67 -Nodes (2): KoishiAutoSkill, Logic.Skill +Nodes (2): DieBonePileSkill, Logic.Skill ### Community 970 - "Community 970" Cohesion: 0.67 -Nodes (2): KoishiDeathFearSkill, Logic.Skill +Nodes (2): DuoSkill, Logic.Skill ### Community 971 - "Community 971" Cohesion: 0.67 -Nodes (2): KoishiRespawnSkill, Logic.Skill +Nodes (2): EirinFrenchAttackSkill, Logic.Skill ### Community 972 - "Community 972" Cohesion: 0.67 -Nodes (2): KoishiUndeadSkill, Logic.Skill +Nodes (2): EirinFrenchBuffSkill, Logic.Skill ### Community 973 - "Community 973" Cohesion: 0.67 -Nodes (2): KomeijiFearImmuneSkill, Logic.Skill +Nodes (2): EirinFrenchKillSkill, Logic.Skill ### Community 974 - "Community 974" Cohesion: 0.67 -Nodes (2): KomeijiFearSkill, Logic.Skill +Nodes (2): EirinFrenchOverHealSkill, Logic.Skill ### Community 975 - "Community 975" Cohesion: 0.67 -Nodes (2): KomeijiFearSplashSkill, Logic.Skill +Nodes (2): EirinFrenchSuperAttackSkill, Logic.Skill ### Community 976 - "Community 976" Cohesion: 0.67 -Nodes (2): KomeijiKnightAddSkill, Logic.Skill +Nodes (2): EscapeProSkill, Logic.Skill ### Community 977 - "Community 977" Cohesion: 0.67 -Nodes (2): KomeijiKnightKillSkill, Logic.Skill +Nodes (2): EscapeSkill, Logic.Skill ### Community 978 - "Community 978" Cohesion: 0.67 -Nodes (2): KomeijiRiderAddSkill, Logic.Skill +Nodes (2): EternitySkill, Logic.Skill ### Community 979 - "Community 979" Cohesion: 0.67 -Nodes (2): KomeijiRiderKillSkill, Logic.Skill +Nodes (2): FearMakerSkill, Logic.Skill ### Community 980 - "Community 980" Cohesion: 0.67 -Nodes (2): KomeijiRiderTransSkill, Logic.Skill +Nodes (2): FlandreAttackSkill, Logic.Skill ### Community 981 - "Community 981" Cohesion: 0.67 -Nodes (2): LaevatainPreySkill, Logic.Skill +Nodes (2): FlandreBuffSkill, Logic.Skill ### Community 982 - "Community 982" Cohesion: 0.67 -Nodes (2): LaevatainSkill, Logic.Skill +Nodes (2): FlandreKillSkill, Logic.Skill ### Community 983 - "Community 983" Cohesion: 0.67 -Nodes (2): LandAndWaterSkill, Logic.Skill +Nodes (2): FlySkill, Logic.Skill ### Community 984 - "Community 984" Cohesion: 0.67 -Nodes (2): LandOnlySkill, Logic.Skill +Nodes (2): ForestDefenseSkill, Logic.Skill ### Community 985 - "Community 985" Cohesion: 0.67 -Nodes (2): Logic.Skill, LuckSkill +Nodes (2): ForestStartDashSkill, Logic.Skill ### Community 986 - "Community 986" Cohesion: 0.67 -Nodes (2): Logic.Skill, MahaCorpseBuffSkill +Nodes (2): FortifySkill, Logic.Skill ### Community 987 - "Community 987" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingAttackUpSkill +Nodes (2): GalaxyArrowSkill, Logic.Skill ### Community 988 - "Community 988" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingCounterSkill +Nodes (2): GridMomijiPerySkill, Logic.Skill ### Community 989 - "Community 989" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingDuelSkill +Nodes (2): GridMountainSkill, Logic.Skill ### Community 990 - "Community 990" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingRestSkill +Nodes (2): GridRadiationSkill, Logic.Skill ### Community 991 - "Community 991" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchBoomSkill +Nodes (2): GridSanaeNineContinueDamageSkill, Logic.Skill ### Community 992 - "Community 992" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchEggSkill +Nodes (2): HealSkill, Logic.Skill ### Community 993 - "Community 993" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchEnhanceSkill +Nodes (2): HideStateSkill, Logic.Skill ### Community 994 - "Community 994" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchReviveSkill +Nodes (2): HouraisanFrenchFakeMoonSkill, Logic.Skill ### Community 995 - "Community 995" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiBuffSkill +Nodes (2): HouraisanFrenchWolfMoonSkill, Logic.Skill ### Community 996 - "Community 996" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHunterAttackSkill +Nodes (2): HouraisanFrenchWolfStartSkill, Logic.Skill ### Community 997 - "Community 997" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHunterSkill +Nodes (2): IllusionSkill, Logic.Skill ### Community 998 - "Community 998" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHuntSkill +Nodes (2): InfiltrateSkill, Logic.Skill ### Community 999 - "Community 999" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiKillSkill +Nodes (2): JunkerOfficerSkill, Logic.Skill ### Community 1000 - "Community 1000" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiPreySkill +Nodes (2): KaguyaFrenchAroundSkill, Logic.Skill ### Community 1001 - "Community 1001" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiSightSkill +Nodes (2): KaguyaFrenchAttackProSkill, Logic.Skill ### Community 1002 - "Community 1002" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoonPrincessSkill +Nodes (2): KaguyaFrenchAttackSkill, Logic.Skill ### Community 1003 - "Community 1003" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaBuffSkill +Nodes (2): KaguyaFrenchCrescentMoonSkill, Logic.Skill ### Community 1004 - "Community 1004" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaKnightMoveSkill +Nodes (2): KaguyaFrenchForeverBuffSkill, Logic.Skill ### Community 1005 - "Community 1005" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaRoadSkill +Nodes (2): KaguyaFrenchNapoleonicCodeSkill, Logic.Skill ### Community 1006 - "Community 1006" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainDefenseSkill +Nodes (2): KaguyaFrenchNewMoonSkill, Logic.Skill ### Community 1007 - "Community 1007" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainGodSkill +Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill ### Community 1008 - "Community 1008" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainMoveSkill +Nodes (2): KaguyaFrenchSynergySkill, Logic.Skill ### Community 1009 - "Community 1009" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoveRangeUpSkill +Nodes (2): KanakoBattlefieldProSkill, Logic.Skill ### Community 1010 - "Community 1010" Cohesion: 0.67 -Nodes (2): Logic.Skill, NoPopulationSkill +Nodes (2): KanakoBattlefieldSkill, Logic.Skill ### Community 1011 - "Community 1011" Cohesion: 0.67 -Nodes (2): Logic.Skill, NuclearFusionSkill +Nodes (2): KanakoMountainAttackSkill, Logic.Skill ### Community 1012 - "Community 1012" Cohesion: 0.67 -Nodes (2): Logic.Skill, NuclearSkill +Nodes (2): KanakoMountainBuffSkill, Logic.Skill ### Community 1013 - "Community 1013" Cohesion: 0.67 -Nodes (2): Logic.Skill, OceanDefenseSkill +Nodes (2): KanakoMountainSkill, Logic.Skill ### Community 1014 - "Community 1014" Cohesion: 0.67 -Nodes (2): Logic.Skill, OceanMoveSkill +Nodes (2): KanakoSittingSkill, Logic.Skill ### Community 1015 - "Community 1015" Cohesion: 0.67 -Nodes (2): Logic.Skill, OfficerSkill +Nodes (2): KanakoTechSkill, Logic.Skill ### Community 1016 - "Community 1016" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliEarthSkill +Nodes (2): KanakoWarProSkill, Logic.Skill ### Community 1017 - "Community 1017" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliFireSkill +Nodes (2): KanakoWarSkill, Logic.Skill ### Community 1018 - "Community 1018" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMetalSkill +Nodes (2): KanakoWindProSkill, Logic.Skill ### Community 1019 - "Community 1019" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMoveProSkill +Nodes (2): KanakoWindSkill, Logic.Skill ### Community 1020 - "Community 1020" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMoveSkill +Nodes (2): KingCoinSkill, Logic.Skill ### Community 1021 - "Community 1021" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliRestSkill +Nodes (2): KoakumaDevotionSkill, Logic.Skill ### Community 1022 - "Community 1022" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliStoneProSkill +Nodes (2): KoakumaHeroSkill, Logic.Skill ### Community 1023 - "Community 1023" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliStoneSkill +Nodes (2): KoishiAutoMoveSkill, Logic.Skill ### Community 1024 - "Community 1024" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliWaterSkill +Nodes (2): KoishiAutoSkill, Logic.Skill ### Community 1025 - "Community 1025" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliWoodSkill +Nodes (2): KoishiDeathFearSkill, Logic.Skill ### Community 1026 - "Community 1026" Cohesion: 0.67 -Nodes (2): Logic.Skill, PathStompSkill +Nodes (2): KoishiRespawnSkill, Logic.Skill ### Community 1027 - "Community 1027" Cohesion: 0.67 -Nodes (2): Logic.Skill, PeaceSkill +Nodes (2): KoishiUndeadSkill, Logic.Skill ### Community 1028 - "Community 1028" Cohesion: 0.67 -Nodes (2): Logic.Skill, PersistSkill +Nodes (2): KomeijiFearImmuneSkill, Logic.Skill ### Community 1029 - "Community 1029" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhilostoneSkill +Nodes (2): KomeijiFearSkill, Logic.Skill ### Community 1030 - "Community 1030" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhoenixEggSkill +Nodes (2): KomeijiFearSplashSkill, Logic.Skill ### Community 1031 - "Community 1031" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhoenixSkill +Nodes (2): KomeijiKnightAddSkill, Logic.Skill ### Community 1032 - "Community 1032" Cohesion: 0.67 -Nodes (2): Logic.Skill, PoisonedSkill +Nodes (2): KomeijiKnightKillSkill, Logic.Skill ### Community 1033 - "Community 1033" Cohesion: 0.67 -Nodes (2): Logic.Skill, PoorHealthSkill +Nodes (2): KomeijiRiderAddSkill, Logic.Skill ### Community 1034 - "Community 1034" Cohesion: 0.67 -Nodes (2): Logic.Skill, PowerUpSkill +Nodes (2): KomeijiRiderKillSkill, Logic.Skill ### Community 1035 - "Community 1035" Cohesion: 0.67 -Nodes (2): Logic.Skill, QuartetSkill +Nodes (2): KomeijiRiderTransSkill, Logic.Skill ### Community 1036 - "Community 1036" Cohesion: 0.67 -Nodes (2): Logic.Skill, QueenTerritoryMoveSkill +Nodes (2): LaevatainPreySkill, Logic.Skill ### Community 1037 - "Community 1037" Cohesion: 0.67 -Nodes (2): Logic.Skill, RecycleSkill +Nodes (2): LaevatainSkill, Logic.Skill ### Community 1038 - "Community 1038" Cohesion: 0.67 -Nodes (2): Logic.Skill, RedMistDefenseSkill +Nodes (2): LandAndWaterSkill, Logic.Skill ### Community 1039 - "Community 1039" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenFrenchAttakSkill +Nodes (2): LandOnlySkill, Logic.Skill ### Community 1040 - "Community 1040" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenFrenchKillSkill +Nodes (2): Logic.Skill, LuckSkill ### Community 1041 - "Community 1041" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenIllusionProSkill +Nodes (2): Logic.Skill, MahaCorpseBuffSkill ### Community 1042 - "Community 1042" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenIllusionSkill +Nodes (2): Logic.Skill, MeilingAttackUpSkill ### Community 1043 - "Community 1043" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaAbsorbSkill +Nodes (2): Logic.Skill, MeilingCounterSkill ### Community 1044 - "Community 1044" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaAttackSkill +Nodes (2): Logic.Skill, MeilingDuelSkill ### Community 1045 - "Community 1045" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuff2Skill +Nodes (2): Logic.Skill, MeilingRestSkill ### Community 1046 - "Community 1046" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuff3Skill +Nodes (2): Logic.Skill, MokouFrenchBoomSkill ### Community 1047 - "Community 1047" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuffSkill +Nodes (2): Logic.Skill, MokouFrenchEggSkill ### Community 1048 - "Community 1048" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaEgyptianEmpireKillSkill +Nodes (2): Logic.Skill, MokouFrenchEnhanceSkill ### Community 1049 - "Community 1049" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHelpProSkill +Nodes (2): Logic.Skill, MokouFrenchReviveSkill ### Community 1050 - "Community 1050" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHelpSkill +Nodes (2): Logic.Skill, MomijiBuffSkill ### Community 1051 - "Community 1051" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHunterSkill +Nodes (2): Logic.Skill, MomijiHunterAttackSkill ### Community 1052 - "Community 1052" Cohesion: 0.67 -Nodes (2): Logic.Skill, RengesyouControSkill +Nodes (2): Logic.Skill, MomijiHunterSkill ### Community 1053 - "Community 1053" Cohesion: 0.67 -Nodes (2): Logic.Skill, RengesyouSkill +Nodes (2): Logic.Skill, MomijiHuntSkill ### Community 1054 - "Community 1054" Cohesion: 0.67 -Nodes (2): Logic.Skill, RinCorpseColletSkill +Nodes (2): Logic.Skill, MomijiKillSkill ### Community 1055 - "Community 1055" Cohesion: 0.67 -Nodes (2): Logic.Skill, RinFireSkill +Nodes (2): Logic.Skill, MomijiPreySkill ### Community 1056 - "Community 1056" Cohesion: 0.67 -Nodes (2): Logic.Skill, RotaLFlamesProSkill +Nodes (2): Logic.Skill, MomijiSightSkill ### Community 1057 - "Community 1057" Cohesion: 0.67 -Nodes (2): Logic.Skill, RotaLFlamesSkill +Nodes (2): Logic.Skill, MoonPrincessSkill ### Community 1058 - "Community 1058" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaEnhancedSkill +Nodes (2): Logic.Skill, MoriyaBuffSkill ### Community 1059 - "Community 1059" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaFlyProSkill +Nodes (2): Logic.Skill, MoriyaKnightMoveSkill ### Community 1060 - "Community 1060" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaFlySkill +Nodes (2): Logic.Skill, MoriyaRoadSkill ### Community 1061 - "Community 1061" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaGuardSkill +Nodes (2): Logic.Skill, MountainDefenseSkill ### Community 1062 - "Community 1062" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaKillSkill +Nodes (2): Logic.Skill, MountainGodSkill ### Community 1063 - "Community 1063" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaTiredSkill +Nodes (2): Logic.Skill, MountainMoveSkill ### Community 1064 - "Community 1064" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivineSkill +Nodes (2): Logic.Skill, MoveRangeUpSkill ### Community 1065 - "Community 1065" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill +Nodes (2): Logic.Skill, NoPopulationSkill ### Community 1066 - "Community 1066" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E2_MOVE_Skill +Nodes (2): Logic.Skill, NuclearFusionSkill ### Community 1067 - "Community 1067" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E3_COUNTER_Skill +Nodes (2): Logic.Skill, NuclearSkill ### Community 1068 - "Community 1068" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E3_HP_Skill +Nodes (2): Logic.Skill, OceanDefenseSkill ### Community 1069 - "Community 1069" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill +Nodes (2): Logic.Skill, OceanMoveSkill ### Community 1070 - "Community 1070" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E4_KILL_Skill +Nodes (2): Logic.Skill, OfficerSkill ### Community 1071 - "Community 1071" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill +Nodes (2): Logic.Skill, PatchouliEarthSkill ### Community 1072 - "Community 1072" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F2_RESIST_Skill +Nodes (2): Logic.Skill, PatchouliFireSkill ### Community 1073 - "Community 1073" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F3_MOVE_Skill +Nodes (2): Logic.Skill, PatchouliMetalSkill ### Community 1074 - "Community 1074" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F3_RESIST_Skill +Nodes (2): Logic.Skill, PatchouliMoveProSkill ### Community 1075 - "Community 1075" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill +Nodes (2): Logic.Skill, PatchouliMoveSkill ### Community 1076 - "Community 1076" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F4_KILL_Skill +Nodes (2): Logic.Skill, PatchouliRestSkill ### Community 1077 - "Community 1077" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeMoveSkill +Nodes (2): Logic.Skill, PatchouliStoneProSkill ### Community 1078 - "Community 1078" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeNineContinueSkill +Nodes (2): Logic.Skill, PatchouliStoneSkill ### Community 1079 - "Community 1079" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeNineSkill +Nodes (2): Logic.Skill, PatchouliWaterSkill ### Community 1080 - "Community 1080" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeWindSkill +Nodes (2): Logic.Skill, PatchouliWoodSkill ### Community 1081 - "Community 1081" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeWindXSkill +Nodes (2): Logic.Skill, PathStompSkill ### Community 1082 - "Community 1082" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriAttackBoomSkill +Nodes (2): Logic.Skill, PeaceSkill ### Community 1083 - "Community 1083" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriAttackSkill +Nodes (2): Logic.Skill, PersistSkill ### Community 1084 - "Community 1084" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriBanSkill +Nodes (2): Logic.Skill, PhilostoneSkill ### Community 1085 - "Community 1085" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriSeeSkill +Nodes (2): Logic.Skill, PhoenixEggSkill ### Community 1086 - "Community 1086" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatsujinkiSkill +Nodes (2): Logic.Skill, PhoenixSkill ### Community 1087 - "Community 1087" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletKoakumaSkill +Nodes (2): Logic.Skill, PoisonedSkill ### Community 1088 - "Community 1088" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletMistRealTimeVampireDebuffSkill +Nodes (2): Logic.Skill, PoorHealthSkill ### Community 1089 - "Community 1089" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletMistRealTimeVampireSkill +Nodes (2): Logic.Skill, PowerUpSkill ### Community 1090 - "Community 1090" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScoutProSkill +Nodes (2): Logic.Skill, QuartetSkill ### Community 1091 - "Community 1091" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScoutSkill +Nodes (2): Logic.Skill, QueenTerritoryMoveSkill ### Community 1092 - "Community 1092" Cohesion: 0.67 -Nodes (2): Logic.Skill, ShenlanSkill +Nodes (2): Logic.Skill, RecycleSkill ### Community 1093 - "Community 1093" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBanBombSkill +Nodes (2): Logic.Skill, RedMistDefenseSkill ### Community 1094 - "Community 1094" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBanSkill +Nodes (2): Logic.Skill, ReisenFrenchAttakSkill ### Community 1095 - "Community 1095" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBase +Nodes (2): Logic.Skill, ReisenFrenchKillSkill ### Community 1096 - "Community 1096" Cohesion: 0.67 -Nodes (2): Logic.Skill, SneakSkill +Nodes (2): Logic.Skill, ReisenIllusionProSkill ### Community 1097 - "Community 1097" Cohesion: 0.67 -Nodes (2): Logic.Skill, SpeedUpSkill +Nodes (2): Logic.Skill, ReisenIllusionSkill ### Community 1098 - "Community 1098" Cohesion: 0.67 -Nodes (2): Logic.Skill, SplashSkill +Nodes (2): Logic.Skill, RemiliaAbsorbSkill ### Community 1099 - "Community 1099" Cohesion: 0.67 -Nodes (2): Logic.Skill, StaticSkill +Nodes (2): Logic.Skill, RemiliaAttackSkill ### Community 1100 - "Community 1100" Cohesion: 0.67 -Nodes (2): Logic.Skill, StiffSkill +Nodes (2): Logic.Skill, RemiliaBuff2Skill ### Community 1101 - "Community 1101" Cohesion: 0.67 -Nodes (2): Logic.Skill, StompSkill +Nodes (2): Logic.Skill, RemiliaBuff3Skill ### Community 1102 - "Community 1102" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuperDashSkill +Nodes (2): Logic.Skill, RemiliaBuffSkill ### Community 1103 - "Community 1103" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuperHideSkill +Nodes (2): Logic.Skill, RemiliaEgyptianEmpireKillSkill ### Community 1104 - "Community 1104" Cohesion: 0.67 -Nodes (2): Logic.Skill, SurpriseSkill +Nodes (2): Logic.Skill, RemiliaHelpProSkill ### Community 1105 - "Community 1105" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackAllySkill +Nodes (2): Logic.Skill, RemiliaHelpSkill ### Community 1106 - "Community 1106" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackProSkill +Nodes (2): Logic.Skill, RemiliaHunterSkill ### Community 1107 - "Community 1107" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackSkill +Nodes (2): Logic.Skill, RengesyouControSkill ### Community 1108 - "Community 1108" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoCombineSkill +Nodes (2): Logic.Skill, RengesyouSkill ### Community 1109 - "Community 1109" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoFullmapSkill +Nodes (2): Logic.Skill, RinCorpseColletSkill ### Community 1110 - "Community 1110" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiAttackSkill +Nodes (2): Logic.Skill, RinFireSkill ### Community 1111 - "Community 1111" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiCombineSkill +Nodes (2): Logic.Skill, RotaLFlamesProSkill ### Community 1112 - "Community 1112" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiSkill +Nodes (2): Logic.Skill, RotaLFlamesSkill ### Community 1113 - "Community 1113" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiSplitSkill +Nodes (2): Logic.Skill, SakuyaEnhancedSkill ### Community 1114 - "Community 1114" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoMoveSkill +Nodes (2): Logic.Skill, SakuyaFlyProSkill ### Community 1115 - "Community 1115" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoSplitSkill +Nodes (2): Logic.Skill, SakuyaFlySkill ### Community 1116 - "Community 1116" Cohesion: 0.67 -Nodes (2): Logic.Skill, SwapSkill +Nodes (2): Logic.Skill, SakuyaGuardSkill ### Community 1117 - "Community 1117" Cohesion: 0.67 -Nodes (2): Logic.Skill, TaiChiSkill +Nodes (2): Logic.Skill, SakuyaKillSkill ### Community 1118 - "Community 1118" Cohesion: 0.67 -Nodes (2): Logic.Skill, TenguBuffSkill +Nodes (2): Logic.Skill, SakuyaTiredSkill ### Community 1119 - "Community 1119" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchAttackSkill +Nodes (2): Logic.Skill, SanaeDivineSkill ### Community 1120 - "Community 1120" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchBuffSkill +Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill ### Community 1121 - "Community 1121" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchDieSkill +Nodes (2): Logic.Skill, SanaeDivine_E2_MOVE_Skill ### Community 1122 - "Community 1122" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchKillSkill +Nodes (2): Logic.Skill, SanaeDivine_E3_COUNTER_Skill ### Community 1123 - "Community 1123" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchSightSkill +Nodes (2): Logic.Skill, SanaeDivine_E3_HP_Skill ### Community 1124 - "Community 1124" Cohesion: 0.67 -Nodes (2): Logic.Skill, ThirdEyeSkill +Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill ### Community 1125 - "Community 1125" Cohesion: 0.67 -Nodes (2): Logic.Skill, TreatAsHeroSkill +Nodes (2): Logic.Skill, SanaeDivine_E4_KILL_Skill ### Community 1126 - "Community 1126" Cohesion: 0.67 -Nodes (2): Logic.Skill, TrioSkill +Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill ### Community 1127 - "Community 1127" Cohesion: 0.67 -Nodes (2): Logic.Skill, UndeadSkill +Nodes (2): Logic.Skill, SanaeDivine_F2_RESIST_Skill ### Community 1128 - "Community 1128" Cohesion: 0.67 -Nodes (2): Logic.Skill, UniqueSkill +Nodes (2): Logic.Skill, SanaeDivine_F3_MOVE_Skill ### Community 1129 - "Community 1129" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoBaseSkill +Nodes (2): Logic.Skill, SanaeDivine_F3_RESIST_Skill ### Community 1130 - "Community 1130" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoBoneMakerSkill +Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill ### Community 1131 - "Community 1131" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoDelayActSkill +Nodes (2): Logic.Skill, SanaeDivine_F4_KILL_Skill ### Community 1132 - "Community 1132" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoRadiationSkill +Nodes (2): Logic.Skill, SanaeMoveSkill ### Community 1133 - "Community 1133" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoReadyMoveSkill +Nodes (2): Logic.Skill, SanaeNineContinueSkill ### Community 1134 - "Community 1134" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoReadyMoveSuperSkill +Nodes (2): Logic.Skill, SanaeNineSkill ### Community 1135 - "Community 1135" Cohesion: 0.67 -Nodes (2): Logic.Skill, VampireProSkill +Nodes (2): Logic.Skill, SanaeWindSkill ### Community 1136 - "Community 1136" Cohesion: 0.67 -Nodes (2): Logic.Skill, VampireSkill +Nodes (2): Logic.Skill, SanaeWindXSkill ### Community 1137 - "Community 1137" Cohesion: 0.67 -Nodes (2): Logic.Skill, WaterDefenseSkill +Nodes (2): Logic.Skill, SatoriAttackBoomSkill ### Community 1138 - "Community 1138" Cohesion: 0.67 -Nodes (2): Logic.Skill, WaterMoveSkill +Nodes (2): Logic.Skill, SatoriAttackSkill ### Community 1139 - "Community 1139" Cohesion: 0.67 -Nodes (2): Logic.Skill, WindGodSkill +Nodes (2): Logic.Skill, SatoriBanSkill ### Community 1140 - "Community 1140" Cohesion: 0.67 -Nodes (2): Logic.Skill, WindPriestessSkill +Nodes (2): Logic.Skill, SatoriSeeSkill ### Community 1141 - "Community 1141" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiDashProSkill +Nodes (2): Logic.Skill, SatsujinkiSkill ### Community 1142 - "Community 1142" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiDashSkill +Nodes (2): Logic.Skill, ScarletKoakumaSkill ### Community 1143 - "Community 1143" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiMovePlusSkill +Nodes (2): Logic.Skill, ScarletMistRealTimeVampireDebuffSkill ### Community 1144 - "Community 1144" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiMoveSkill +Nodes (2): Logic.Skill, ScarletMistRealTimeVampireSkill ### Community 1145 - "Community 1145" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiPushSkill +Nodes (2): Logic.Skill, ScoutProSkill ### Community 1146 - "Community 1146" Cohesion: 0.67 -Nodes (2): TH1_Logic.MatchConfig, WikiManager +Nodes (2): Logic.Skill, ScoutSkill ### Community 1147 - "Community 1147" Cohesion: 0.67 -Nodes (2): IUIData, TH1_UI.Core +Nodes (2): Logic.Skill, ShenlanSkill ### Community 1148 - "Community 1148" Cohesion: 0.67 -Nodes (2): TH1_UI.Core, UIResourceName +Nodes (2): Logic.Skill, SkillBanBombSkill ### Community 1149 - "Community 1149" Cohesion: 0.67 -Nodes (2): MemoryPack, MemoryPackCode +Nodes (2): Logic.Skill, SkillBanSkill ### Community 1150 - "Community 1150" Cohesion: 0.67 -Nodes (2): MemoryPack.Internal, PreserveAttribute +Nodes (2): Logic.Skill, SkillBase ### Community 1151 - "Community 1151" Cohesion: 0.67 -Nodes (2): NugetForUnity, NuspecContentFile +Nodes (2): Logic.Skill, SneakSkill ### Community 1152 - "Community 1152" Cohesion: 0.67 -Nodes (2): NugetForUnity, OnLoadNugetPackageRestorer +Nodes (2): Logic.Skill, SpeedUpSkill ### Community 1153 - "Community 1153" Cohesion: 0.67 -Nodes (2): NugetForUnity.Models, NugetFrameworkGroup +Nodes (2): Logic.Skill, SplashSkill ### Community 1154 - "Community 1154" Cohesion: 0.67 -Nodes (2): NugetForUnity.Models, SerializableNugetPackage +Nodes (2): Logic.Skill, StaticSkill ### Community 1155 - "Community 1155" Cohesion: 0.67 -Nodes (2): WindowsDefine, YooAsset.Editor +Nodes (2): Logic.Skill, StiffSkill ### Community 1156 - "Community 1156" Cohesion: 0.67 -Nodes (2): BuildResult, YooAsset.Editor +Nodes (2): Logic.Skill, StompSkill ### Community 1157 - "Community 1157" Cohesion: 0.67 -Nodes (2): IContextObject, YooAsset.Editor +Nodes (2): Logic.Skill, SuperDashSkill ### Community 1158 - "Community 1158" Cohesion: 0.67 -Nodes (2): CollectAssetInfo, YooAsset.Editor +Nodes (2): Logic.Skill, SuperHideSkill ### Community 1159 - "Community 1159" Cohesion: 0.67 -Nodes (2): CollectCommand, YooAsset.Editor +Nodes (2): Logic.Skill, SurpriseSkill ### Community 1160 - "Community 1160" Cohesion: 0.67 -Nodes (2): RuleDisplayName, YooAsset.Editor +Nodes (2): Logic.Skill, SuwakoAttackAllySkill ### Community 1161 - "Community 1161" Cohesion: 0.67 -Nodes (2): ReportAssetInfo, YooAsset.Editor +Nodes (2): Logic.Skill, SuwakoAttackProSkill ### Community 1162 - "Community 1162" Cohesion: 0.67 -Nodes (2): ReportIndependAsset, YooAsset.Editor +Nodes (2): Logic.Skill, SuwakoAttackSkill ### Community 1163 - "Community 1163" Cohesion: 0.67 -Nodes (2): ReportSummary, YooAsset.Editor +Nodes (2): Logic.Skill, SuwakoCombineSkill ### Community 1164 - "Community 1164" Cohesion: 0.67 -Nodes (2): DebugPackageData, YooAsset +Nodes (2): Logic.Skill, SuwakoFullmapSkill ### Community 1165 - "Community 1165" Cohesion: 0.67 -Nodes (2): RemoteDebuggerDefine, YooAsset +Nodes (2): Logic.Skill, SuwakoHebiAttackSkill ### Community 1166 - "Community 1166" Cohesion: 0.67 -Nodes (2): ResourceAssist, YooAsset +Nodes (2): Logic.Skill, SuwakoHebiCombineSkill ### Community 1167 - "Community 1167" Cohesion: 0.67 -Nodes (2): IEventMessage, UniFramework.Event +Nodes (2): Logic.Skill, SuwakoHebiSkill ### Community 1168 - "Community 1168" Cohesion: 0.67 -Nodes (1): Cysharp.Threading.Tasks +Nodes (2): Logic.Skill, SuwakoHebiSplitSkill ### Community 1169 - "Community 1169" Cohesion: 0.67 -Nodes (2): SpriteLibraryPropertyString, UnityEditor.U2D.Animation +Nodes (2): Logic.Skill, SuwakoMoveSkill ### Community 1170 - "Community 1170" Cohesion: 0.67 -Nodes (2): SpriteLibrarySourceAssetPropertyString, UnityEditor.U2D.Animation +Nodes (2): Logic.Skill, SuwakoSplitSkill ### Community 1171 - "Community 1171" Cohesion: 0.67 -Nodes (2): ISpriteLibraryCategory, UnityEngine.U2D.Animation +Nodes (2): Logic.Skill, SwapSkill ### Community 1172 - "Community 1172" Cohesion: 0.67 -Nodes (2): ISpriteLibraryLabel, UnityEngine.U2D.Animation +Nodes (2): Logic.Skill, TaiChiSkill ### Community 1173 - "Community 1173" Cohesion: 0.67 -Nodes (2): IPaletteProvider, UnityEditor.U2D.Aseprite +Nodes (2): Logic.Skill, TenguBuffSkill ### Community 1174 - "Community 1174" Cohesion: 0.67 -Nodes (2): PhotoshopFile, PsdBlendMode +Nodes (2): Logic.Skill, TewiFrenchAttackSkill ### Community 1175 - "Community 1175" Cohesion: 0.67 -Nodes (2): PhotoshopFile, RleRowLengths +Nodes (2): Logic.Skill, TewiFrenchBuffSkill ### Community 1176 - "Community 1176" Cohesion: 0.67 -Nodes (2): BlendingRanges, PhotoshopFile +Nodes (2): Logic.Skill, TewiFrenchDieSkill ### Community 1177 - "Community 1177" Cohesion: 0.67 -Nodes (2): Tooltips, UnityEditor.U2D.PSD +Nodes (2): Logic.Skill, TewiFrenchKillSkill ### Community 1178 - "Community 1178" Cohesion: 0.67 -Nodes (2): TilePaletteActiveTargetsProperties, UnityEditor.Tilemaps +Nodes (2): Logic.Skill, TewiFrenchSightSkill ### Community 1179 - "Community 1179" Cohesion: 0.67 -Nodes (2): BurstCompileAttribute, Unity.Burst +Nodes (2): Logic.Skill, ThirdEyeSkill ### Community 1180 - "Community 1180" Cohesion: 0.67 -Nodes (2): ExternalLink, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, TreatAsHeroSkill ### Community 1181 - "Community 1181" Cohesion: 0.67 -Nodes (2): HelpData, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, TrioSkill ### Community 1182 - "Community 1182" Cohesion: 0.67 -Nodes (2): HelpFormat, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, UndeadSkill ### Community 1183 - "Community 1183" Cohesion: 0.67 -Nodes (2): HelpLink, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, UniqueSkill ### Community 1184 - "Community 1184" Cohesion: 0.67 -Nodes (2): ChangesetFromCollabCommitResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, UtsuhoBaseSkill ### Community 1185 - "Community 1185" Cohesion: 0.67 -Nodes (2): CurrentUserAdminCheckResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, UtsuhoBoneMakerSkill ### Community 1186 - "Community 1186" Cohesion: 0.67 -Nodes (2): IsCollabProjectMigratedResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, UtsuhoDelayActSkill ### Community 1187 - "Community 1187" Cohesion: 0.67 -Nodes (2): SubscriptionDetailsResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, UtsuhoRadiationSkill ### Community 1188 - "Community 1188" Cohesion: 0.67 -Nodes (1): Unity.Collections +Nodes (2): Logic.Skill, UtsuhoReadyMoveSkill ### Community 1189 - "Community 1189" Cohesion: 0.67 -Nodes (2): Packages.Rider.Editor, RiderStyles +Nodes (2): Logic.Skill, UtsuhoReadyMoveSuperSkill ### Community 1190 - "Community 1190" Cohesion: 0.67 -Nodes (2): CallbackInitializer, Packages.Rider.Editor.UnitTesting +Nodes (2): Logic.Skill, VampireProSkill ### Community 1191 - "Community 1191" Cohesion: 0.67 -Nodes (2): Packages.Rider.Editor.UnitTesting, TestEvent +Nodes (2): Logic.Skill, VampireSkill ### Community 1192 - "Community 1192" Cohesion: 0.67 -Nodes (2): CommandLineParser, Packages.Rider.Editor.Util +Nodes (2): Logic.Skill, WaterDefenseSkill ### Community 1193 - "Community 1193" Cohesion: 0.67 -Nodes (2): KnownAssemblies, Microsoft.Unity.VisualStudio.Editor +Nodes (2): Logic.Skill, WaterMoveSkill ### Community 1194 - "Community 1194" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, Solution +Nodes (2): Logic.Skill, WindGodSkill ### Community 1195 - "Community 1195" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, SolutionProperties +Nodes (2): Logic.Skill, WindPriestessSkill ### Community 1196 - "Community 1196" Cohesion: 0.67 -Nodes (2): ExceptionEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (2): Logic.Skill, YuugiDashProSkill ### Community 1197 - "Community 1197" Cohesion: 0.67 -Nodes (2): MessageEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (2): Logic.Skill, YuugiDashSkill ### Community 1198 - "Community 1198" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, ProjectProperties +Nodes (2): Logic.Skill, YuugiMovePlusSkill ### Community 1199 - "Community 1199" Cohesion: 0.67 -Nodes (2): ProbeSubdivisionResult, UnityEngine.Rendering +Nodes (2): Logic.Skill, YuugiMoveSkill ### Community 1200 - "Community 1200" Cohesion: 0.67 -Nodes (2): ISerializedRenderPipelineGlobalSettings, UnityEditor.Rendering +Nodes (2): Logic.Skill, YuugiPushSkill ### Community 1201 - "Community 1201" Cohesion: 0.67 -Nodes (1): UnityEngine.Rendering +Nodes (2): TH1_Logic.MatchConfig, WikiManager ### Community 1202 - "Community 1202" Cohesion: 0.67 -Nodes (2): IAdditionalData, UnityEngine.Rendering +Nodes (2): IUIData, TH1_UI.Core ### Community 1203 - "Community 1203" Cohesion: 0.67 -Nodes (2): IVirtualTexturingEnabledRenderPipeline, UnityEngine.Rendering +Nodes (2): TH1_UI.Core, UIResourceName ### Community 1204 - "Community 1204" Cohesion: 0.67 -Nodes (2): SerializableEnum, UnityEngine.Rendering +Nodes (2): MemoryPack, MemoryPackCode ### Community 1205 - "Community 1205" Cohesion: 0.67 -Nodes (2): UnityEngine.Rendering, XRGraphics +Nodes (2): MemoryPack.Internal, PreserveAttribute ### Community 1206 - "Community 1206" Cohesion: 0.67 -Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule +Nodes (2): NugetForUnity, NuspecContentFile ### Community 1207 - "Community 1207" Cohesion: 0.67 -Nodes (2): IShaderVariantSettings, UnityEngine.Rendering +Nodes (2): NugetForUnity, OnLoadNugetPackageRestorer ### Community 1208 - "Community 1208" Cohesion: 0.67 -Nodes (2): ColorSpaceUtils, UnityEngine.Rendering +Nodes (2): NugetForUnity.Models, NugetFrameworkGroup ### Community 1209 - "Community 1209" Cohesion: 0.67 -Nodes (2): IVolume, UnityEngine.Rendering +Nodes (2): NugetForUnity.Models, SerializableNugetPackage ### Community 1210 - "Community 1210" Cohesion: 0.67 -Nodes (2): ShaderOptions, UnityEngine.Rendering.Universal +Nodes (2): WindowsDefine, YooAsset.Editor ### Community 1211 - "Community 1211" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (2): BuildResult, YooAsset.Editor ### Community 1212 - "Community 1212" Cohesion: 0.67 -Nodes (2): RenderPipelineConverterContainer, UnityEditor.Rendering.Universal +Nodes (2): IContextObject, YooAsset.Editor ### Community 1213 - "Community 1213" Cohesion: 0.67 -Nodes (2): DecalProjectorEditor, UnityEditor.Rendering.Universal +Nodes (2): CollectAssetInfo, YooAsset.Editor ### Community 1214 - "Community 1214" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI +Nodes (2): CollectCommand, YooAsset.Editor ### Community 1215 - "Community 1215" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalBlockFields +Nodes (2): RuleDisplayName, YooAsset.Editor ### Community 1216 - "Community 1216" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalFields +Nodes (2): ReportAssetInfo, YooAsset.Editor ### Community 1217 - "Community 1217" Cohesion: 0.67 -Nodes (2): Property, UnityEditor.Rendering.Universal +Nodes (2): ReportIndependAsset, YooAsset.Editor ### Community 1218 - "Community 1218" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructFields +Nodes (2): ReportSummary, YooAsset.Editor ### Community 1219 - "Community 1219" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructs +Nodes (2): DebugPackageData, YooAsset ### Community 1220 - "Community 1220" Cohesion: 0.67 -Nodes (2): Light2D, UnityEngine.Rendering.Universal +Nodes (2): RemoteDebuggerDefine, YooAsset ### Community 1221 - "Community 1221" Cohesion: 0.67 -Nodes (2): IRenderPass2D, UnityEngine.Rendering.Universal +Nodes (2): ResourceAssist, YooAsset ### Community 1222 - "Community 1222" Cohesion: 0.67 -Nodes (2): StencilStateData, UnityEngine.Rendering.Universal +Nodes (2): IEventMessage, UniFramework.Event ### Community 1223 - "Community 1223" Cohesion: 0.67 -Nodes (2): DecalShaderPassNames, UnityEngine.Rendering.Universal +Nodes (1): Cysharp.Threading.Tasks ### Community 1224 - "Community 1224" Cohesion: 0.67 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (2): SpriteLibraryPropertyString, UnityEditor.U2D.Animation ### Community 1225 - "Community 1225" Cohesion: 0.67 -Nodes (2): ShaderInput, UnityEngine.Rendering.Universal +Nodes (2): SpriteLibrarySourceAssetPropertyString, UnityEditor.U2D.Animation ### Community 1226 - "Community 1226" Cohesion: 0.67 -Nodes (2): CommonStrings, UnityEditor.Build.Utilities +Nodes (2): ISpriteLibraryCategory, UnityEngine.U2D.Animation ### Community 1227 - "Community 1227" Cohesion: 0.67 -Nodes (2): ContextData, UnityEditor.ShaderGraph +Nodes (2): ISpriteLibraryLabel, UnityEngine.U2D.Animation ### Community 1228 - "Community 1228" Cohesion: 0.67 -Nodes (2): IMaterialSlotHasValue, UnityEditor.ShaderGraph +Nodes (2): IPaletteProvider, UnityEditor.U2D.Aseprite ### Community 1229 - "Community 1229" Cohesion: 0.67 -Nodes (2): ICanChangeShaderGUI, UnityEditor.Graphing +Nodes (2): PhotoshopFile, PsdBlendMode ### Community 1230 - "Community 1230" Cohesion: 0.67 -Nodes (2): IGroupItem, UnityEditor.ShaderGraph +Nodes (2): PhotoshopFile, RleRowLengths ### Community 1231 - "Community 1231" Cohesion: 0.67 -Nodes (2): AbstractMaterialNode0, UnityEditor.ShaderGraph.Legacy +Nodes (2): BlendingRanges, PhotoshopFile ### Community 1232 - "Community 1232" Cohesion: 0.67 -Nodes (2): Edge0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Tooltips, UnityEditor.U2D.PSD ### Community 1233 - "Community 1233" Cohesion: 0.67 -Nodes (2): GraphData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): TilePaletteActiveTargetsProperties, UnityEditor.Tilemaps ### Community 1234 - "Community 1234" Cohesion: 0.67 -Nodes (2): GroupData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): BurstCompileAttribute, Unity.Burst ### Community 1235 - "Community 1235" Cohesion: 0.67 -Nodes (2): IMasterNode1, UnityEditor.ShaderGraph.Legacy +Nodes (2): ExternalLink, Unity.PlasticSCM.Editor.Help ### Community 1236 - "Community 1236" Cohesion: 0.67 -Nodes (2): ShaderInput0, UnityEditor.ShaderGraph.Legacy +Nodes (2): HelpData, Unity.PlasticSCM.Editor.Help ### Community 1237 - "Community 1237" Cohesion: 0.67 -Nodes (2): SlotReference0, UnityEditor.ShaderGraph.Legacy +Nodes (2): HelpFormat, Unity.PlasticSCM.Editor.Help ### Community 1238 - "Community 1238" Cohesion: 0.67 -Nodes (2): StickyNoteData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): HelpLink, Unity.PlasticSCM.Editor.Help ### Community 1239 - "Community 1239" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): ChangesetFromCollabCommitResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1240 - "Community 1240" Cohesion: 0.67 -Nodes (2): IRectInterface, UnityEditor.ShaderGraph +Nodes (2): CurrentUserAdminCheckResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1241 - "Community 1241" Cohesion: 0.67 -Nodes (2): FieldCondition, UnityEditor.ShaderGraph +Nodes (2): IsCollabProjectMigratedResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1242 - "Community 1242" Cohesion: 0.67 -Nodes (2): AdditionalCommandDescriptor, UnityEditor.ShaderGraph +Nodes (2): SubscriptionDetailsResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1243 - "Community 1243" Cohesion: 0.67 -Nodes (2): FieldDescriptor, UnityEditor.ShaderGraph +Nodes (1): Unity.Collections ### Community 1244 - "Community 1244" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): Packages.Rider.Editor, RiderStyles ### Community 1245 - "Community 1245" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): CallbackInitializer, Packages.Rider.Editor.UnitTesting ### Community 1246 - "Community 1246" Cohesion: 0.67 -Nodes (2): BlockFields, UnityEditor.ShaderGraph +Nodes (2): Packages.Rider.Editor.UnitTesting, TestEvent ### Community 1247 - "Community 1247" Cohesion: 0.67 -Nodes (2): FieldDependencies, UnityEditor.ShaderGraph +Nodes (2): CommandLineParser, Packages.Rider.Editor.Util ### Community 1248 - "Community 1248" Cohesion: 0.67 -Nodes (2): Fields, UnityEditor.ShaderGraph +Nodes (2): KnownAssemblies, Microsoft.Unity.VisualStudio.Editor ### Community 1249 - "Community 1249" Cohesion: 0.67 -Nodes (2): StructFields, UnityEditor.ShaderGraph +Nodes (2): Microsoft.Unity.VisualStudio.Editor, Solution ### Community 1250 - "Community 1250" Cohesion: 0.67 -Nodes (2): Structs, UnityEditor.ShaderGraph +Nodes (2): Microsoft.Unity.VisualStudio.Editor, SolutionProperties ### Community 1251 - "Community 1251" Cohesion: 0.67 -Nodes (2): BuiltInFields, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): ExceptionEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1252 - "Community 1252" Cohesion: 0.67 -Nodes (2): BuiltInStructFields, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): MessageEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1253 - "Community 1253" Cohesion: 0.67 -Nodes (2): BuiltInStructs, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): Microsoft.Unity.VisualStudio.Editor, ProjectProperties ### Community 1254 - "Community 1254" Cohesion: 0.67 -Nodes (2): IConditional, UnityEditor.ShaderGraph +Nodes (2): ProbeSubdivisionResult, UnityEngine.Rendering ### Community 1255 - "Community 1255" Cohesion: 0.67 -Nodes (2): IRequiresData, UnityEditor.ShaderGraph +Nodes (2): ISerializedRenderPipelineGlobalSettings, UnityEditor.Rendering ### Community 1256 - "Community 1256" Cohesion: 0.67 -Nodes (2): TypeMapping, UnityEditor.Graphing.Util +Nodes (1): UnityEngine.Rendering ### Community 1257 - "Community 1257" Cohesion: 0.67 -Nodes (2): EnumInfo, UnityEditor.ShaderGraph +Nodes (2): IAdditionalData, UnityEngine.Rendering ### Community 1258 - "Community 1258" Cohesion: 0.67 -Nodes (2): IRequiredSetting, UnityEngine.Rendering +Nodes (2): IVirtualTexturingEnabledRenderPipeline, UnityEngine.Rendering ### Community 1259 - "Community 1259" Cohesion: 0.67 -Nodes (2): PRSIRequiredSetting, UnityEngine.Rendering +Nodes (2): SerializableEnum, UnityEngine.Rendering ### Community 1260 - "Community 1260" Cohesion: 0.67 -Nodes (2): PixelShaderNodeTests, UnityEditor.ShaderGraph.UnitTests +Nodes (2): UnityEngine.Rendering, XRGraphics ### Community 1261 - "Community 1261" Cohesion: 0.67 -Nodes (2): ITestAdaptor, UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 1262 - "Community 1262" Cohesion: 0.67 -Nodes (2): TestRunProgress, UnityEditor.TestTools.TestRunner.Api +Nodes (2): IShaderVariantSettings, UnityEngine.Rendering ### Community 1263 - "Community 1263" Cohesion: 0.67 -Nodes (2): RunFinishedData, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (2): ColorSpaceUtils, UnityEngine.Rendering ### Community 1264 - "Community 1264" Cohesion: 0.67 -Nodes (2): TestTreeData, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (2): IVolume, UnityEngine.Rendering ### Community 1265 - "Community 1265" Cohesion: 0.67 -Nodes (2): IRunData, UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (2): ShaderOptions, UnityEngine.Rendering.Universal ### Community 1266 - "Community 1266" Cohesion: 0.67 -Nodes (2): RenderingOptions, UnityEditor.TestTools.TestRunner.GUI +Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 1267 - "Community 1267" Cohesion: 0.67 -Nodes (2): RunProgress, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): RenderPipelineConverterContainer, UnityEditor.Rendering.Universal ### Community 1268 - "Community 1268" Cohesion: 0.67 -Nodes (2): TaskInfo, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): DecalProjectorEditor, UnityEditor.Rendering.Universal ### Community 1269 - "Community 1269" Cohesion: 0.67 -Nodes (2): TestProgress, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI ### Community 1270 - "Community 1270" Cohesion: 0.67 -Nodes (2): ISceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalBlockFields ### Community 1271 - "Community 1271" Cohesion: 0.67 -Nodes (2): IEditorAssembliesProxy, UnityEditor.TestTools.TestRunner +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalFields ### Community 1272 - "Community 1272" Cohesion: 0.67 -Nodes (2): ITestListCacheData, UnityEditor.TestTools.TestRunner +Nodes (2): Property, UnityEditor.Rendering.Universal ### Community 1273 - "Community 1273" Cohesion: 0.67 -Nodes (2): TestRunData, UnityEditor.TestRunner.UnityTestProtocol +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructFields ### Community 1274 - "Community 1274" Cohesion: 0.67 -Nodes (2): BuildSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructs ### Community 1275 - "Community 1275" Cohesion: 0.67 -Nodes (2): PlayerSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): Light2D, UnityEngine.Rendering.Universal ### Community 1276 - "Community 1276" Cohesion: 0.67 -Nodes (2): PlayerSystemInfo, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): IRenderPass2D, UnityEngine.Rendering.Universal ### Community 1277 - "Community 1277" Cohesion: 0.67 -Nodes (2): QualitySettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): StencilStateData, UnityEngine.Rendering.Universal ### Community 1278 - "Community 1278" Cohesion: 0.67 -Nodes (2): ScreenSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): DecalShaderPassNames, UnityEngine.Rendering.Universal ### Community 1279 - "Community 1279" Cohesion: 0.67 -Nodes (2): EnumerableTestState, UnityEngine.TestTools +Nodes (1): UnityEngine.Rendering.Universal ### Community 1280 - "Community 1280" Cohesion: 0.67 -Nodes (2): FeatureFlags, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (2): ShaderInput, UnityEngine.Rendering.Universal ### Community 1281 - "Community 1281" Cohesion: 0.67 -Nodes (2): RestoreTestContextAfterDomainReload, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (2): CommonStrings, UnityEditor.Build.Utilities ### Community 1282 - "Community 1282" Cohesion: 0.67 -Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, UnityWorkItemDataHolder +Nodes (2): ContextData, UnityEditor.ShaderGraph ### Community 1283 - "Community 1283" Cohesion: 0.67 -Nodes (2): PlayerConnectionMessageIds, UnityEngine.TestRunner.TestLaunchers +Nodes (2): IMaterialSlotHasValue, UnityEditor.ShaderGraph ### Community 1284 - "Community 1284" Cohesion: 0.67 -Nodes (2): RemoteTestData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): ICanChangeShaderGUI, UnityEditor.Graphing ### Community 1285 - "Community 1285" Cohesion: 0.67 -Nodes (2): RemoteTestResultData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): IGroupItem, UnityEditor.ShaderGraph ### Community 1286 - "Community 1286" Cohesion: 0.67 -Nodes (2): RemoteTestResultDataWithTestData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): AbstractMaterialNode0, UnityEditor.ShaderGraph.Legacy ### Community 1287 - "Community 1287" Cohesion: 0.67 -Nodes (2): IMonoBehaviourTest, UnityEngine.TestTools +Nodes (2): Edge0, UnityEditor.ShaderGraph.Legacy ### Community 1288 - "Community 1288" Cohesion: 0.67 -Nodes (2): TMP_UIStyleManager, TMPro.EditorUtilities +Nodes (2): GraphData0, UnityEditor.ShaderGraph.Legacy ### Community 1289 - "Community 1289" Cohesion: 0.67 -Nodes (2): TMP_GlyphPairAdjustmentRecord, TMPro +Nodes (2): GroupData0, UnityEditor.ShaderGraph.Legacy ### Community 1290 - "Community 1290" Cohesion: 0.67 -Nodes (2): CodePoint, TMPro +Nodes (2): IMasterNode1, UnityEditor.ShaderGraph.Legacy ### Community 1291 - "Community 1291" Cohesion: 0.67 -Nodes (2): TMP_TextElement, TMPro +Nodes (2): ShaderInput0, UnityEditor.ShaderGraph.Legacy ### Community 1292 - "Community 1292" Cohesion: 0.67 -Nodes (2): TMP_TextElement_Legacy, TMPro +Nodes (2): SlotReference0, UnityEditor.ShaderGraph.Legacy ### Community 1293 - "Community 1293" Cohesion: 0.67 -Nodes (2): IMenuChecked, UnityEditor.Timeline +Nodes (2): StickyNoteData0, UnityEditor.ShaderGraph.Legacy ### Community 1294 - "Community 1294" Cohesion: 0.67 -Nodes (2): IMenuName, UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1295 - "Community 1295" Cohesion: 0.67 -Nodes (2): TimelineShortcutAttribute, UnityEditor.Timeline.Actions +Nodes (2): IRectInterface, UnityEditor.ShaderGraph ### Community 1296 - "Community 1296" Cohesion: 0.67 -Nodes (2): ItemsGroup, UnityEditor.Timeline +Nodes (2): FieldCondition, UnityEditor.ShaderGraph ### Community 1297 - "Community 1297" Cohesion: 0.67 -Nodes (2): ItemsPerTrack, UnityEditor.Timeline +Nodes (2): AdditionalCommandDescriptor, UnityEditor.ShaderGraph ### Community 1298 - "Community 1298" Cohesion: 0.67 -Nodes (2): TimelineClipGroup, UnityEditor.Timeline +Nodes (2): FieldDescriptor, UnityEditor.ShaderGraph ### Community 1299 - "Community 1299" Cohesion: 0.67 -Nodes (2): ManipulatorsUtils, UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1300 - "Community 1300" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1301 - "Community 1301" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): BlockFields, UnityEditor.ShaderGraph ### Community 1302 - "Community 1302" Cohesion: 0.67 -Nodes (1): UnityEditor +Nodes (2): FieldDependencies, UnityEditor.ShaderGraph ### Community 1303 - "Community 1303" Cohesion: 0.67 -Nodes (1): UnityEditor +Nodes (2): Fields, UnityEditor.ShaderGraph ### Community 1304 - "Community 1304" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): StructFields, UnityEditor.ShaderGraph ### Community 1305 - "Community 1305" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): Structs, UnityEditor.ShaderGraph ### Community 1306 - "Community 1306" Cohesion: 0.67 -Nodes (2): UnityEditor.Timeline, WindowConstants +Nodes (2): BuiltInFields, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1307 - "Community 1307" Cohesion: 0.67 -Nodes (2): INotificationOptionProvider, UnityEngine.Timeline +Nodes (2): BuiltInStructFields, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1308 - "Community 1308" Cohesion: 0.67 -Nodes (2): AnimationTriggers, UnityEngine.UI +Nodes (2): BuiltInStructs, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1309 - "Community 1309" Cohesion: 0.67 -Nodes (1): UnityEngine.UI +Nodes (2): IConditional, UnityEditor.ShaderGraph ### Community 1310 - "Community 1310" Cohesion: 0.67 -Nodes (1): UnityEngine.UI +Nodes (2): IRequiresData, UnityEditor.ShaderGraph ### Community 1311 - "Community 1311" Cohesion: 0.67 -Nodes (2): ReflectionMethodsCache, UnityEngine.UI +Nodes (2): TypeMapping, UnityEditor.Graphing.Util ### Community 1312 - "Community 1312" Cohesion: 0.67 -Nodes (2): BoltStyles, Unity.VisualScripting +Nodes (2): EnumInfo, UnityEditor.ShaderGraph ### Community 1313 - "Community 1313" Cohesion: 0.67 -Nodes (2): IAnalysis, Unity.VisualScripting +Nodes (2): IRequiredSetting, UnityEngine.Rendering ### Community 1314 - "Community 1314" Cohesion: 0.67 -Nodes (2): ReorderableListStyles, Unity.VisualScripting.ReorderableList +Nodes (2): PRSIRequiredSetting, UnityEngine.Rendering ### Community 1315 - "Community 1315" Cohesion: 0.67 -Nodes (2): LudiqGraphsEditorUtility, Unity.VisualScripting +Nodes (2): PixelShaderNodeTests, UnityEditor.ShaderGraph.UnitTests ### Community 1316 - "Community 1316" Cohesion: 0.67 -Nodes (2): InspectorUtility, Unity.VisualScripting +Nodes (2): ITestAdaptor, UnityEditor.TestTools.TestRunner.Api ### Community 1317 - "Community 1317" Cohesion: 0.67 -Nodes (2): ListOption, Unity.VisualScripting +Nodes (2): TestRunProgress, UnityEditor.TestTools.TestRunner.Api ### Community 1318 - "Community 1318" Cohesion: 0.67 -Nodes (2): LudiqStyles, Unity.VisualScripting +Nodes (2): RunFinishedData, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 1319 - "Community 1319" Cohesion: 0.67 -Nodes (2): SharedEditorTextureDictionary, Unity.VisualScripting +Nodes (2): TestTreeData, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 1320 - "Community 1320" Cohesion: 0.67 -Nodes (1): Unity.VisualScripting +Nodes (2): IRunData, UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 1321 - "Community 1321" Cohesion: 0.67 -Nodes (2): ColorPalette, Unity.VisualScripting +Nodes (2): RenderingOptions, UnityEditor.TestTools.TestRunner.GUI ### Community 1322 - "Community 1322" Cohesion: 0.67 -Nodes (2): IDropdownOption, Unity.VisualScripting +Nodes (2): RunProgress, UnityEditor.TestTools.TestRunner.TestRun ### Community 1323 - "Community 1323" Cohesion: 0.67 -Nodes (2): FontCollection, Unity.VisualScripting +Nodes (2): TaskInfo, UnityEditor.TestTools.TestRunner.TestRun ### Community 1324 - "Community 1324" Cohesion: 0.67 -Nodes (2): FuzzyGroup, Unity.VisualScripting +Nodes (2): TestProgress, UnityEditor.TestTools.TestRunner.TestRun ### Community 1325 - "Community 1325" Cohesion: 0.67 -Nodes (2): IconSize, Unity.VisualScripting +Nodes (2): ISceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene ### Community 1326 - "Community 1326" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): IEditorAssembliesProxy, UnityEditor.TestTools.TestRunner ### Community 1327 - "Community 1327" Cohesion: 0.67 -Nodes (2): Licenses, Unity.VisualScripting +Nodes (2): ITestListCacheData, UnityEditor.TestTools.TestRunner ### Community 1328 - "Community 1328" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): TestRunData, UnityEditor.TestRunner.UnityTestProtocol ### Community 1329 - "Community 1329" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): BuildSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1330 - "Community 1330" Cohesion: 0.67 -Nodes (2): IPluginLinked, Unity.VisualScripting +Nodes (2): PlayerSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1331 - "Community 1331" Cohesion: 0.67 -Nodes (2): ThreadableAssetWrapper, Unity.VisualScripting +Nodes (2): PlayerSystemInfo, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1332 - "Community 1332" Cohesion: 0.67 -Nodes (2): LudiqEditorUtility, Unity.VisualScripting +Nodes (2): QualitySettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1333 - "Community 1333" Cohesion: 0.67 -Nodes (2): PackageVersionUtility, Unity.VisualScripting +Nodes (2): ScreenSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1334 - "Community 1334" Cohesion: 0.67 -Nodes (2): ISearchResult, Unity.VisualScripting +Nodes (2): EnumerableTestState, UnityEngine.TestTools ### Community 1335 - "Community 1335" Cohesion: 0.67 -Nodes (2): IAboutable, Unity.VisualScripting +Nodes (2): FeatureFlags, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 1336 - "Community 1336" Cohesion: 0.67 -Nodes (2): UnitConnectionStyles, Unity.VisualScripting +Nodes (2): RestoreTestContextAfterDomainReload, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 1337 - "Community 1337" Cohesion: 0.67 -Nodes (2): UnitOptionUtility, Unity.VisualScripting +Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, UnityWorkItemDataHolder ### Community 1338 - "Community 1338" Cohesion: 0.67 -Nodes (2): ISpecifiesCloner, Unity.VisualScripting +Nodes (2): PlayerConnectionMessageIds, UnityEngine.TestRunner.TestLaunchers ### Community 1339 - "Community 1339" Cohesion: 0.67 -Nodes (2): INotifyCollectionChanged, Unity.VisualScripting +Nodes (2): RemoteTestData, UnityEngine.TestRunner.TestLaunchers ### Community 1340 - "Community 1340" Cohesion: 0.67 -Nodes (2): IConnection, Unity.VisualScripting +Nodes (2): RemoteTestResultData, UnityEngine.TestRunner.TestLaunchers ### Community 1341 - "Community 1341" Cohesion: 0.67 -Nodes (2): IDecoratorAttribute, Unity.VisualScripting +Nodes (2): RemoteTestResultDataWithTestData, UnityEngine.TestRunner.TestLaunchers ### Community 1342 - "Community 1342" Cohesion: 0.67 -Nodes (2): fsConverterRegistrar, Unity.VisualScripting.FullSerializer +Nodes (2): IMonoBehaviourTest, UnityEngine.TestTools ### Community 1343 - "Community 1343" Cohesion: 0.67 -Nodes (2): fsTypeCache, Unity.VisualScripting.FullSerializer +Nodes (2): TMP_UIStyleManager, TMPro.EditorUtilities ### Community 1344 - "Community 1344" Cohesion: 0.67 -Nodes (2): EditorBindingUtility, Unity.VisualScripting +Nodes (2): TMP_GlyphPairAdjustmentRecord, TMPro ### Community 1345 - "Community 1345" Cohesion: 0.67 -Nodes (2): EditorTimeBinding, Unity.VisualScripting +Nodes (2): CodePoint, TMPro ### Community 1346 - "Community 1346" Cohesion: 0.67 -Nodes (2): IInspectableAttribute, Unity.VisualScripting +Nodes (2): TMP_TextElement, TMPro ### Community 1347 - "Community 1347" Cohesion: 0.67 -Nodes (2): EnsureThat, Unity.VisualScripting +Nodes (2): TMP_TextElement_Legacy, TMPro ### Community 1348 - "Community 1348" Cohesion: 0.67 -Nodes (2): ExceptionMessages, Unity.VisualScripting +Nodes (2): IMenuChecked, UnityEditor.Timeline ### Community 1349 - "Community 1349" Cohesion: 0.67 -Nodes (2): EventHooks, Unity.VisualScripting +Nodes (2): IMenuName, UnityEditor.Timeline ### Community 1350 - "Community 1350" Cohesion: 0.67 -Nodes (2): IGraphElementData, Unity.VisualScripting +Nodes (2): TimelineShortcutAttribute, UnityEditor.Timeline.Actions ### Community 1351 - "Community 1351" Cohesion: 0.67 -Nodes (2): IGraphElementDebugData, Unity.VisualScripting +Nodes (2): ItemsGroup, UnityEditor.Timeline ### Community 1352 - "Community 1352" Cohesion: 0.67 -Nodes (2): IGraphItem, Unity.VisualScripting +Nodes (2): ItemsPerTrack, UnityEditor.Timeline ### Community 1353 - "Community 1353" Cohesion: 0.67 -Nodes (2): ProfiledSegment, Unity.VisualScripting +Nodes (2): TimelineClipGroup, UnityEditor.Timeline ### Community 1354 - "Community 1354" Cohesion: 0.67 -Nodes (2): OperatorHandler, Unity.VisualScripting +Nodes (2): ManipulatorsUtils, UnityEditor.Timeline ### Community 1355 - "Community 1355" Cohesion: 0.67 -Nodes (2): ISerializedPropertyProvider, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1356 - "Community 1356" Cohesion: 0.67 -Nodes (2): ISingleton, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1357 - "Community 1357" Cohesion: 0.67 -Nodes (2): IUnityObjectOwnable, Unity.VisualScripting +Nodes (1): UnityEditor ### Community 1358 - "Community 1358" Cohesion: 0.67 -Nodes (2): IIdentifiable, Unity.VisualScripting +Nodes (1): UnityEditor ### Community 1359 - "Community 1359" Cohesion: 0.67 -Nodes (2): Unity.VisualScripting, VariableDeclaration +Nodes (1): UnityEditor.Timeline ### Community 1360 - "Community 1360" Cohesion: 0.67 -Nodes (2): IDefaultValue, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1361 - "Community 1361" Cohesion: 0.67 -Nodes (2): IMouseEventUnit, Unity.VisualScripting +Nodes (2): UnityEditor.Timeline, WindowConstants ### Community 1362 - "Community 1362" Cohesion: 0.67 -Nodes (2): IUnitPortDefinition, Unity.VisualScripting +Nodes (2): INotificationOptionProvider, UnityEngine.Timeline ### Community 1363 - "Community 1363" Cohesion: 0.67 -Nodes (2): StateEventHooks, Unity.VisualScripting +Nodes (2): AnimationTriggers, UnityEngine.UI ### Community 1364 - "Community 1364" Cohesion: 0.67 -Nodes (0): +Nodes (1): UnityEngine.UI ### Community 1365 - "Community 1365" Cohesion: 0.67 -Nodes (0): +Nodes (1): UnityEngine.UI ### Community 1366 - "Community 1366" -Cohesion: 1.0 -Nodes (1): ETSystemMethodIsInStaticPartialClassRule +Cohesion: 0.67 +Nodes (2): ReflectionMethodsCache, UnityEngine.UI ### Community 1367 - "Community 1367" -Cohesion: 1.0 -Nodes (1): 翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0 +Cohesion: 0.67 +Nodes (2): BoltStyles, Unity.VisualScripting ### Community 1368 - "Community 1368" -Cohesion: 1.0 -Nodes (1): 补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752) +Cohesion: 0.67 +Nodes (2): IAnalysis, Unity.VisualScripting ### Community 1369 - "Community 1369" -Cohesion: 1.0 -Nodes (1): 检查 xlsx 的所有 sheet 和真实行数。 +Cohesion: 0.67 +Nodes (2): ReorderableListStyles, Unity.VisualScripting.ReorderableList ### Community 1370 - "Community 1370" -Cohesion: 1.0 -Nodes (1): 把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。 +Cohesion: 0.67 +Nodes (2): LudiqGraphsEditorUtility, Unity.VisualScripting ### Community 1371 - "Community 1371" -Cohesion: 1.0 -Nodes (1): dump 全部 10 条目的 ZH/EN 看格式风格。 +Cohesion: 0.67 +Nodes (2): InspectorUtility, Unity.VisualScripting ### Community 1372 - "Community 1372" -Cohesion: 1.0 -Nodes (1): 扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。 +Cohesion: 0.67 +Nodes (2): ListOption, Unity.VisualScripting ### Community 1373 - "Community 1373" -Cohesion: 1.0 -Nodes (1): 列出 ID=19871 的所有 **<...>** 标签按出现顺序。 +Cohesion: 0.67 +Nodes (2): LudiqStyles, Unity.VisualScripting ### Community 1374 - "Community 1374" -Cohesion: 1.0 -Nodes (1): 读取 ID=19871 的中文原文以便翻译。 +Cohesion: 0.67 +Nodes (2): SharedEditorTextureDictionary, Unity.VisualScripting ### Community 1375 - "Community 1375" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (1): Unity.VisualScripting ### Community 1376 - "Community 1376" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): ColorPalette, Unity.VisualScripting ### Community 1377 - "Community 1377" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IDropdownOption, Unity.VisualScripting ### Community 1378 - "Community 1378" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): FontCollection, Unity.VisualScripting ### Community 1379 - "Community 1379" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): FuzzyGroup, Unity.VisualScripting ### Community 1380 - "Community 1380" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IconSize, Unity.VisualScripting ### Community 1381 - "Community 1381" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1382 - "Community 1382" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): Licenses, Unity.VisualScripting ### Community 1383 - "Community 1383" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1384 - "Community 1384" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1385 - "Community 1385" -Cohesion: 1.0 -Nodes (1): GCloud.UQM +Cohesion: 0.67 +Nodes (2): IPluginLinked, Unity.VisualScripting ### Community 1386 - "Community 1386" -Cohesion: 1.0 -Nodes (1): Animancer.Examples.StateMachines +Cohesion: 0.67 +Nodes (2): ThreadableAssetWrapper, Unity.VisualScripting ### Community 1387 - "Community 1387" -Cohesion: 1.0 -Nodes (1): Animancer +Cohesion: 0.67 +Nodes (2): LudiqEditorUtility, Unity.VisualScripting ### Community 1388 - "Community 1388" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): PackageVersionUtility, Unity.VisualScripting ### Community 1389 - "Community 1389" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): ISearchResult, Unity.VisualScripting ### Community 1390 - "Community 1390" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): IAboutable, Unity.VisualScripting ### Community 1391 - "Community 1391" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): UnitConnectionStyles, Unity.VisualScripting ### Community 1392 - "Community 1392" -Cohesion: 1.0 -Nodes (1): ParadoxNotion.Design +Cohesion: 0.67 +Nodes (2): UnitOptionUtility, Unity.VisualScripting ### Community 1393 - "Community 1393" -Cohesion: 1.0 -Nodes (1): ParadoxNotion +Cohesion: 0.67 +Nodes (2): ISpecifiesCloner, Unity.VisualScripting ### Community 1394 - "Community 1394" -Cohesion: 1.0 -Nodes (1): ParadoxNotion +Cohesion: 0.67 +Nodes (2): INotifyCollectionChanged, Unity.VisualScripting ### Community 1395 - "Community 1395" -Cohesion: 1.0 -Nodes (1): NodeCanvas.Framework +Cohesion: 0.67 +Nodes (2): IConnection, Unity.VisualScripting ### Community 1396 - "Community 1396" -Cohesion: 1.0 -Nodes (1): NodeCanvas.Framework.Internal +Cohesion: 0.67 +Nodes (2): IDecoratorAttribute, Unity.VisualScripting ### Community 1397 - "Community 1397" -Cohesion: 1.0 -Nodes (1): NodeCanvas.DialogueTrees +Cohesion: 0.67 +Nodes (2): fsConverterRegistrar, Unity.VisualScripting.FullSerializer ### Community 1398 - "Community 1398" -Cohesion: 1.0 -Nodes (1): ViConstValueDefine +Cohesion: 0.67 +Nodes (2): fsTypeCache, Unity.VisualScripting.FullSerializer ### Community 1399 - "Community 1399" -Cohesion: 1.0 -Nodes (1): TH1_Core.Events +Cohesion: 0.67 +Nodes (2): EditorBindingUtility, Unity.VisualScripting ### Community 1400 - "Community 1400" -Cohesion: 1.0 -Nodes (1): DebugCenter +Cohesion: 0.67 +Nodes (2): EditorTimeBinding, Unity.VisualScripting ### Community 1401 - "Community 1401" -Cohesion: 1.0 -Nodes (1): ViewMaskProperty +Cohesion: 0.67 +Nodes (2): IInspectableAttribute, Unity.VisualScripting ### Community 1402 - "Community 1402" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): EnsureThat, Unity.VisualScripting ### Community 1403 - "Community 1403" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): ExceptionMessages, Unity.VisualScripting ### Community 1404 - "Community 1404" -Cohesion: 1.0 -Nodes (1): NugetForUnity.Configuration +Cohesion: 0.67 +Nodes (2): EventHooks, Unity.VisualScripting ### Community 1405 - "Community 1405" -Cohesion: 1.0 -Nodes (1): NugetForUnity.Models +Cohesion: 0.67 +Nodes (2): IGraphElementData, Unity.VisualScripting ### Community 1406 - "Community 1406" -Cohesion: 1.0 -Nodes (1): NugetForUnity.Ui +Cohesion: 0.67 +Nodes (2): IGraphElementDebugData, Unity.VisualScripting ### Community 1407 - "Community 1407" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): IGraphItem, Unity.VisualScripting ### Community 1408 - "Community 1408" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): ProfiledSegment, Unity.VisualScripting ### Community 1409 - "Community 1409" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): OperatorHandler, Unity.VisualScripting ### Community 1410 - "Community 1410" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): ISerializedPropertyProvider, Unity.VisualScripting ### Community 1411 - "Community 1411" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): ISingleton, Unity.VisualScripting ### Community 1412 - "Community 1412" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): IUnityObjectOwnable, Unity.VisualScripting ### Community 1413 - "Community 1413" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): IIdentifiable, Unity.VisualScripting ### Community 1414 - "Community 1414" -Cohesion: 1.0 -Nodes (1): YooAsset +Cohesion: 0.67 +Nodes (2): Unity.VisualScripting, VariableDeclaration ### Community 1415 - "Community 1415" -Cohesion: 1.0 -Nodes (1): YooAsset +Cohesion: 0.67 +Nodes (2): IDefaultValue, Unity.VisualScripting ### Community 1416 - "Community 1416" -Cohesion: 1.0 -Nodes (1): YooAsset +Cohesion: 0.67 +Nodes (2): IMouseEventUnit, Unity.VisualScripting ### Community 1417 - "Community 1417" -Cohesion: 1.0 -Nodes (1): StreamingAssetsDefine +Cohesion: 0.67 +Nodes (2): IUnitPortDefinition, Unity.VisualScripting ### Community 1418 - "Community 1418" -Cohesion: 1.0 -Nodes (1): UnityEditor.U2D.Animation +Cohesion: 0.67 +Nodes (2): StateEventHooks, Unity.VisualScripting ### Community 1419 - "Community 1419" -Cohesion: 1.0 -Nodes (1): UnityEditor.U2D.Animation.SpriteLibraryEditor +Cohesion: 0.67 +Nodes (0): ### Community 1420 - "Community 1420" -Cohesion: 1.0 -Nodes (1): PDNWrapper +Cohesion: 0.67 +Nodes (0): ### Community 1421 - "Community 1421" Cohesion: 1.0 -Nodes (1): PDNWrapper +Nodes (1): ETSystemMethodIsInStaticPartialClassRule ### Community 1422 - "Community 1422" Cohesion: 1.0 -Nodes (1): UnityEditor.Tilemaps +Nodes (1): 翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0 ### Community 1423 - "Community 1423" Cohesion: 1.0 -Nodes (1): Unity.Burst +Nodes (1): 补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752) ### Community 1424 - "Community 1424" Cohesion: 1.0 -Nodes (1): Unity.Burst +Nodes (1): 检查 xlsx 的所有 sheet 和真实行数。 ### Community 1425 - "Community 1425" Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Nodes (1): 把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。 ### Community 1426 - "Community 1426" Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Nodes (1): dump 全部 10 条目的 ZH/EN 看格式风格。 ### Community 1427 - "Community 1427" Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Nodes (1): 扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。 ### Community 1428 - "Community 1428" Cohesion: 1.0 -Nodes (1): Unity.PlasticSCM.Editor.UI +Nodes (1): 列出 ID=19871 的所有 **<...>** 标签按出现顺序。 ### Community 1429 - "Community 1429" Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor +Nodes (1): 读取 ID=19871 的中文原文以便翻译。 ### Community 1430 - "Community 1430" Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor.Debugger +Nodes (1): Steamworks ### Community 1431 - "Community 1431" Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor.ProjectGeneration +Nodes (1): Steamworks ### Community 1432 - "Community 1432" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor +Nodes (1): Steamworks ### Community 1433 - "Community 1433" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (1): Steamworks ### Community 1434 - "Community 1434" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor +Nodes (1): Steamworks ### Community 1435 - "Community 1435" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor.Testing +Nodes (1): Steamworks ### Community 1436 - "Community 1436" Cohesion: 1.0 -Nodes (1): Unity.Mathematics +Nodes (1): Steamworks ### Community 1437 - "Community 1437" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering +Nodes (1): Steamworks ### Community 1438 - "Community 1438" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering +Nodes (1): Steamworks ### Community 1439 - "Community 1439" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): Steamworks ### Community 1440 - "Community 1440" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): GCloud.UQM ### Community 1441 - "Community 1441" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): Animancer.Examples.StateMachines ### Community 1442 - "Community 1442" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): Animancer ### Community 1443 - "Community 1443" Cohesion: 1.0 -Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule +Nodes (0): ### Community 1444 - "Community 1444" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (0): ### Community 1445 - "Community 1445" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (0): ### Community 1446 - "Community 1446" Cohesion: 1.0 -Nodes (1): DummyShaderLibrary +Nodes (0): ### Community 1447 - "Community 1447" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): ParadoxNotion.Design ### Community 1448 - "Community 1448" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): ParadoxNotion ### Community 1449 - "Community 1449" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): ParadoxNotion ### Community 1450 - "Community 1450" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): NodeCanvas.Framework ### Community 1451 - "Community 1451" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): NodeCanvas.Framework.Internal ### Community 1452 - "Community 1452" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): NodeCanvas.DialogueTrees ### Community 1453 - "Community 1453" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): ViConstValueDefine ### Community 1454 - "Community 1454" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal.Internal +Nodes (1): TH1_Core.Events ### Community 1455 - "Community 1455" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): DebugCenter ### Community 1456 - "Community 1456" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): ViewMaskProperty ### Community 1457 - "Community 1457" Cohesion: 1.0 -Nodes (1): ShadersDummy +Nodes (0): ### Community 1458 - "Community 1458" Cohesion: 1.0 -Nodes (1): UnityEditor.Build.Pipeline +Nodes (0): ### Community 1459 - "Community 1459" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): NugetForUnity.Configuration ### Community 1460 - "Community 1460" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): NugetForUnity.Models ### Community 1461 - "Community 1461" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): NugetForUnity.Ui ### Community 1462 - "Community 1462" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): YooAsset.Editor ### Community 1463 - "Community 1463" Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Nodes (1): YooAsset.Editor ### Community 1464 - "Community 1464" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): YooAsset.Editor ### Community 1465 - "Community 1465" Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Nodes (1): YooAsset.Editor ### Community 1466 - "Community 1466" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): YooAsset.Editor ### Community 1467 - "Community 1467" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): YooAsset.Editor ### Community 1468 - "Community 1468" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): YooAsset.Editor ### Community 1469 - "Community 1469" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): YooAsset ### Community 1470 - "Community 1470" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): YooAsset ### Community 1471 - "Community 1471" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): YooAsset ### Community 1472 - "Community 1472" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): StreamingAssetsDefine ### Community 1473 - "Community 1473" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.U2D.Animation ### Community 1474 - "Community 1474" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.U2D.Animation.SpriteLibraryEditor ### Community 1475 - "Community 1475" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): PDNWrapper ### Community 1476 - "Community 1476" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): PDNWrapper ### Community 1477 - "Community 1477" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Tilemaps ### Community 1478 - "Community 1478" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst ### Community 1479 - "Community 1479" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst ### Community 1480 - "Community 1480" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst.Intrinsics ### Community 1481 - "Community 1481" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst.Intrinsics ### Community 1482 - "Community 1482" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst.Intrinsics ### Community 1483 - "Community 1483" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.PlasticSCM.Editor.UI ### Community 1484 - "Community 1484" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Packages.Rider.Editor ### Community 1485 - "Community 1485" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Packages.Rider.Editor.Debugger ### Community 1486 - "Community 1486" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Packages.Rider.Editor.ProjectGeneration ### Community 1487 - "Community 1487" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Microsoft.Unity.VisualStudio.Editor ### Community 1488 - "Community 1488" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1489 - "Community 1489" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): Microsoft.Unity.VisualStudio.Editor ### Community 1490 - "Community 1490" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Microsoft.Unity.VisualStudio.Editor.Testing ### Community 1491 - "Community 1491" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Mathematics ### Community 1492 - "Community 1492" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering ### Community 1493 - "Community 1493" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering ### Community 1494 - "Community 1494" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1495 - "Community 1495" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1496 - "Community 1496" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1497 - "Community 1497" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.HighDefinition +Nodes (1): UnityEngine.Rendering ### Community 1498 - "Community 1498" Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 1499 - "Community 1499" Cohesion: 1.0 -Nodes (1): DummyShaderGraphLibrary +Nodes (1): UnityEngine.Rendering ### Community 1500 - "Community 1500" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Nodes (1): UnityEngine.Rendering ### Community 1501 - "Community 1501" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Nodes (1): DummyShaderLibrary ### Community 1502 - "Community 1502" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Nodes (1): UnityEditor.Rendering.Universal ### Community 1503 - "Community 1503" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEditor.Rendering.Universal ### Community 1504 - "Community 1504" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEditor.Rendering.Universal ### Community 1505 - "Community 1505" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEditor.Rendering.Universal ### Community 1506 - "Community 1506" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (1): UnityEditor.Rendering.Universal ### Community 1507 - "Community 1507" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.TestRun +Nodes (1): UnityEngine.Rendering.Universal ### Community 1508 - "Community 1508" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (1): UnityEngine.Rendering.Universal ### Community 1509 - "Community 1509" Cohesion: 1.0 -Nodes (1): UnityEngine.TestRunner.TestProtocol +Nodes (1): UnityEngine.Rendering.Universal.Internal ### Community 1510 - "Community 1510" Cohesion: 1.0 -Nodes (1): TMPro.EditorUtilities +Nodes (1): UnityEngine.Rendering.Universal ### Community 1511 - "Community 1511" Cohesion: 1.0 -Nodes (1): TMPro +Nodes (1): UnityEngine.Rendering.Universal ### Community 1512 - "Community 1512" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline.Actions +Nodes (1): ShadersDummy ### Community 1513 - "Community 1513" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline.Actions +Nodes (1): UnityEditor.Build.Pipeline ### Community 1514 - "Community 1514" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1515 - "Community 1515" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1516 - "Community 1516" Cohesion: 1.0 -Nodes (1): UnityEngine.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1517 - "Community 1517" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): UnityEditor.ShaderGraph ### Community 1518 - "Community 1518" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): UnityEditor.Graphing ### Community 1519 - "Community 1519" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1520 - "Community 1520" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Graphing ### Community 1521 - "Community 1521" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1522 - "Community 1522" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1523 - "Community 1523" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1524 - "Community 1524" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1525 - "Community 1525" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.ReorderableList +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1526 - "Community 1526" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1527 - "Community 1527" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1528 - "Community 1528" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1529 - "Community 1529" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1530 - "Community 1530" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1531 - "Community 1531" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1532 - "Community 1532" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1533 - "Community 1533" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1534 - "Community 1534" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1535 - "Community 1535" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1536 - "Community 1536" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1537 - "Community 1537" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.FullSerializer +Nodes (1): UnityEditor.ShaderGraph ### Community 1538 - "Community 1538" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1539 - "Community 1539" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1540 - "Community 1540" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1541 - "Community 1541" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1542 - "Community 1542" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1543 - "Community 1543" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1544 - "Community 1544" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1545 - "Community 1545" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1546 - "Community 1546" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1547 - "Community 1547" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1548 - "Community 1548" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1549 - "Community 1549" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1550 - "Community 1550" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1551 - "Community 1551" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1552 - "Community 1552" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEngine.Rendering.HighDefinition ### Community 1553 - "Community 1553" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Graphing ### Community 1554 - "Community 1554" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): DummyShaderGraphLibrary ### Community 1555 - "Community 1555" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1556 - "Community 1556" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1557 - "Community 1557" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1558 - "Community 1558" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1559 - "Community 1559" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1560 - "Community 1560" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1561 - "Community 1561" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 1562 - "Community 1562" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.TestRun ### Community 1563 - "Community 1563" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1564 - "Community 1564" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.TestRunner.TestProtocol ### Community 1565 - "Community 1565" Cohesion: 1.0 -Nodes (0): +Nodes (1): TMPro.EditorUtilities ### Community 1566 - "Community 1566" Cohesion: 1.0 -Nodes (0): +Nodes (1): TMPro ### Community 1567 - "Community 1567" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline.Actions ### Community 1568 - "Community 1568" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline.Actions ### Community 1569 - "Community 1569" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline ### Community 1570 - "Community 1570" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline ### Community 1571 - "Community 1571" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Timeline ### Community 1572 - "Community 1572" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.EventSystems ### Community 1573 - "Community 1573" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.EventSystems ### Community 1574 - "Community 1574" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.EventSystems ### Community 1575 - "Community 1575" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1576 - "Community 1576" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1577 - "Community 1577" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1578 - "Community 1578" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1579 - "Community 1579" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1580 - "Community 1580" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.ReorderableList ### Community 1581 - "Community 1581" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1582 - "Community 1582" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1583 - "Community 1583" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1584 - "Community 1584" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1585 - "Community 1585" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1586 - "Community 1586" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1587 - "Community 1587" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1588 - "Community 1588" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1589 - "Community 1589" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1590 - "Community 1590" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1591 - "Community 1591" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1592 - "Community 1592" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.FullSerializer ### Community 1593 - "Community 1593" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1594 - "Community 1594" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1595 - "Community 1595" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1596 - "Community 1596" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1597 - "Community 1597" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1598 - "Community 1598" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1599 - "Community 1599" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1600 - "Community 1600" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1601 - "Community 1601" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1602 - "Community 1602" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1603 - "Community 1603" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1604 - "Community 1604" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1605 - "Community 1605" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1606 - "Community 1606" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1607 - "Community 1607" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1608 - "Community 1608" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1609 - "Community 1609" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1610 - "Community 1610" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1611 - "Community 1611" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1612 - "Community 1612" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1613 - "Community 1613" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1614 - "Community 1614" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1615 - "Community 1615" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1616 - "Community 1616" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1617 - "Community 1617" Cohesion: 1.0 @@ -9777,1878 +9832,1988 @@ Nodes (0): ### Community 1906 - "Community 1906" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (0): ### Community 1907 - "Community 1907" Cohesion: 1.0 -Nodes (1): Load suggestions.json from DOC/, return dict with nextId and suggestions list. +Nodes (0): ### Community 1908 - "Community 1908" Cohesion: 1.0 -Nodes (1): Load todos.json from DOC/, return dict with nextId and todos list. +Nodes (0): ### Community 1909 - "Community 1909" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (0): ### Community 1910 - "Community 1910" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (0): ### Community 1911 - "Community 1911" Cohesion: 1.0 -Nodes (1): Save suggestions.json to DOC/. +Nodes (0): ### Community 1912 - "Community 1912" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (0): ### Community 1913 - "Community 1913" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (0): ### Community 1914 - "Community 1914" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (0): ### Community 1915 - "Community 1915" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (0): ### Community 1916 - "Community 1916" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (0): ### Community 1917 - "Community 1917" Cohesion: 1.0 -Nodes (1): Save core player feedback collections to Dashboard data. +Nodes (0): ### Community 1918 - "Community 1918" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (0): ### Community 1919 - "Community 1919" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (0): ### Community 1920 - "Community 1920" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (0): ### Community 1921 - "Community 1921" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (0): ### Community 1922 - "Community 1922" Cohesion: 1.0 -Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ +Nodes (0): ### Community 1923 - "Community 1923" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (0): ### Community 1924 - "Community 1924" Cohesion: 1.0 -Nodes (1): Run export_data.py and return the result as JSON. +Nodes (0): ### Community 1925 - "Community 1925" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (0): ### Community 1926 - "Community 1926" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (0): ### Community 1927 - "Community 1927" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (0): ### Community 1928 - "Community 1928" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (0): ### Community 1929 - "Community 1929" Cohesion: 1.0 -Nodes (1): Create a new todo record. +Nodes (0): ### Community 1930 - "Community 1930" Cohesion: 1.0 -Nodes (1): Update a todo's fields. +Nodes (0): ### Community 1931 - "Community 1931" Cohesion: 1.0 -Nodes (1): Create a new suggestion record. +Nodes (0): ### Community 1932 - "Community 1932" Cohesion: 1.0 -Nodes (1): Update a suggestion's fields. +Nodes (0): ### Community 1933 - "Community 1933" Cohesion: 1.0 -Nodes (1): Delete a suggestion by id. +Nodes (0): ### Community 1934 - "Community 1934" Cohesion: 1.0 -Nodes (1): Update a feedback item inside a core player feedback collection. +Nodes (0): ### Community 1935 - "Community 1935" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (0): ### Community 1936 - "Community 1936" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (0): ### Community 1937 - "Community 1937" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (0): ### Community 1938 - "Community 1938" Cohesion: 1.0 -Nodes (1): Fetch new discussions from Steam Community. +Nodes (0): ### Community 1939 - "Community 1939" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (0): ### Community 1940 - "Community 1940" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (0): ### Community 1941 - "Community 1941" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (0): ### Community 1942 - "Community 1942" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (0): ### Community 1943 - "Community 1943" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (0): ### Community 1944 - "Community 1944" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (0): ### Community 1945 - "Community 1945" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (0): ### Community 1946 - "Community 1946" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (0): ### Community 1947 - "Community 1947" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (0): ### Community 1948 - "Community 1948" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (0): ### Community 1949 - "Community 1949" Cohesion: 1.0 -Nodes (1): Fetch new discussions from Steam Community. +Nodes (0): ### Community 1950 - "Community 1950" Cohesion: 1.0 -Nodes (1): Return demo data when Steam is unreachable. +Nodes (0): ### Community 1951 - "Community 1951" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (0): ### Community 1952 - "Community 1952" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (0): ### Community 1953 - "Community 1953" Cohesion: 1.0 -Nodes (1): Load quick replies data. +Nodes (0): ### Community 1954 - "Community 1954" Cohesion: 1.0 -Nodes (1): Persist quick replies data. +Nodes (0): ### Community 1955 - "Community 1955" Cohesion: 1.0 -Nodes (1): GET /api/quick-replies +Nodes (0): ### Community 1956 - "Community 1956" Cohesion: 1.0 -Nodes (1): POST /api/quick-replies/{create|update|delete} +Nodes (0): ### Community 1957 - "Community 1957" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (0): ### Community 1958 - "Community 1958" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (0): ### Community 1959 - "Community 1959" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (0): ### Community 1960 - "Community 1960" Cohesion: 1.0 -Nodes (1): Save suggestions.json to DOC/. +Nodes (0): ### Community 1961 - "Community 1961" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 1962 - "Community 1962" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (1): Load suggestions.json from DOC/, return dict with nextId and suggestions list. ### Community 1963 - "Community 1963" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (1): Load todos.json from DOC/, return dict with nextId and todos list. ### Community 1964 - "Community 1964" Cohesion: 1.0 -Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ +Nodes (1): Load devplan.json from DOC/. ### Community 1965 - "Community 1965" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (1): Save devplan.json to DOC/. ### Community 1966 - "Community 1966" Cohesion: 1.0 -Nodes (1): Run export_data.py and return the result as JSON. +Nodes (1): Save suggestions.json to DOC/. ### Community 1967 - "Community 1967" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (1): Load devplan.json from DOC/. ### Community 1968 - "Community 1968" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (1): Save devplan.json to DOC/. ### Community 1969 - "Community 1969" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files ### Community 1970 - "Community 1970" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (1): Load the sentiment index.json, return list. ### Community 1971 - "Community 1971" Cohesion: 1.0 -Nodes (1): Create a new suggestion record. +Nodes (1): Save the sentiment index.json. ### Community 1972 - "Community 1972" Cohesion: 1.0 -Nodes (1): Update a suggestion's fields. +Nodes (1): Save core player feedback collections to Dashboard data. ### Community 1973 - "Community 1973" Cohesion: 1.0 -Nodes (1): Delete a suggestion by id. +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files ### Community 1974 - "Community 1974" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (1): Handles static files and API endpoints. ### Community 1975 - "Community 1975" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (1): List available version folders in data/oss/. ### Community 1976 - "Community 1976" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. ### Community 1977 - "Community 1977" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ ### Community 1978 - "Community 1978" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi ### Community 1979 - "Community 1979" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (1): Run export_data.py and return the result as JSON. ### Community 1980 - "Community 1980" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (1): Create a new sentiment record from multipart form data. ### Community 1981 - "Community 1981" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (1): Delete a sentiment record by id. ### Community 1982 - "Community 1982" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (1): Create a new bug record. ### Community 1983 - "Community 1983" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 1984 - "Community 1984" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (1): Create a new todo record. ### Community 1985 - "Community 1985" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (1): Update a todo's fields. ### Community 1986 - "Community 1986" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (1): Create a new suggestion record. ### Community 1987 - "Community 1987" Cohesion: 1.0 -Nodes (1): Return demo data when Steam is unreachable. +Nodes (1): Update a suggestion's fields. ### Community 1988 - "Community 1988" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): Delete a suggestion by id. ### Community 1989 - "Community 1989" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): Update a feedback item inside a core player feedback collection. ### Community 1990 - "Community 1990" Cohesion: 1.0 -Nodes (1): Load quick replies data. +Nodes (1): Create a new marketing TODO item. ### Community 1991 - "Community 1991" Cohesion: 1.0 -Nodes (1): Persist quick replies data. +Nodes (1): Toggle a TODO item's done state. ### Community 1992 - "Community 1992" Cohesion: 1.0 -Nodes (1): GET /api/quick-replies +Nodes (1): Update a task's description or other fields. ### Community 1993 - "Community 1993" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (1): Fetch new discussions from Steam Community. ### Community 1994 - "Community 1994" Cohesion: 1.0 -Nodes (1): 解析特殊标记格式的数据。 新 TXT 格式 16 字段(编辑器 sb.Append 写出,去掉 RU/ES/PT/FR + 加 IsSecondary +Nodes (1): Toggle a subtask's done state. ### Community 1995 - "Community 1995" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (1): Save a marketing event note. ### Community 1996 - "Community 1996" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (1): Create a new marketing event. ### Community 1997 - "Community 1997" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (1): Extract platform name from /api/sns/{platform}... ### Community 1998 - "Community 1998" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (1): Get path to the platform's JSON file. ### Community 1999 - "Community 1999" Cohesion: 1.0 -Nodes (1): Load marketing todos from DOC/marketing/todos.json. +Nodes (1): Load a platform's SNS data. ### Community 2000 - "Community 2000" Cohesion: 1.0 -Nodes (1): Save marketing todos to DOC/marketing/todos.json. +Nodes (1): Save a platform's SNS data. ### Community 2001 - "Community 2001" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (1): Handle GET /api/sns/{platform} ### Community 2002 - "Community 2002" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (1): Handle POST /api/sns/{platform}/update and /delete ### Community 2003 - "Community 2003" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (1): Update (create or modify) a comment. ### Community 2004 - "Community 2004" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (1): Fetch new discussions from Steam Community. ### Community 2005 - "Community 2005" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (1): Return demo data when Steam is unreachable. ### Community 2006 - "Community 2006" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (1): Parse Steam Community discussion list from HTML. ### Community 2007 - "Community 2007" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (1): Bulk create comments from selected discussions. ### Community 2008 - "Community 2008" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (1): Load quick replies data. ### Community 2009 - "Community 2009" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (1): Persist quick replies data. ### Community 2010 - "Community 2010" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (1): GET /api/quick-replies ### Community 2011 - "Community 2011" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (1): POST /api/quick-replies/{create|update|delete} ### Community 2012 - "Community 2012" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (1): Kill any existing processes listening on the target port. ### Community 2013 - "Community 2013" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 2014 - "Community 2014" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (1): Save bugs.json to DOC/. ### Community 2015 - "Community 2015" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (1): Save suggestions.json to DOC/. ### Community 2016 - "Community 2016" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (1): Handles static files and API endpoints. ### Community 2017 - "Community 2017" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (1): List available version folders in data/oss/. ### Community 2018 - "Community 2018" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. ### Community 2019 - "Community 2019" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ ### Community 2020 - "Community 2020" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi ### Community 2021 - "Community 2021" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (1): Run export_data.py and return the result as JSON. ### Community 2022 - "Community 2022" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (1): Create a new sentiment record from multipart form data. ### Community 2023 - "Community 2023" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (1): Delete a sentiment record by id. ### Community 2024 - "Community 2024" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (1): Create a new bug record. ### Community 2025 - "Community 2025" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 2026 - "Community 2026" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (1): Create a new suggestion record. ### Community 2027 - "Community 2027" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (1): Update a suggestion's fields. ### Community 2028 - "Community 2028" Cohesion: 1.0 -Nodes (1): Load quick replies data. +Nodes (1): Delete a suggestion by id. ### Community 2029 - "Community 2029" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): Create a new marketing TODO item. ### Community 2030 - "Community 2030" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): Toggle a TODO item's done state. ### Community 2031 - "Community 2031" Cohesion: 1.0 -Nodes (1): Load quick replies data. +Nodes (1): Update a task's description or other fields. ### Community 2032 - "Community 2032" Cohesion: 1.0 -Nodes (1): Persist quick replies data. +Nodes (1): Create a subtask under a task. ### Community 2033 - "Community 2033" Cohesion: 1.0 -Nodes (1): GET /api/quick-replies +Nodes (1): Toggle a subtask's done state. ### Community 2034 - "Community 2034" Cohesion: 1.0 -Nodes (1): POST /api/quick-replies/{create|update|delete} +Nodes (1): Save a marketing event note. ### Community 2035 - "Community 2035" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (1): Create a new marketing event. ### Community 2036 - "Community 2036" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (1): Get path to the platform's JSON file. ### Community 2037 - "Community 2037" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (1): Load a platform's SNS data. ### Community 2038 - "Community 2038" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (1): Save a platform's SNS data. ### Community 2039 - "Community 2039" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (1): Handle GET /api/sns/{platform} ### Community 2040 - "Community 2040" Cohesion: 1.0 -Nodes (1): Load marketing todos from DOC/marketing/todos.json. +Nodes (1): Handle POST /api/sns/{platform}/update and /delete ### Community 2041 - "Community 2041" Cohesion: 1.0 -Nodes (1): Save marketing todos to DOC/marketing/todos.json. +Nodes (1): Update (create or modify) a comment. ### Community 2042 - "Community 2042" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (1): Return demo data when Steam is unreachable. ### Community 2043 - "Community 2043" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (1): Parse Steam Community discussion list from HTML. ### Community 2044 - "Community 2044" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (1): Bulk create comments from selected discussions. ### Community 2045 - "Community 2045" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (1): Load quick replies data. ### Community 2046 - "Community 2046" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (1): Persist quick replies data. ### Community 2047 - "Community 2047" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (1): GET /api/quick-replies ### Community 2048 - "Community 2048" Cohesion: 1.0 -Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ +Nodes (1): Kill any existing processes listening on the target port. ### Community 2049 - "Community 2049" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (1): 解析特殊标记格式的数据。 新 TXT 格式 16 字段(编辑器 sb.Append 写出,去掉 RU/ES/PT/FR + 加 IsSecondary ### Community 2050 - "Community 2050" Cohesion: 1.0 -Nodes (1): Run export_data.py and return the result as JSON. +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 2051 - "Community 2051" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (1): Save bugs.json to DOC/. ### Community 2052 - "Community 2052" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (1): Load devplan.json from DOC/. ### Community 2053 - "Community 2053" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (1): Save devplan.json to DOC/. ### Community 2054 - "Community 2054" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (1): Load marketing todos from DOC/marketing/todos.json. ### Community 2055 - "Community 2055" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (1): Save marketing todos to DOC/marketing/todos.json. ### Community 2056 - "Community 2056" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (1): Load the sentiment index.json, return list. ### Community 2057 - "Community 2057" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (1): Save the sentiment index.json. ### Community 2058 - "Community 2058" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files ### Community 2059 - "Community 2059" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (1): Handles static files and API endpoints. ### Community 2060 - "Community 2060" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (1): List available version folders in data/oss/. ### Community 2061 - "Community 2061" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. ### Community 2062 - "Community 2062" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (1): Create a new sentiment record from multipart form data. ### Community 2063 - "Community 2063" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi ### Community 2064 - "Community 2064" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 2065 - "Community 2065" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (1): Create a new sentiment record from multipart form data. ### Community 2066 - "Community 2066" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (1): Delete a sentiment record by id. ### Community 2067 - "Community 2067" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (1): Create a new bug record. ### Community 2068 - "Community 2068" Cohesion: 1.0 -Nodes (1): Fetch new discussions from Steam Community. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 2069 - "Community 2069" Cohesion: 1.0 -Nodes (1): Return demo data when Steam is unreachable. +Nodes (1): Create a new marketing TODO item. ### Community 2070 - "Community 2070" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): Toggle a TODO item's done state. ### Community 2071 - "Community 2071" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): Update a task's description or other fields. ### Community 2072 - "Community 2072" Cohesion: 1.0 -Nodes (1): Persist quick replies data. +Nodes (1): Create a subtask under a task. ### Community 2073 - "Community 2073" Cohesion: 1.0 -Nodes (1): GET /api/quick-replies +Nodes (1): Toggle a subtask's done state. ### Community 2074 - "Community 2074" Cohesion: 1.0 -Nodes (1): POST /api/quick-replies/{create|update|delete} +Nodes (1): Save a marketing event note. ### Community 2075 - "Community 2075" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (1): Create a new marketing event. ### Community 2076 - "Community 2076" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (1): Extract platform name from /api/sns/{platform}... ### Community 2077 - "Community 2077" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (1): Get path to the platform's JSON file. ### Community 2078 - "Community 2078" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (1): Load a platform's SNS data. ### Community 2079 - "Community 2079" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (1): Save a platform's SNS data. ### Community 2080 - "Community 2080" Cohesion: 1.0 -Nodes (1): Load marketing todos from DOC/marketing/todos.json. +Nodes (1): Handle GET /api/sns/{platform} ### Community 2081 - "Community 2081" Cohesion: 1.0 -Nodes (1): Save marketing todos to DOC/marketing/todos.json. +Nodes (1): Handle POST /api/sns/{platform}/update and /delete ### Community 2082 - "Community 2082" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (1): Update (create or modify) a comment. ### Community 2083 - "Community 2083" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (1): Load quick replies data. ### Community 2084 - "Community 2084" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (1): Parse Steam Community discussion list from HTML. ### Community 2085 - "Community 2085" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (1): Bulk create comments from selected discussions. ### Community 2086 - "Community 2086" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (1): Load quick replies data. ### Community 2087 - "Community 2087" Cohesion: 1.0 -Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ +Nodes (1): Persist quick replies data. ### Community 2088 - "Community 2088" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (1): GET /api/quick-replies ### Community 2089 - "Community 2089" Cohesion: 1.0 -Nodes (1): Run export_data.py and return the result as JSON. +Nodes (1): POST /api/quick-replies/{create|update|delete} ### Community 2090 - "Community 2090" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (1): Kill any existing processes listening on the target port. ### Community 2091 - "Community 2091" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 2092 - "Community 2092" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (1): Save bugs.json to DOC/. ### Community 2093 - "Community 2093" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (1): Load devplan.json from DOC/. ### Community 2094 - "Community 2094" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (1): Save devplan.json to DOC/. ### Community 2095 - "Community 2095" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (1): Load marketing todos from DOC/marketing/todos.json. ### Community 2096 - "Community 2096" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (1): Save marketing todos to DOC/marketing/todos.json. ### Community 2097 - "Community 2097" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (1): Load the sentiment index.json, return list. ### Community 2098 - "Community 2098" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (1): Save the sentiment index.json. ### Community 2099 - "Community 2099" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files ### Community 2100 - "Community 2100" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (1): Handles static files and API endpoints. ### Community 2101 - "Community 2101" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (1): List available version folders in data/oss/. ### Community 2102 - "Community 2102" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. ### Community 2103 - "Community 2103" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ ### Community 2104 - "Community 2104" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi ### Community 2105 - "Community 2105" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (1): Run export_data.py and return the result as JSON. ### Community 2106 - "Community 2106" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (1): Delete a sentiment record by id. ### Community 2107 - "Community 2107" Cohesion: 1.0 -Nodes (1): Fetch new discussions from Steam Community. +Nodes (1): Create a new bug record. ### Community 2108 - "Community 2108" Cohesion: 1.0 -Nodes (1): Return demo data when Steam is unreachable. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 2109 - "Community 2109" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): Create a new marketing TODO item. ### Community 2110 - "Community 2110" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): Toggle a TODO item's done state. ### Community 2111 - "Community 2111" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (1): Update a task's description or other fields. ### Community 2112 - "Community 2112" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): Create a subtask under a task. ### Community 2113 - "Community 2113" Cohesion: 1.0 +Nodes (1): Toggle a subtask's done state. + +### Community 2114 - "Community 2114" +Cohesion: 1.0 +Nodes (1): Save a marketing event note. + +### Community 2115 - "Community 2115" +Cohesion: 1.0 +Nodes (1): Create a new marketing event. + +### Community 2116 - "Community 2116" +Cohesion: 1.0 +Nodes (1): Extract platform name from /api/sns/{platform}... + +### Community 2117 - "Community 2117" +Cohesion: 1.0 +Nodes (1): Get path to the platform's JSON file. + +### Community 2118 - "Community 2118" +Cohesion: 1.0 +Nodes (1): Load a platform's SNS data. + +### Community 2119 - "Community 2119" +Cohesion: 1.0 +Nodes (1): Save a platform's SNS data. + +### Community 2120 - "Community 2120" +Cohesion: 1.0 +Nodes (1): Handle GET /api/sns/{platform} + +### Community 2121 - "Community 2121" +Cohesion: 1.0 +Nodes (1): Handle POST /api/sns/{platform}/update and /delete + +### Community 2122 - "Community 2122" +Cohesion: 1.0 +Nodes (1): Update (create or modify) a comment. + +### Community 2123 - "Community 2123" +Cohesion: 1.0 +Nodes (1): Fetch new discussions from Steam Community. + +### Community 2124 - "Community 2124" +Cohesion: 1.0 +Nodes (1): Return demo data when Steam is unreachable. + +### Community 2125 - "Community 2125" +Cohesion: 1.0 +Nodes (1): Parse Steam Community discussion list from HTML. + +### Community 2126 - "Community 2126" +Cohesion: 1.0 +Nodes (1): Bulk create comments from selected discussions. + +### Community 2127 - "Community 2127" +Cohesion: 1.0 +Nodes (1): Persist quick replies data. + +### Community 2128 - "Community 2128" +Cohesion: 1.0 +Nodes (1): GET /api/quick-replies + +### Community 2129 - "Community 2129" +Cohesion: 1.0 +Nodes (1): POST /api/quick-replies/{create|update|delete} + +### Community 2130 - "Community 2130" +Cohesion: 1.0 +Nodes (1): Kill any existing processes listening on the target port. + +### Community 2131 - "Community 2131" +Cohesion: 1.0 +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. + +### Community 2132 - "Community 2132" +Cohesion: 1.0 +Nodes (1): Save bugs.json to DOC/. + +### Community 2133 - "Community 2133" +Cohesion: 1.0 +Nodes (1): Load devplan.json from DOC/. + +### Community 2134 - "Community 2134" +Cohesion: 1.0 +Nodes (1): Save devplan.json to DOC/. + +### Community 2135 - "Community 2135" +Cohesion: 1.0 +Nodes (1): Load marketing todos from DOC/marketing/todos.json. + +### Community 2136 - "Community 2136" +Cohesion: 1.0 +Nodes (1): Save marketing todos to DOC/marketing/todos.json. + +### Community 2137 - "Community 2137" +Cohesion: 1.0 +Nodes (1): Load the sentiment index.json, return list. + +### Community 2138 - "Community 2138" +Cohesion: 1.0 +Nodes (1): Save the sentiment index.json. + +### Community 2139 - "Community 2139" +Cohesion: 1.0 +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files + +### Community 2140 - "Community 2140" +Cohesion: 1.0 +Nodes (1): Handles static files and API endpoints. + +### Community 2141 - "Community 2141" +Cohesion: 1.0 +Nodes (1): List available version folders in data/oss/. + +### Community 2142 - "Community 2142" +Cohesion: 1.0 +Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ + +### Community 2143 - "Community 2143" +Cohesion: 1.0 +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi + +### Community 2144 - "Community 2144" +Cohesion: 1.0 +Nodes (1): Run export_data.py and return the result as JSON. + +### Community 2145 - "Community 2145" +Cohesion: 1.0 +Nodes (1): Create a new sentiment record from multipart form data. + +### Community 2146 - "Community 2146" +Cohesion: 1.0 +Nodes (1): Delete a sentiment record by id. + +### Community 2147 - "Community 2147" +Cohesion: 1.0 +Nodes (1): Create a new bug record. + +### Community 2148 - "Community 2148" +Cohesion: 1.0 +Nodes (1): Create a new marketing TODO item. + +### Community 2149 - "Community 2149" +Cohesion: 1.0 +Nodes (1): Toggle a TODO item's done state. + +### Community 2150 - "Community 2150" +Cohesion: 1.0 +Nodes (1): Update a task's description or other fields. + +### Community 2151 - "Community 2151" +Cohesion: 1.0 +Nodes (1): Create a subtask under a task. + +### Community 2152 - "Community 2152" +Cohesion: 1.0 +Nodes (1): Toggle a subtask's done state. + +### Community 2153 - "Community 2153" +Cohesion: 1.0 +Nodes (1): Save a marketing event note. + +### Community 2154 - "Community 2154" +Cohesion: 1.0 +Nodes (1): Create a new marketing event. + +### Community 2155 - "Community 2155" +Cohesion: 1.0 +Nodes (1): Extract platform name from /api/sns/{platform}... + +### Community 2156 - "Community 2156" +Cohesion: 1.0 +Nodes (1): Get path to the platform's JSON file. + +### Community 2157 - "Community 2157" +Cohesion: 1.0 +Nodes (1): Load a platform's SNS data. + +### Community 2158 - "Community 2158" +Cohesion: 1.0 +Nodes (1): Save a platform's SNS data. + +### Community 2159 - "Community 2159" +Cohesion: 1.0 +Nodes (1): Handle GET /api/sns/{platform} + +### Community 2160 - "Community 2160" +Cohesion: 1.0 +Nodes (1): Handle POST /api/sns/{platform}/update and /delete + +### Community 2161 - "Community 2161" +Cohesion: 1.0 +Nodes (1): Update (create or modify) a comment. + +### Community 2162 - "Community 2162" +Cohesion: 1.0 +Nodes (1): Fetch new discussions from Steam Community. + +### Community 2163 - "Community 2163" +Cohesion: 1.0 +Nodes (1): Return demo data when Steam is unreachable. + +### Community 2164 - "Community 2164" +Cohesion: 1.0 +Nodes (1): Parse Steam Community discussion list from HTML. + +### Community 2165 - "Community 2165" +Cohesion: 1.0 +Nodes (1): Bulk create comments from selected discussions. + +### Community 2166 - "Community 2166" +Cohesion: 1.0 +Nodes (1): Kill any existing processes listening on the target port. + +### Community 2167 - "Community 2167" +Cohesion: 1.0 +Nodes (1): Parse Steam Community discussion list from HTML. + +### Community 2168 - "Community 2168" +Cohesion: 1.0 Nodes (1): Kill any existing processes listening on the target port. ## Knowledge Gaps - **9752 isolated node(s):** `初始化游戏进程管理器 Args: exe_path: 游戏 exe 文件的完整路径`, `选择性CQL模型导出工具 + 一致性验证 功能: 1. 交互式选择要导出的模型 2. 导出为ONNX格式 3. 验证d3和onnx模型的一致性 4`, `加载d3rlpy模型(与export_all_cql.py使用相同方法)`, `导出模型为ONNX格式(只导出Actor网络,确定性策略)`, `d3rlpy 训练脚本 - 适配 Unity TrainingDataRecorder 格式 数据格式: { "State": [802个fl` (+9747 more) These have ≤1 connection - possible missing edges or undocumented components. -- **Thin community `Community 1366`** (2 nodes): `DiagnosticRules.cs`, `ETSystemMethodIsInStaticPartialClassRule` +- **Thin community `Community 1421`** (2 nodes): `DiagnosticRules.cs`, `ETSystemMethodIsInStaticPartialClassRule` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1367`** (2 nodes): `translate_multilingual_2026_05_15.py`, `翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0` +- **Thin community `Community 1422`** (2 nodes): `translate_multilingual_2026_05_15.py`, `翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1368`** (2 nodes): `补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752)`, `apply_supplemental.py` +- **Thin community `Community 1423`** (2 nodes): `补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752)`, `apply_supplemental.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1369`** (2 nodes): `check_sheets.py`, `检查 xlsx 的所有 sheet 和真实行数。` +- **Thin community `Community 1424`** (2 nodes): `check_sheets.py`, `检查 xlsx 的所有 sheet 和真实行数。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1370`** (2 nodes): `dump_19871.py`, `把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。` +- **Thin community `Community 1425`** (2 nodes): `dump_19871.py`, `把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1371`** (2 nodes): `dump_all_rows.py`, `dump 全部 10 条目的 ZH/EN 看格式风格。` +- **Thin community `Community 1426`** (2 nodes): `dump_all_rows.py`, `dump 全部 10 条目的 ZH/EN 看格式风格。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1372`** (2 nodes): `dump_en_terms.py`, `扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。` +- **Thin community `Community 1427`** (2 nodes): `dump_en_terms.py`, `扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1373`** (2 nodes): `list_tags_19871.py`, `列出 ID=19871 的所有 **<...>** 标签按出现顺序。` +- **Thin community `Community 1428`** (2 nodes): `list_tags_19871.py`, `列出 ID=19871 的所有 **<...>** 标签按出现顺序。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1374`** (2 nodes): `read_19871.py`, `读取 ID=19871 的中文原文以便翻译。` +- **Thin community `Community 1429`** (2 nodes): `read_19871.py`, `读取 ID=19871 的中文原文以便翻译。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1375`** (2 nodes): `SteamCallbacks.cs`, `Steamworks` +- **Thin community `Community 1430`** (2 nodes): `SteamCallbacks.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1376`** (2 nodes): `SteamEnums.cs`, `Steamworks` +- **Thin community `Community 1431`** (2 nodes): `SteamEnums.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1377`** (2 nodes): `SteamStructs.cs`, `Steamworks` +- **Thin community `Community 1432`** (2 nodes): `SteamStructs.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1378`** (2 nodes): `SteamAPIWarningMessageHook_t.cs`, `Steamworks` +- **Thin community `Community 1433`** (2 nodes): `SteamAPIWarningMessageHook_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1379`** (2 nodes): `SteamAPI_CheckCallbackRegistered_t.cs`, `Steamworks` +- **Thin community `Community 1434`** (2 nodes): `SteamAPI_CheckCallbackRegistered_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1380`** (2 nodes): `SteamInputActionEventCallbackPointer.cs`, `Steamworks` +- **Thin community `Community 1435`** (2 nodes): `SteamInputActionEventCallbackPointer.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1381`** (2 nodes): `SteamInputActionEvent_t.cs`, `Steamworks` +- **Thin community `Community 1436`** (2 nodes): `SteamInputActionEvent_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1382`** (2 nodes): `FSteamNetworkingSocketsDebugOutput.cs`, `Steamworks` +- **Thin community `Community 1437`** (2 nodes): `FSteamNetworkingSocketsDebugOutput.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1383`** (2 nodes): `SteamNetworkingConfigValue_t.cs`, `Steamworks` +- **Thin community `Community 1438`** (2 nodes): `SteamNetworkingConfigValue_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1384`** (2 nodes): `SteamNetworkingErrMsg.cs`, `Steamworks` +- **Thin community `Community 1439`** (2 nodes): `SteamNetworkingErrMsg.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1385`** (2 nodes): `UQMDefine.cs`, `GCloud.UQM` +- **Thin community `Community 1440`** (2 nodes): `UQMDefine.cs`, `GCloud.UQM` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1386`** (2 nodes): `CharacterStatePriority.cs`, `Animancer.Examples.StateMachines` +- **Thin community `Community 1441`** (2 nodes): `CharacterStatePriority.cs`, `Animancer.Examples.StateMachines` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1387`** (2 nodes): `FadeMode.cs`, `Animancer` +- **Thin community `Community 1442`** (2 nodes): `FadeMode.cs`, `Animancer` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1388`** (2 nodes): `CrashSightMobileAgent.h`, `GCloud()` +- **Thin community `Community 1443`** (2 nodes): `CrashSightMobileAgent.h`, `GCloud()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1389`** (2 nodes): `CSLogger.h`, `UQM_EXPORT()` +- **Thin community `Community 1444`** (2 nodes): `CSLogger.h`, `UQM_EXPORT()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1390`** (2 nodes): `UQMError.h`, `UQMError()` +- **Thin community `Community 1445`** (2 nodes): `UQMError.h`, `UQMError()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1391`** (2 nodes): `UQMUtils.h`, `UQMUtils()` +- **Thin community `Community 1446`** (2 nodes): `UQMUtils.h`, `UQMUtils()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1392`** (2 nodes): `InspectedFieldInfo.cs`, `ParadoxNotion.Design` +- **Thin community `Community 1447`** (2 nodes): `InspectedFieldInfo.cs`, `ParadoxNotion.Design` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1393`** (2 nodes): `Delegates.cs`, `ParadoxNotion` +- **Thin community `Community 1448`** (2 nodes): `Delegates.cs`, `ParadoxNotion` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1394`** (2 nodes): `Enums.cs`, `ParadoxNotion` +- **Thin community `Community 1449`** (2 nodes): `Enums.cs`, `ParadoxNotion` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1395`** (2 nodes): `Status.cs`, `NodeCanvas.Framework` +- **Thin community `Community 1450`** (2 nodes): `Status.cs`, `NodeCanvas.Framework` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1396`** (2 nodes): `GraphLoadData.cs`, `NodeCanvas.Framework.Internal` +- **Thin community `Community 1451`** (2 nodes): `GraphLoadData.cs`, `NodeCanvas.Framework.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1397`** (2 nodes): `Locales.cs`, `NodeCanvas.DialogueTrees` +- **Thin community `Community 1452`** (2 nodes): `Locales.cs`, `NodeCanvas.DialogueTrees` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1398`** (2 nodes): `ViConstValueDefine.cs`, `ViConstValueDefine` +- **Thin community `Community 1453`** (2 nodes): `ViConstValueDefine.cs`, `ViConstValueDefine` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1399`** (2 nodes): `UIEvents.cs`, `TH1_Core.Events` +- **Thin community `Community 1454`** (2 nodes): `UIEvents.cs`, `TH1_Core.Events` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1400`** (2 nodes): `DebugCenter.cs`, `DebugCenter` +- **Thin community `Community 1455`** (2 nodes): `DebugCenter.cs`, `DebugCenter` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1401`** (2 nodes): `ViewMaskProperty.cs`, `ViewMaskProperty` +- **Thin community `Community 1456`** (2 nodes): `ViewMaskProperty.cs`, `ViewMaskProperty` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1402`** (2 nodes): `Il2CppCodeRegistration.cpp`, `s_Il2CppCodegenRegistration()` +- **Thin community `Community 1457`** (2 nodes): `Il2CppCodeRegistration.cpp`, `s_Il2CppCodegenRegistration()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1403`** (2 nodes): `UnityEngine.GridModule.cpp`, `GridLayout_DoNothing_mA280987BF98D257023D46C2C01902FC82EE6A00A()` +- **Thin community `Community 1458`** (2 nodes): `UnityEngine.GridModule.cpp`, `GridLayout_DoNothing_mA280987BF98D257023D46C2C01902FC82EE6A00A()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1404`** (2 nodes): `PackageInstallLocation.cs`, `NugetForUnity.Configuration` +- **Thin community `Community 1459`** (2 nodes): `PackageInstallLocation.cs`, `NugetForUnity.Configuration` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1405`** (2 nodes): `RepositoryType.cs`, `NugetForUnity.Models` +- **Thin community `Community 1460`** (2 nodes): `RepositoryType.cs`, `NugetForUnity.Models` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1406`** (2 nodes): `NugetWindowTab.cs`, `NugetForUnity.Ui` +- **Thin community `Community 1461`** (2 nodes): `NugetWindowTab.cs`, `NugetForUnity.Ui` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1407`** (2 nodes): `EBuildinFileCopyOption.cs`, `YooAsset.Editor` +- **Thin community `Community 1462`** (2 nodes): `EBuildinFileCopyOption.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1408`** (2 nodes): `EBuildMode.cs`, `YooAsset.Editor` +- **Thin community `Community 1463`** (2 nodes): `EBuildMode.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1409`** (2 nodes): `EBuildPipeline.cs`, `YooAsset.Editor` +- **Thin community `Community 1464`** (2 nodes): `EBuildPipeline.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1410`** (2 nodes): `ECompressOption.cs`, `YooAsset.Editor` +- **Thin community `Community 1465`** (2 nodes): `ECompressOption.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1411`** (2 nodes): `EFileNameStyle.cs`, `YooAsset.Editor` +- **Thin community `Community 1466`** (2 nodes): `EFileNameStyle.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1412`** (2 nodes): `ErrorCode.cs`, `YooAsset.Editor` +- **Thin community `Community 1467`** (2 nodes): `ErrorCode.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1413`** (2 nodes): `ECollectorType.cs`, `YooAsset.Editor` +- **Thin community `Community 1468`** (2 nodes): `ECollectorType.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1414`** (2 nodes): `EVerifyLevel.cs`, `YooAsset` +- **Thin community `Community 1469`** (2 nodes): `EVerifyLevel.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1415`** (2 nodes): `EVerifyResult.cs`, `YooAsset` +- **Thin community `Community 1470`** (2 nodes): `EVerifyResult.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1416`** (2 nodes): `EOperationStatus.cs`, `YooAsset` +- **Thin community `Community 1471`** (2 nodes): `EOperationStatus.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1417`** (2 nodes): `StreamingAssetsDefine.cs`, `StreamingAssetsDefine` +- **Thin community `Community 1472`** (2 nodes): `StreamingAssetsDefine.cs`, `StreamingAssetsDefine` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1418`** (2 nodes): `SkinningEnums.cs`, `UnityEditor.U2D.Animation` +- **Thin community `Community 1473`** (2 nodes): `SkinningEnums.cs`, `UnityEditor.U2D.Animation` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1419`** (2 nodes): `DragAndDropData.cs`, `UnityEditor.U2D.Animation.SpriteLibraryEditor` +- **Thin community `Community 1474`** (2 nodes): `DragAndDropData.cs`, `UnityEditor.U2D.Animation.SpriteLibraryEditor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1420`** (2 nodes): `Enums.cs`, `PDNWrapper` +- **Thin community `Community 1475`** (2 nodes): `Enums.cs`, `PDNWrapper` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1421`** (2 nodes): `Size.cs`, `PDNWrapper` +- **Thin community `Community 1476`** (2 nodes): `Size.cs`, `PDNWrapper` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1422`** (2 nodes): `TileDragAndDropHoverData.cs`, `UnityEditor.Tilemaps` +- **Thin community `Community 1477`** (2 nodes): `TileDragAndDropHoverData.cs`, `UnityEditor.Tilemaps` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1423`** (2 nodes): `Unity.Burst`, `BurstExecutionEnvironment.cs` +- **Thin community `Community 1478`** (2 nodes): `Unity.Burst`, `BurstExecutionEnvironment.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1424`** (2 nodes): `DiagnosticId.cs`, `Unity.Burst` +- **Thin community `Community 1479`** (2 nodes): `DiagnosticId.cs`, `Unity.Burst` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1425`** (2 nodes): `v128.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1480`** (2 nodes): `v128.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1426`** (2 nodes): `v256.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1481`** (2 nodes): `v256.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1427`** (2 nodes): `v64.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1482`** (2 nodes): `v64.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1428`** (2 nodes): `ResponseType.cs`, `Unity.PlasticSCM.Editor.UI` +- **Thin community `Community 1483`** (2 nodes): `ResponseType.cs`, `Unity.PlasticSCM.Editor.UI` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1429`** (2 nodes): `LoggingLevel.cs`, `Packages.Rider.Editor` +- **Thin community `Community 1484`** (2 nodes): `LoggingLevel.cs`, `Packages.Rider.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1430`** (2 nodes): `Il2CppDebugSupport.cs`, `Packages.Rider.Editor.Debugger` +- **Thin community `Community 1485`** (2 nodes): `Il2CppDebugSupport.cs`, `Packages.Rider.Editor.Debugger` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1431`** (2 nodes): `ProjectGenerationFlag.cs`, `Packages.Rider.Editor.ProjectGeneration` +- **Thin community `Community 1486`** (2 nodes): `ProjectGenerationFlag.cs`, `Packages.Rider.Editor.ProjectGeneration` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1432`** (2 nodes): `VersionPair.cs`, `Microsoft.Unity.VisualStudio.Editor` +- **Thin community `Community 1487`** (2 nodes): `VersionPair.cs`, `Microsoft.Unity.VisualStudio.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1433`** (2 nodes): `MessageType.cs`, `Microsoft.Unity.VisualStudio.Editor.Messaging` +- **Thin community `Community 1488`** (2 nodes): `MessageType.cs`, `Microsoft.Unity.VisualStudio.Editor.Messaging` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1434`** (2 nodes): `ProjectGenerationFlag.cs`, `Microsoft.Unity.VisualStudio.Editor` +- **Thin community `Community 1489`** (2 nodes): `ProjectGenerationFlag.cs`, `Microsoft.Unity.VisualStudio.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1435`** (2 nodes): `TestStatusAdaptor.cs`, `Microsoft.Unity.VisualStudio.Editor.Testing` +- **Thin community `Community 1490`** (2 nodes): `TestStatusAdaptor.cs`, `Microsoft.Unity.VisualStudio.Editor.Testing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1436`** (2 nodes): `math_unity_conversion.cs`, `Unity.Mathematics` +- **Thin community `Community 1491`** (2 nodes): `math_unity_conversion.cs`, `Unity.Mathematics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1437`** (2 nodes): `EditorPrefBool.cs`, `UnityEditor.Rendering` +- **Thin community `Community 1492`** (2 nodes): `EditorPrefBool.cs`, `UnityEditor.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1438`** (2 nodes): `MaterialHeaderScopeItem.cs`, `UnityEditor.Rendering` +- **Thin community `Community 1493`** (2 nodes): `MaterialHeaderScopeItem.cs`, `UnityEditor.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1439`** (2 nodes): `CommonStructs.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1494`** (2 nodes): `CommonStructs.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1440`** (2 nodes): `CoreProfileId.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1495`** (2 nodes): `CoreProfileId.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1441`** (2 nodes): `ShaderVariablesProbeVolumes.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1496`** (2 nodes): `ShaderVariablesProbeVolumes.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1442`** (2 nodes): `HDROutputDefines.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1497`** (2 nodes): `HDROutputDefines.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1443`** (2 nodes): `RenderGraphProfileId.cs`, `UnityEngine.Experimental.Rendering.RenderGraphModule` +- **Thin community `Community 1498`** (2 nodes): `RenderGraphProfileId.cs`, `UnityEngine.Experimental.Rendering.RenderGraphModule` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1444`** (2 nodes): `DepthBits.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1499`** (2 nodes): `DepthBits.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1445`** (2 nodes): `MSAASamples.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1500`** (2 nodes): `MSAASamples.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1446`** (2 nodes): `DummyShaderLibrary.cs`, `DummyShaderLibrary` +- **Thin community `Community 1501`** (2 nodes): `DummyShaderLibrary.cs`, `DummyShaderLibrary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1447`** (2 nodes): `UpgradeCommon.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1502`** (2 nodes): `UpgradeCommon.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1448`** (2 nodes): `ConverterItemDescriptor.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1503`** (2 nodes): `ConverterItemDescriptor.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1449`** (2 nodes): `ConverterItemInfo.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1504`** (2 nodes): `ConverterItemInfo.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1450`** (2 nodes): `RunItemContext.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1505`** (2 nodes): `RunItemContext.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1451`** (2 nodes): `DecalMeshBiasTypeEnum.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1506`** (2 nodes): `DecalMeshBiasTypeEnum.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1452`** (2 nodes): `IntermediateTextureMode.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1507`** (2 nodes): `IntermediateTextureMode.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1453`** (2 nodes): `SampleCount.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1508`** (2 nodes): `SampleCount.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1454`** (2 nodes): `StencilUsage.cs`, `UnityEngine.Rendering.Universal.Internal` +- **Thin community `Community 1509`** (2 nodes): `StencilUsage.cs`, `UnityEngine.Rendering.Universal.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1455`** (2 nodes): `Light2DBlendStyle.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1510`** (2 nodes): `Light2DBlendStyle.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1456`** (2 nodes): `DebugViewEnums.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1511`** (2 nodes): `DebugViewEnums.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1457`** (2 nodes): `Shaders.cs`, `ShadersDummy` +- **Thin community `Community 1512`** (2 nodes): `Shaders.cs`, `ShadersDummy` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1458`** (2 nodes): `ReturnCode.cs`, `UnityEditor.Build.Pipeline` +- **Thin community `Community 1513`** (2 nodes): `ReturnCode.cs`, `UnityEditor.Build.Pipeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1459`** (2 nodes): `Precision.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1514`** (2 nodes): `Precision.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1460`** (2 nodes): `IMaterialGraphAsset.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1515`** (2 nodes): `IMaterialGraphAsset.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1461`** (2 nodes): `ParentGroupChange.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1516`** (2 nodes): `ParentGroupChange.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1462`** (2 nodes): `PreviewMode.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1517`** (2 nodes): `PreviewMode.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1463`** (2 nodes): `SlotType.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1518`** (2 nodes): `SlotType.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1464`** (2 nodes): `PositionSource.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1519`** (2 nodes): `PositionSource.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1465`** (2 nodes): `DrawState.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1520`** (2 nodes): `DrawState.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1466`** (2 nodes): `FunctionMultiInput.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1521`** (2 nodes): `FunctionMultiInput.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1467`** (2 nodes): `NormalMapSpace.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1522`** (2 nodes): `NormalMapSpace.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1468`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendMode.cs` +- **Thin community `Community 1523`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendMode.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1469`** (2 nodes): `UvChannel.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1524`** (2 nodes): `UvChannel.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1470`** (2 nodes): `GraphCode.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1525`** (2 nodes): `GraphCode.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1471`** (2 nodes): `OutputMetadata.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1526`** (2 nodes): `OutputMetadata.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1472`** (2 nodes): `ConditionalField.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1527`** (2 nodes): `ConditionalField.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1473`** (2 nodes): `DropdownEntry.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1528`** (2 nodes): `DropdownEntry.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1474`** (2 nodes): `FieldDependency.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1529`** (2 nodes): `FieldDependency.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1475`** (2 nodes): `KeywordEntry.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1530`** (2 nodes): `KeywordEntry.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1476`** (2 nodes): `KernelDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1531`** (2 nodes): `KernelDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1477`** (2 nodes): `StencilDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1532`** (2 nodes): `StencilDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1478`** (2 nodes): `StructDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1533`** (2 nodes): `StructDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1479`** (2 nodes): `UnityEditor.ShaderGraph`, `Blend.cs` +- **Thin community `Community 1534`** (2 nodes): `UnityEditor.ShaderGraph`, `Blend.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1480`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendOp.cs` +- **Thin community `Community 1535`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendOp.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1481`** (2 nodes): `Cull.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1536`** (2 nodes): `Cull.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1482`** (2 nodes): `DisableBatching.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1537`** (2 nodes): `DisableBatching.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1483`** (2 nodes): `IncludeLocation.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1538`** (2 nodes): `IncludeLocation.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1484`** (2 nodes): `KeywordDefinition.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1539`** (2 nodes): `KeywordDefinition.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1485`** (2 nodes): `KeywordScope.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1540`** (2 nodes): `KeywordScope.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1486`** (2 nodes): `KeywordShaderStage.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1541`** (2 nodes): `KeywordShaderStage.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1487`** (2 nodes): `KeywordType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1542`** (2 nodes): `KeywordType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1488`** (2 nodes): `NormalDropOffSpace.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1543`** (2 nodes): `NormalDropOffSpace.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1489`** (2 nodes): `PropertyType.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1544`** (2 nodes): `PropertyType.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1490`** (2 nodes): `RenderQueue.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1545`** (2 nodes): `RenderQueue.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1491`** (2 nodes): `RenderType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1546`** (2 nodes): `RenderType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1492`** (2 nodes): `ShaderValueType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1547`** (2 nodes): `ShaderValueType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1493`** (2 nodes): `StructFieldOptions.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1548`** (2 nodes): `StructFieldOptions.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1494`** (2 nodes): `ZTest.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1549`** (2 nodes): `ZTest.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1495`** (2 nodes): `ZWrite.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1550`** (2 nodes): `ZWrite.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1496`** (2 nodes): `MatrixNames.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1551`** (2 nodes): `MatrixNames.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1497`** (2 nodes): `FullscreenShaderPass.cs`, `UnityEngine.Rendering.HighDefinition` +- **Thin community `Community 1552`** (2 nodes): `FullscreenShaderPass.cs`, `UnityEngine.Rendering.HighDefinition` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1498`** (2 nodes): `CreateSerializableGraph.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1553`** (2 nodes): `CreateSerializableGraph.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1499`** (2 nodes): `DummyShaderGraphLibrary.cs`, `DummyShaderGraphLibrary` +- **Thin community `Community 1554`** (2 nodes): `DummyShaderGraphLibrary.cs`, `DummyShaderGraphLibrary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1500`** (2 nodes): `PropertyChunkTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1555`** (2 nodes): `PropertyChunkTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1501`** (2 nodes): `PropertyGeneratorTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1556`** (2 nodes): `PropertyGeneratorTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1502`** (2 nodes): `PropertyNodeTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1557`** (2 nodes): `PropertyNodeTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1503`** (2 nodes): `RunState.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1558`** (2 nodes): `RunState.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1504`** (2 nodes): `TestMode.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1559`** (2 nodes): `TestMode.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1505`** (2 nodes): `TestStatus.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1560`** (2 nodes): `TestStatus.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1506`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.CommandLineTest` +- **Thin community `Community 1561`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.CommandLineTest` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1507`** (2 nodes): `TaskMode.cs`, `UnityEditor.TestTools.TestRunner.TestRun` +- **Thin community `Community 1562`** (2 nodes): `TaskMode.cs`, `UnityEditor.TestTools.TestRunner.TestRun` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1508`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.UnityTestProtocol` +- **Thin community `Community 1563`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.UnityTestProtocol` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1509`** (2 nodes): `TestState.cs`, `UnityEngine.TestRunner.TestProtocol` +- **Thin community `Community 1564`** (2 nodes): `TestState.cs`, `UnityEngine.TestRunner.TestProtocol` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1510`** (2 nodes): `TMPro_FontPlugin.cs`, `TMPro.EditorUtilities` +- **Thin community `Community 1565`** (2 nodes): `TMPro_FontPlugin.cs`, `TMPro.EditorUtilities` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1511`** (2 nodes): `TMP_LineInfo.cs`, `TMPro` +- **Thin community `Community 1566`** (2 nodes): `TMP_LineInfo.cs`, `TMPro` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1512`** (2 nodes): `UnityEditor.Timeline.Actions`, `ActionContext.cs` +- **Thin community `Community 1567`** (2 nodes): `UnityEditor.Timeline.Actions`, `ActionContext.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1513`** (2 nodes): `MenuItemActionBase.cs`, `UnityEditor.Timeline.Actions` +- **Thin community `Community 1568`** (2 nodes): `MenuItemActionBase.cs`, `UnityEditor.Timeline.Actions` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1514`** (2 nodes): `PlacementValidity.cs`, `UnityEditor.Timeline` +- **Thin community `Community 1569`** (2 nodes): `PlacementValidity.cs`, `UnityEditor.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1515`** (2 nodes): `TimeReferenceMode.cs`, `UnityEditor.Timeline` +- **Thin community `Community 1570`** (2 nodes): `TimeReferenceMode.cs`, `UnityEditor.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1516`** (2 nodes): `NotificationFlags.cs`, `UnityEngine.Timeline` +- **Thin community `Community 1571`** (2 nodes): `NotificationFlags.cs`, `UnityEngine.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1517`** (2 nodes): `EventHandle.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1572`** (2 nodes): `EventHandle.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1518`** (2 nodes): `EventTriggerType.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1573`** (2 nodes): `EventTriggerType.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1519`** (2 nodes): `MoveDirection.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1574`** (2 nodes): `MoveDirection.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1520`** (2 nodes): `SemanticLabel.cs`, `Unity.VisualScripting` +- **Thin community `Community 1575`** (2 nodes): `SemanticLabel.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1521`** (2 nodes): `Unity.VisualScripting`, `AlignOperation.cs` +- **Thin community `Community 1576`** (2 nodes): `Unity.VisualScripting`, `AlignOperation.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1522`** (2 nodes): `CanvasControlScheme.cs`, `Unity.VisualScripting` +- **Thin community `Community 1577`** (2 nodes): `CanvasControlScheme.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1523`** (2 nodes): `DistributeOperation.cs`, `Unity.VisualScripting` +- **Thin community `Community 1578`** (2 nodes): `DistributeOperation.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1524`** (2 nodes): `GraphContextMenuItem.cs`, `Unity.VisualScripting` +- **Thin community `Community 1579`** (2 nodes): `GraphContextMenuItem.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1525`** (2 nodes): `ReorderableListFlags.cs`, `Unity.VisualScripting.ReorderableList` +- **Thin community `Community 1580`** (2 nodes): `ReorderableListFlags.cs`, `Unity.VisualScripting.ReorderableList` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1526`** (2 nodes): `InspectorBlock.cs`, `Unity.VisualScripting` +- **Thin community `Community 1581`** (2 nodes): `InspectorBlock.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1527`** (2 nodes): `Edge.cs`, `Unity.VisualScripting` +- **Thin community `Community 1582`** (2 nodes): `Edge.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1528`** (2 nodes): `SkinnedColor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1583`** (2 nodes): `SkinnedColor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1529`** (2 nodes): `FontWeight.cs`, `Unity.VisualScripting` +- **Thin community `Community 1584`** (2 nodes): `FontWeight.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1530`** (2 nodes): `ParameterStringMode.cs`, `Unity.VisualScripting` +- **Thin community `Community 1585`** (2 nodes): `ParameterStringMode.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1531`** (2 nodes): `CreateTextureOptions.cs`, `Unity.VisualScripting` +- **Thin community `Community 1586`** (2 nodes): `CreateTextureOptions.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1532`** (2 nodes): `WarningLevel.cs`, `Unity.VisualScripting` +- **Thin community `Community 1587`** (2 nodes): `WarningLevel.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1533`** (2 nodes): `NodeColor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1588`** (2 nodes): `NodeColor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1534`** (2 nodes): `NodeShape.cs`, `Unity.VisualScripting` +- **Thin community `Community 1589`** (2 nodes): `NodeShape.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1535`** (2 nodes): `SidebarAnchor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1590`** (2 nodes): `SidebarAnchor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1536`** (2 nodes): `StateRevealCondition.cs`, `Unity.VisualScripting` +- **Thin community `Community 1591`** (2 nodes): `StateRevealCondition.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1537`** (2 nodes): `fsMemberSerialization.cs`, `Unity.VisualScripting.FullSerializer` +- **Thin community `Community 1592`** (2 nodes): `fsMemberSerialization.cs`, `Unity.VisualScripting.FullSerializer` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1538`** (2 nodes): `Typeset.cs`, `Unity.VisualScripting` +- **Thin community `Community 1593`** (2 nodes): `Typeset.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1539`** (2 nodes): `EmptyEventArgs.cs`, `Unity.VisualScripting` +- **Thin community `Community 1594`** (2 nodes): `EmptyEventArgs.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1540`** (2 nodes): `GraphSource.cs`, `Unity.VisualScripting` +- **Thin community `Community 1595`** (2 nodes): `GraphSource.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1541`** (2 nodes): `MouseButton.cs`, `Unity.VisualScripting` +- **Thin community `Community 1596`** (2 nodes): `MouseButton.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1542`** (2 nodes): `PressState.cs`, `Unity.VisualScripting` +- **Thin community `Community 1597`** (2 nodes): `PressState.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1543`** (2 nodes): `Unity.VisualScripting`, `ActionDirection.cs` +- **Thin community `Community 1598`** (2 nodes): `Unity.VisualScripting`, `ActionDirection.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1544`** (2 nodes): `TypeNameDetail.cs`, `Unity.VisualScripting` +- **Thin community `Community 1599`** (2 nodes): `TypeNameDetail.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1545`** (2 nodes): `TypeQualifier.cs`, `Unity.VisualScripting` +- **Thin community `Community 1600`** (2 nodes): `TypeQualifier.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1546`** (2 nodes): `TypesMatching.cs`, `Unity.VisualScripting` +- **Thin community `Community 1601`** (2 nodes): `TypesMatching.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1547`** (2 nodes): `Unity.VisualScripting`, `BinaryOperator.cs` +- **Thin community `Community 1602`** (2 nodes): `Unity.VisualScripting`, `BinaryOperator.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1548`** (2 nodes): `UnaryOperator.cs`, `Unity.VisualScripting` +- **Thin community `Community 1603`** (2 nodes): `UnaryOperator.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1549`** (2 nodes): `Unity.VisualScripting`, `Action_5.cs` +- **Thin community `Community 1604`** (2 nodes): `Unity.VisualScripting`, `Action_5.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1550`** (2 nodes): `Unity.VisualScripting`, `Action_6.cs` +- **Thin community `Community 1605`** (2 nodes): `Unity.VisualScripting`, `Action_6.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1551`** (2 nodes): `Func_5.cs`, `Unity.VisualScripting` +- **Thin community `Community 1606`** (2 nodes): `Func_5.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1552`** (2 nodes): `Func_6.cs`, `Unity.VisualScripting` +- **Thin community `Community 1607`** (2 nodes): `Func_6.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1553`** (2 nodes): `VariableKind.cs`, `Unity.VisualScripting` +- **Thin community `Community 1608`** (2 nodes): `VariableKind.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1554`** (2 nodes): `EvaluateFunctionHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1609`** (2 nodes): `EvaluateFunctionHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1555`** (2 nodes): `EvaluateParameterHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1610`** (2 nodes): `EvaluateParameterHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1556`** (2 nodes): `EvaluationOption.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1611`** (2 nodes): `EvaluationOption.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1557`** (2 nodes): `CustomEventArgs.cs`, `Unity.VisualScripting` +- **Thin community `Community 1612`** (2 nodes): `CustomEventArgs.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1558`** (2 nodes): `ScriptGraphContainerType.cs`, `Unity.VisualScripting` +- **Thin community `Community 1613`** (2 nodes): `ScriptGraphContainerType.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1559`** (2 nodes): `StateEnterReason.cs`, `Unity.VisualScripting` +- **Thin community `Community 1614`** (2 nodes): `StateEnterReason.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1560`** (2 nodes): `StateExitReason.cs`, `Unity.VisualScripting` +- **Thin community `Community 1615`** (2 nodes): `StateExitReason.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1561`** (2 nodes): `StateGraphContainerType.cs`, `Unity.VisualScripting` +- **Thin community `Community 1616`** (2 nodes): `StateGraphContainerType.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1562`** (2 nodes): `isteamapps.h`, `ISteamApps()` +- **Thin community `Community 1617`** (2 nodes): `isteamapps.h`, `ISteamApps()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1563`** (2 nodes): `isteamappticket.h`, `ISteamAppTicket()` +- **Thin community `Community 1618`** (2 nodes): `isteamappticket.h`, `ISteamAppTicket()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1564`** (2 nodes): `isteamcontroller.h`, `ISteamController()` +- **Thin community `Community 1619`** (2 nodes): `isteamcontroller.h`, `ISteamController()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1565`** (2 nodes): `isteamgamecoordinator.h`, `ISteamGameCoordinator()` +- **Thin community `Community 1620`** (2 nodes): `isteamgamecoordinator.h`, `ISteamGameCoordinator()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1566`** (2 nodes): `isteamgameserverstats.h`, `ISteamGameServerStats()` +- **Thin community `Community 1621`** (2 nodes): `isteamgameserverstats.h`, `ISteamGameServerStats()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1567`** (2 nodes): `isteamhtmlsurface.h`, `ISteamHTMLSurface()` +- **Thin community `Community 1622`** (2 nodes): `isteamhtmlsurface.h`, `ISteamHTMLSurface()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1568`** (2 nodes): `isteamhttp.h`, `ISteamHTTP()` +- **Thin community `Community 1623`** (2 nodes): `isteamhttp.h`, `ISteamHTTP()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1569`** (2 nodes): `isteammusicremote.h`, `ISteamMusicRemote()` +- **Thin community `Community 1624`** (2 nodes): `isteammusicremote.h`, `ISteamMusicRemote()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1570`** (2 nodes): `isteamnetworking.h`, `ISteamNetworking()` +- **Thin community `Community 1625`** (2 nodes): `isteamnetworking.h`, `ISteamNetworking()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1571`** (2 nodes): `isteamparentalsettings.h`, `ISteamParentalSettings()` +- **Thin community `Community 1626`** (2 nodes): `isteamparentalsettings.h`, `ISteamParentalSettings()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1572`** (2 nodes): `isteamremoteplay.h`, `ISteamRemotePlay()` +- **Thin community `Community 1627`** (2 nodes): `isteamremoteplay.h`, `ISteamRemotePlay()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1573`** (2 nodes): `isteamremotestorage.h`, `ISteamRemoteStorage()` +- **Thin community `Community 1628`** (2 nodes): `isteamremotestorage.h`, `ISteamRemoteStorage()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1574`** (2 nodes): `isteamscreenshots.h`, `ISteamScreenshots()` +- **Thin community `Community 1629`** (2 nodes): `isteamscreenshots.h`, `ISteamScreenshots()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1575`** (2 nodes): `isteamtimeline.h`, `ISteamTimeline()` +- **Thin community `Community 1630`** (2 nodes): `isteamtimeline.h`, `ISteamTimeline()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1576`** (2 nodes): `isteamugc.h`, `ISteamUGC()` +- **Thin community `Community 1631`** (2 nodes): `isteamugc.h`, `ISteamUGC()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1577`** (2 nodes): `isteamuserstats.h`, `ISteamUserStats()` +- **Thin community `Community 1632`** (2 nodes): `isteamuserstats.h`, `ISteamUserStats()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1578`** (2 nodes): `isteamutils.h`, `ISteamUtils()` +- **Thin community `Community 1633`** (2 nodes): `isteamutils.h`, `ISteamUtils()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1579`** (2 nodes): `isteamvideo.h`, `ISteamVideo()` +- **Thin community `Community 1634`** (2 nodes): `isteamvideo.h`, `ISteamVideo()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1580`** (2 nodes): `steamhttpenums.h`, `BIsHTTPStatusSuccess()` +- **Thin community `Community 1635`** (2 nodes): `steamhttpenums.h`, `BIsHTTPStatusSuccess()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1581`** (2 nodes): `steamnetworkingfakeip.h`, `ISteamNetworkingFakeUDPPort()` +- **Thin community `Community 1636`** (2 nodes): `steamnetworkingfakeip.h`, `ISteamNetworkingFakeUDPPort()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1582`** (2 nodes): `ServerBrowserMenu.h`, `ServerBrowserMenuData_t()` +- **Thin community `Community 1637`** (2 nodes): `ServerBrowserMenu.h`, `ServerBrowserMenuData_t()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1583`** (1 nodes): `ExcelExport.AssemblyInfo.cs` +- **Thin community `Community 1638`** (1 nodes): `ExcelExport.AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1584`** (1 nodes): `ExcelExport.GlobalUsings.g.cs` +- **Thin community `Community 1639`** (1 nodes): `ExcelExport.GlobalUsings.g.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1585`** (1 nodes): `ikcp.h` +- **Thin community `Community 1640`** (1 nodes): `ikcp.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1586`** (1 nodes): `InvokeHelper.h` +- **Thin community `Community 1641`** (1 nodes): `InvokeHelper.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1587`** (1 nodes): `apply_translations.py` +- **Thin community `Community 1642`** (1 nodes): `apply_translations.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1588`** (1 nodes): `DecodeOnlineError.ps1` +- **Thin community `Community 1643`** (1 nodes): `DecodeOnlineError.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1589`** (1 nodes): `fix_audit_results.py` +- **Thin community `Community 1644`** (1 nodes): `fix_audit_results.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1590`** (1 nodes): `fix_es.py` +- **Thin community `Community 1645`** (1 nodes): `fix_es.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1591`** (1 nodes): `fix_hero_critical.py` +- **Thin community `Community 1646`** (1 nodes): `fix_hero_critical.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1592`** (1 nodes): `fix_jp_kr_bugs.py` +- **Thin community `Community 1647`** (1 nodes): `fix_jp_kr_bugs.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1593`** (1 nodes): `InstallGraphifyHook.ps1` +- **Thin community `Community 1648`** (1 nodes): `InstallGraphifyHook.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1594`** (1 nodes): `translate_19976.py` +- **Thin community `Community 1649`** (1 nodes): `translate_19976.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1595`** (1 nodes): `translate_data.py` +- **Thin community `Community 1650`** (1 nodes): `translate_data.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1596`** (1 nodes): `_gen_issues.py` +- **Thin community `Community 1651`** (1 nodes): `_gen_issues.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1597`** (1 nodes): `check_bytes.ps1` +- **Thin community `Community 1652`** (1 nodes): `check_bytes.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1598`** (1 nodes): `coreml_provider_factory.h` +- **Thin community `Community 1653`** (1 nodes): `coreml_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1599`** (1 nodes): `cpu_provider_factory.h` +- **Thin community `Community 1654`** (1 nodes): `cpu_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1600`** (1 nodes): `onnxruntime_c_api.h` +- **Thin community `Community 1655`** (1 nodes): `onnxruntime_c_api.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1601`** (1 nodes): `coreml_provider_factory.h` +- **Thin community `Community 1656`** (1 nodes): `coreml_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1602`** (1 nodes): `cpu_provider_factory.h` +- **Thin community `Community 1657`** (1 nodes): `cpu_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1603`** (1 nodes): `onnxruntime_c_api.h` +- **Thin community `Community 1658`** (1 nodes): `onnxruntime_c_api.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1604`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1659`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1605`** (1 nodes): `ExampleInput.cs` +- **Thin community `Community 1660`** (1 nodes): `ExampleInput.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1606`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1661`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1607`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1662`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1608`** (1 nodes): `CrashSight.h` +- **Thin community `Community 1663`** (1 nodes): `CrashSight.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1609`** (1 nodes): `CrashSightConfig.h` +- **Thin community `Community 1664`** (1 nodes): `CrashSightConfig.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1610`** (1 nodes): `CrashSightLog.h` +- **Thin community `Community 1665`** (1 nodes): `CrashSightLog.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1611`** (1 nodes): `UQMUnityBridge.h` +- **Thin community `Community 1666`** (1 nodes): `UQMUnityBridge.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1612`** (1 nodes): `UQMUnityExtra.h` +- **Thin community `Community 1667`** (1 nodes): `UQMUnityExtra.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1613`** (1 nodes): `cJSON.h` +- **Thin community `Community 1668`** (1 nodes): `cJSON.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1614`** (1 nodes): `CrashSightBridge.h` +- **Thin community `Community 1669`** (1 nodes): `CrashSightBridge.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1615`** (1 nodes): `CrashSightCore.h` +- **Thin community `Community 1670`** (1 nodes): `CrashSightCore.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1616`** (1 nodes): `UQM.h` +- **Thin community `Community 1671`** (1 nodes): `UQM.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1617`** (1 nodes): `UQMCrashDelegate.h` +- **Thin community `Community 1672`** (1 nodes): `UQMCrashDelegate.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1618`** (1 nodes): `UQMMacroExpand.h` +- **Thin community `Community 1673`** (1 nodes): `UQMMacroExpand.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1619`** (1 nodes): `UQMRename.h` +- **Thin community `Community 1674`** (1 nodes): `UQMRename.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1620`** (1 nodes): `UQMSingleton.h` +- **Thin community `Community 1675`** (1 nodes): `UQMSingleton.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1621`** (1 nodes): `UQMSynthesizeSingleton.h` +- **Thin community `Community 1676`** (1 nodes): `UQMSynthesizeSingleton.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1622`** (1 nodes): `UQMThread.h` +- **Thin community `Community 1677`** (1 nodes): `UQMThread.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1623`** (1 nodes): `UQMUtilsIOS.h` +- **Thin community `Community 1678`** (1 nodes): `UQMUtilsIOS.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1624`** (1 nodes): `CrashSightPlugin.h` +- **Thin community `Community 1679`** (1 nodes): `CrashSightPlugin.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1625`** (1 nodes): `ConfigManager.cs` +- **Thin community `Community 1680`** (1 nodes): `ConfigManager.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1626`** (1 nodes): `OssStatisticEditorWindow.cs` +- **Thin community `Community 1681`** (1 nodes): `OssStatisticEditorWindow.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1627`** (1 nodes): `RinIndianAttackSkill.cs` +- **Thin community `Community 1682`** (1 nodes): `RinIndianAttackSkill.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1628`** (1 nodes): `0iqegxo6esls0.lump.cpp` +- **Thin community `Community 1683`** (1 nodes): `0iqegxo6esls0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1629`** (1 nodes): `2hpln4mygfzx0.lump.cpp` +- **Thin community `Community 1684`** (1 nodes): `2hpln4mygfzx0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1630`** (1 nodes): `2hpln4mygfzx1.lump.cpp` +- **Thin community `Community 1685`** (1 nodes): `2hpln4mygfzx1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1631`** (1 nodes): `2hpln4mygfzx3.lump.cpp` +- **Thin community `Community 1686`** (1 nodes): `2hpln4mygfzx3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1632`** (1 nodes): `2hpln4mygfzx5.lump.cpp` +- **Thin community `Community 1687`** (1 nodes): `2hpln4mygfzx5.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1633`** (1 nodes): `2hpln4mygfzx6.lump.cpp` +- **Thin community `Community 1688`** (1 nodes): `2hpln4mygfzx6.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1634`** (1 nodes): `2kwu9gc6m8kw0.lump.cpp` +- **Thin community `Community 1689`** (1 nodes): `2kwu9gc6m8kw0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1635`** (1 nodes): `2kwu9gc6m8kw1.lump.cpp` +- **Thin community `Community 1690`** (1 nodes): `2kwu9gc6m8kw1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1636`** (1 nodes): `2kwu9gc6m8kw2.lump.cpp` +- **Thin community `Community 1691`** (1 nodes): `2kwu9gc6m8kw2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1637`** (1 nodes): `3wxtajjqiiaz0.lump.cpp` +- **Thin community `Community 1692`** (1 nodes): `3wxtajjqiiaz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1638`** (1 nodes): `3x4pmbhvzyuf0.lump.cpp` +- **Thin community `Community 1693`** (1 nodes): `3x4pmbhvzyuf0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1639`** (1 nodes): `3xlklue1azd70.lump.cpp` +- **Thin community `Community 1694`** (1 nodes): `3xlklue1azd70.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1640`** (1 nodes): `3z6x1ljdy2e00.lump.cpp` +- **Thin community `Community 1695`** (1 nodes): `3z6x1ljdy2e00.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1641`** (1 nodes): `3z6x1ljdy2e02.lump.cpp` +- **Thin community `Community 1696`** (1 nodes): `3z6x1ljdy2e02.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1642`** (1 nodes): `3z6x1ljdy2e03.lump.cpp` +- **Thin community `Community 1697`** (1 nodes): `3z6x1ljdy2e03.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1643`** (1 nodes): `4ghjw58f8hs70.lump.cpp` +- **Thin community `Community 1698`** (1 nodes): `4ghjw58f8hs70.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1644`** (1 nodes): `5hhsyfcnzb210.lump.cpp` +- **Thin community `Community 1699`** (1 nodes): `5hhsyfcnzb210.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1645`** (1 nodes): `5p9c7v2nynqk0.lump.cpp` +- **Thin community `Community 1700`** (1 nodes): `5p9c7v2nynqk0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1646`** (1 nodes): `5p9c7v2nynqk1.lump.cpp` +- **Thin community `Community 1701`** (1 nodes): `5p9c7v2nynqk1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1647`** (1 nodes): `5p9c7v2nynqk2.lump.cpp` +- **Thin community `Community 1702`** (1 nodes): `5p9c7v2nynqk2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1648`** (1 nodes): `6o34in2l8rrv0.lump.cpp` +- **Thin community `Community 1703`** (1 nodes): `6o34in2l8rrv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1649`** (1 nodes): `73fp2iokz9k40.lump.cpp` +- **Thin community `Community 1704`** (1 nodes): `73fp2iokz9k40.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1650`** (1 nodes): `7ntrqlj6nz800.lump.cpp` +- **Thin community `Community 1705`** (1 nodes): `7ntrqlj6nz800.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1651`** (1 nodes): `7warj6bswxrg0.lump.cpp` +- **Thin community `Community 1706`** (1 nodes): `7warj6bswxrg0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1652`** (1 nodes): `8j43hxgxvczy0.lump.cpp` +- **Thin community `Community 1707`** (1 nodes): `8j43hxgxvczy0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1653`** (1 nodes): `8nxcc2n25nlz0.lump.cpp` +- **Thin community `Community 1708`** (1 nodes): `8nxcc2n25nlz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1654`** (1 nodes): `8nxcc2n25nlz1.lump.cpp` +- **Thin community `Community 1709`** (1 nodes): `8nxcc2n25nlz1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1655`** (1 nodes): `8nxcc2n25nlz3.lump.cpp` +- **Thin community `Community 1710`** (1 nodes): `8nxcc2n25nlz3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1656`** (1 nodes): `8nxcc2n25nlz5.lump.cpp` +- **Thin community `Community 1711`** (1 nodes): `8nxcc2n25nlz5.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1657`** (1 nodes): `8nxcc2n25nlz6.lump.cpp` +- **Thin community `Community 1712`** (1 nodes): `8nxcc2n25nlz6.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1658`** (1 nodes): `8pduzanivbwq0.lump.cpp` +- **Thin community `Community 1713`** (1 nodes): `8pduzanivbwq0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1659`** (1 nodes): `90v4zwh5m4250.lump.cpp` +- **Thin community `Community 1714`** (1 nodes): `90v4zwh5m4250.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1660`** (1 nodes): `9fcr0o2wk9210.lump.cpp` +- **Thin community `Community 1715`** (1 nodes): `9fcr0o2wk9210.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1661`** (1 nodes): `a6gqnlstwkzo0.lump.cpp` +- **Thin community `Community 1716`** (1 nodes): `a6gqnlstwkzo0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1662`** (1 nodes): `aa25cvijmvtz0.lump.cpp` +- **Thin community `Community 1717`** (1 nodes): `aa25cvijmvtz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1663`** (1 nodes): `aph4t7urv62q0.lump.cpp` +- **Thin community `Community 1718`** (1 nodes): `aph4t7urv62q0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1664`** (1 nodes): `b4jqcqoahjjy0.lump.cpp` +- **Thin community `Community 1719`** (1 nodes): `b4jqcqoahjjy0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1665`** (1 nodes): `b4jqcqoahjjy1.lump.cpp` +- **Thin community `Community 1720`** (1 nodes): `b4jqcqoahjjy1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1666`** (1 nodes): `b4jqcqoahjjy2.lump.cpp` +- **Thin community `Community 1721`** (1 nodes): `b4jqcqoahjjy2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1667`** (1 nodes): `bhkzqpgs4ima0.lump.cpp` +- **Thin community `Community 1722`** (1 nodes): `bhkzqpgs4ima0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1668`** (1 nodes): `c7wjplgqhb730.lump.cpp` +- **Thin community `Community 1723`** (1 nodes): `c7wjplgqhb730.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1669`** (1 nodes): `du1ifjkad8u20.lump.cpp` +- **Thin community `Community 1724`** (1 nodes): `du1ifjkad8u20.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1670`** (1 nodes): `ewyjdmwcanrw0.lump.cpp` +- **Thin community `Community 1725`** (1 nodes): `ewyjdmwcanrw0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1671`** (1 nodes): `ex9lft0zt9in0.lump.cpp` +- **Thin community `Community 1726`** (1 nodes): `ex9lft0zt9in0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1672`** (1 nodes): `ex9lft0zt9in1.lump.cpp` +- **Thin community `Community 1727`** (1 nodes): `ex9lft0zt9in1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1673`** (1 nodes): `ex9lft0zt9in2.lump.cpp` +- **Thin community `Community 1728`** (1 nodes): `ex9lft0zt9in2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1674`** (1 nodes): `fkcc5ylgdo8y0.lump.cpp` +- **Thin community `Community 1729`** (1 nodes): `fkcc5ylgdo8y0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1675`** (1 nodes): `frp36j0bzhcl0.lump.cpp` +- **Thin community `Community 1730`** (1 nodes): `frp36j0bzhcl0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1676`** (1 nodes): `ft05c9u82lo50.lump.cpp` +- **Thin community `Community 1731`** (1 nodes): `ft05c9u82lo50.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1677`** (1 nodes): `g4sf6y0w0apz0.lump.cpp` +- **Thin community `Community 1732`** (1 nodes): `g4sf6y0w0apz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1678`** (1 nodes): `gci9mavuzsif0.lump.cpp` +- **Thin community `Community 1733`** (1 nodes): `gci9mavuzsif0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1679`** (1 nodes): `gci9mavuzsif1.lump.cpp` +- **Thin community `Community 1734`** (1 nodes): `gci9mavuzsif1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1680`** (1 nodes): `gci9mavuzsif2.lump.cpp` +- **Thin community `Community 1735`** (1 nodes): `gci9mavuzsif2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1681`** (1 nodes): `h12u4769ee920.lump.cpp` +- **Thin community `Community 1736`** (1 nodes): `h12u4769ee920.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1682`** (1 nodes): `hnsqfnhwtr8b0.lump.cpp` +- **Thin community `Community 1737`** (1 nodes): `hnsqfnhwtr8b0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1683`** (1 nodes): `jzqnozm4hl0r0.lump.cpp` +- **Thin community `Community 1738`** (1 nodes): `jzqnozm4hl0r0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1684`** (1 nodes): `jzqnozm4hl0r1.lump.cpp` +- **Thin community `Community 1739`** (1 nodes): `jzqnozm4hl0r1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1685`** (1 nodes): `jzqnozm4hl0r2.lump.cpp` +- **Thin community `Community 1740`** (1 nodes): `jzqnozm4hl0r2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1686`** (1 nodes): `k7zh4ucf1hvo0.lump.cpp` +- **Thin community `Community 1741`** (1 nodes): `k7zh4ucf1hvo0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1687`** (1 nodes): `kweoh0cgfd7l0.lump.cpp` +- **Thin community `Community 1742`** (1 nodes): `kweoh0cgfd7l0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1688`** (1 nodes): `l3gr0ukoom4l0.lump.cpp` +- **Thin community `Community 1743`** (1 nodes): `l3gr0ukoom4l0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1689`** (1 nodes): `lmqccfynfx4u0.lump.cpp` +- **Thin community `Community 1744`** (1 nodes): `lmqccfynfx4u0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1690`** (1 nodes): `lshg3z6kujix0.lump.cpp` +- **Thin community `Community 1745`** (1 nodes): `lshg3z6kujix0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1691`** (1 nodes): `m04tz7m5qi5w0.lump.cpp` +- **Thin community `Community 1746`** (1 nodes): `m04tz7m5qi5w0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1692`** (1 nodes): `m04tz7m5qi5w1.lump.cpp` +- **Thin community `Community 1747`** (1 nodes): `m04tz7m5qi5w1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1693`** (1 nodes): `mbeudi3f7txv0.lump.cpp` +- **Thin community `Community 1748`** (1 nodes): `mbeudi3f7txv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1694`** (1 nodes): `mbeudi3f7txv2.lump.cpp` +- **Thin community `Community 1749`** (1 nodes): `mbeudi3f7txv2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1695`** (1 nodes): `mlfcke35y3aj0.lump.cpp` +- **Thin community `Community 1750`** (1 nodes): `mlfcke35y3aj0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1696`** (1 nodes): `mqxaeabd9jgu0.lump.cpp` +- **Thin community `Community 1751`** (1 nodes): `mqxaeabd9jgu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1697`** (1 nodes): `o72x9e2ieigd0.lump.cpp` +- **Thin community `Community 1752`** (1 nodes): `o72x9e2ieigd0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1698`** (1 nodes): `ofdh7oh0w14o0.lump.cpp` +- **Thin community `Community 1753`** (1 nodes): `ofdh7oh0w14o0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1699`** (1 nodes): `ofdh7oh0w14o1.lump.cpp` +- **Thin community `Community 1754`** (1 nodes): `ofdh7oh0w14o1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1700`** (1 nodes): `pmys4wb7278v0.lump.cpp` +- **Thin community `Community 1755`** (1 nodes): `pmys4wb7278v0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1701`** (1 nodes): `pmys4wb7278v2.lump.cpp` +- **Thin community `Community 1756`** (1 nodes): `pmys4wb7278v2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1702`** (1 nodes): `pmys4wb7278v3.lump.cpp` +- **Thin community `Community 1757`** (1 nodes): `pmys4wb7278v3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1703`** (1 nodes): `qzhfztuf8dmz0.lump.cpp` +- **Thin community `Community 1758`** (1 nodes): `qzhfztuf8dmz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1704`** (1 nodes): `ryh05pi041wv0.lump.cpp` +- **Thin community `Community 1759`** (1 nodes): `ryh05pi041wv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1705`** (1 nodes): `sa7it5x66qnb0.lump.cpp` +- **Thin community `Community 1760`** (1 nodes): `sa7it5x66qnb0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1706`** (1 nodes): `sa7it5x66qnb1.lump.cpp` +- **Thin community `Community 1761`** (1 nodes): `sa7it5x66qnb1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1707`** (1 nodes): `sa7it5x66qnb2.lump.cpp` +- **Thin community `Community 1762`** (1 nodes): `sa7it5x66qnb2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1708`** (1 nodes): `sacg86krannt0.lump.cpp` +- **Thin community `Community 1763`** (1 nodes): `sacg86krannt0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1709`** (1 nodes): `sacg86krannt2.lump.cpp` +- **Thin community `Community 1764`** (1 nodes): `sacg86krannt2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1710`** (1 nodes): `swczjaoen5ri0.lump.cpp` +- **Thin community `Community 1765`** (1 nodes): `swczjaoen5ri0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1711`** (1 nodes): `tb3gfo7histw0.lump.cpp` +- **Thin community `Community 1766`** (1 nodes): `tb3gfo7histw0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1712`** (1 nodes): `tb3gfo7histw1.lump.cpp` +- **Thin community `Community 1767`** (1 nodes): `tb3gfo7histw1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1713`** (1 nodes): `tb3gfo7histw2.lump.cpp` +- **Thin community `Community 1768`** (1 nodes): `tb3gfo7histw2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1714`** (1 nodes): `tuyelf43fcbx0.lump.cpp` +- **Thin community `Community 1769`** (1 nodes): `tuyelf43fcbx0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1715`** (1 nodes): `u6vyk88q0htu0.lump.cpp` +- **Thin community `Community 1770`** (1 nodes): `u6vyk88q0htu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1716`** (1 nodes): `xkvmqqdfkyn00.lump.cpp` +- **Thin community `Community 1771`** (1 nodes): `xkvmqqdfkyn00.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1717`** (1 nodes): `xqblf1g4lodu0.lump.cpp` +- **Thin community `Community 1772`** (1 nodes): `xqblf1g4lodu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1718`** (1 nodes): `xqblf1g4lodu1.lump.cpp` +- **Thin community `Community 1773`** (1 nodes): `xqblf1g4lodu1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1719`** (1 nodes): `xqblf1g4lodu2.lump.cpp` +- **Thin community `Community 1774`** (1 nodes): `xqblf1g4lodu2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1720`** (1 nodes): `y5anjml1lrqv0.lump.cpp` +- **Thin community `Community 1775`** (1 nodes): `y5anjml1lrqv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1721`** (1 nodes): `zhnvl0j1zghh0.lump.cpp` +- **Thin community `Community 1776`** (1 nodes): `zhnvl0j1zghh0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1722`** (1 nodes): `zhnvl0j1zghh1.lump.cpp` +- **Thin community `Community 1777`** (1 nodes): `zhnvl0j1zghh1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1723`** (1 nodes): `zhnvl0j1zghh2.lump.cpp` +- **Thin community `Community 1778`** (1 nodes): `zhnvl0j1zghh2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1724`** (1 nodes): `Animancer.Examples_CodeGen.c` +- **Thin community `Community 1779`** (1 nodes): `Animancer.Examples_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1725`** (1 nodes): `Animancer.FSM_CodeGen.c` +- **Thin community `Community 1780`** (1 nodes): `Animancer.FSM_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1726`** (1 nodes): `Animancer_CodeGen.c` +- **Thin community `Community 1781`** (1 nodes): `Animancer_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1727`** (1 nodes): `Assembly-CSharp-firstpass_CodeGen.c` +- **Thin community `Community 1782`** (1 nodes): `Assembly-CSharp-firstpass_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1728`** (1 nodes): `Assembly-CSharp_CodeGen.c` +- **Thin community `Community 1783`** (1 nodes): `Assembly-CSharp_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1729`** (1 nodes): `com.rlabrecque.steamworks.net_CodeGen.c` +- **Thin community `Community 1784`** (1 nodes): `com.rlabrecque.steamworks.net_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1730`** (1 nodes): `CommandLine_CodeGen.c` +- **Thin community `Community 1785`** (1 nodes): `CommandLine_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1731`** (1 nodes): `ICSharpCode.SharpZipLib_CodeGen.c` +- **Thin community `Community 1786`** (1 nodes): `ICSharpCode.SharpZipLib_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1732`** (1 nodes): `ICSharpCode.SharpZipLib__3.cpp` +- **Thin community `Community 1787`** (1 nodes): `ICSharpCode.SharpZipLib__3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1733`** (1 nodes): `Il2CppCCalculateFieldValues.cpp` +- **Thin community `Community 1788`** (1 nodes): `Il2CppCCalculateFieldValues.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1734`** (1 nodes): `Il2CppCCalculateFieldValues1.cpp` +- **Thin community `Community 1789`** (1 nodes): `Il2CppCCalculateFieldValues1.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1735`** (1 nodes): `Il2CppCCalculateFieldValues2.cpp` +- **Thin community `Community 1790`** (1 nodes): `Il2CppCCalculateFieldValues2.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1736`** (1 nodes): `Il2CppCCalculateFieldValues3.cpp` +- **Thin community `Community 1791`** (1 nodes): `Il2CppCCalculateFieldValues3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1737`** (1 nodes): `Il2CppCCalculateFieldValues4.cpp` +- **Thin community `Community 1792`** (1 nodes): `Il2CppCCalculateFieldValues4.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1738`** (1 nodes): `Il2CppCCalculateFieldValues5.cpp` +- **Thin community `Community 1793`** (1 nodes): `Il2CppCCalculateFieldValues5.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1739`** (1 nodes): `Il2CppCCalculateTypeValues2.cpp` +- **Thin community `Community 1794`** (1 nodes): `Il2CppCCalculateTypeValues2.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1740`** (1 nodes): `Il2CppCCalculateTypeValues3.cpp` +- **Thin community `Community 1795`** (1 nodes): `Il2CppCCalculateTypeValues3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1741`** (1 nodes): `Il2CppCCFieldValuesTable.cpp` +- **Thin community `Community 1796`** (1 nodes): `Il2CppCCFieldValuesTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1742`** (1 nodes): `Il2CppCCTypeValuesTable.cpp` +- **Thin community `Community 1797`** (1 nodes): `Il2CppCCTypeValuesTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1743`** (1 nodes): `Il2CppGenericAdjustorThunkTable.c` +- **Thin community `Community 1798`** (1 nodes): `Il2CppGenericAdjustorThunkTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1744`** (1 nodes): `Il2CppGenericClassTable.c` +- **Thin community `Community 1799`** (1 nodes): `Il2CppGenericClassTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1745`** (1 nodes): `Il2CppGenericInstDefinitions.c` +- **Thin community `Community 1800`** (1 nodes): `Il2CppGenericInstDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1746`** (1 nodes): `Il2CppGenericMethodDefinitions.c` +- **Thin community `Community 1801`** (1 nodes): `Il2CppGenericMethodDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1747`** (1 nodes): `Il2CppGenericMethodPointerTable.c` +- **Thin community `Community 1802`** (1 nodes): `Il2CppGenericMethodPointerTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1748`** (1 nodes): `Il2CppGenericMethodTable.c` +- **Thin community `Community 1803`** (1 nodes): `Il2CppGenericMethodTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1749`** (1 nodes): `Il2CppMetadataRegistration.c` +- **Thin community `Community 1804`** (1 nodes): `Il2CppMetadataRegistration.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1750`** (1 nodes): `Il2CppMetadataUsage.c` +- **Thin community `Community 1805`** (1 nodes): `Il2CppMetadataUsage.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1751`** (1 nodes): `Il2CppReversePInvokeWrapperTable.cpp` +- **Thin community `Community 1806`** (1 nodes): `Il2CppReversePInvokeWrapperTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1752`** (1 nodes): `Il2CppRgctxTable.c` +- **Thin community `Community 1807`** (1 nodes): `Il2CppRgctxTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1753`** (1 nodes): `Il2CppTypeDefinitions.c` +- **Thin community `Community 1808`** (1 nodes): `Il2CppTypeDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1754`** (1 nodes): `MemoryPack_CodeGen.c` +- **Thin community `Community 1809`** (1 nodes): `MemoryPack_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1755`** (1 nodes): `Microsoft.ML.OnnxRuntime_CodeGen.c` +- **Thin community `Community 1810`** (1 nodes): `Microsoft.ML.OnnxRuntime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1756`** (1 nodes): `MongoDB.Bson_CodeGen.c` +- **Thin community `Community 1811`** (1 nodes): `MongoDB.Bson_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1757`** (1 nodes): `Mono.Security_CodeGen.c` +- **Thin community `Community 1812`** (1 nodes): `Mono.Security_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1758`** (1 nodes): `mscorlib_CodeGen.c` +- **Thin community `Community 1813`** (1 nodes): `mscorlib_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1759`** (1 nodes): `NLog_CodeGen.c` +- **Thin community `Community 1814`** (1 nodes): `NLog_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1760`** (1 nodes): `NodeCanvas_CodeGen.c` +- **Thin community `Community 1815`** (1 nodes): `NodeCanvas_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1761`** (1 nodes): `OPS.Obfuscator_CodeGen.c` +- **Thin community `Community 1816`** (1 nodes): `OPS.Obfuscator_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1762`** (1 nodes): `ParadoxNotion_CodeGen.c` +- **Thin community `Community 1817`** (1 nodes): `ParadoxNotion_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1763`** (1 nodes): `System.Configuration_CodeGen.c` +- **Thin community `Community 1818`** (1 nodes): `System.Configuration_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1764`** (1 nodes): `System.Core_CodeGen.c` +- **Thin community `Community 1819`** (1 nodes): `System.Core_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1765`** (1 nodes): `System.Data_CodeGen.c` +- **Thin community `Community 1820`** (1 nodes): `System.Data_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1766`** (1 nodes): `System.IO.Compression_CodeGen.c` +- **Thin community `Community 1821`** (1 nodes): `System.IO.Compression_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1767`** (1 nodes): `System.Net.Http_CodeGen.c` +- **Thin community `Community 1822`** (1 nodes): `System.Net.Http_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1768`** (1 nodes): `System.Numerics_CodeGen.c` +- **Thin community `Community 1823`** (1 nodes): `System.Numerics_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1769`** (1 nodes): `System.Runtime.CompilerServices.Unsafe_CodeGen.c` +- **Thin community `Community 1824`** (1 nodes): `System.Runtime.CompilerServices.Unsafe_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1770`** (1 nodes): `System.Transactions_CodeGen.c` +- **Thin community `Community 1825`** (1 nodes): `System.Transactions_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1771`** (1 nodes): `System.Xml_CodeGen.c` +- **Thin community `Community 1826`** (1 nodes): `System.Xml_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1772`** (1 nodes): `System_CodeGen.c` +- **Thin community `Community 1827`** (1 nodes): `System_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1773`** (1 nodes): `Unity.2D.Animation.Runtime_CodeGen.c` +- **Thin community `Community 1828`** (1 nodes): `Unity.2D.Animation.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1774`** (1 nodes): `Unity.Burst.Unsafe_CodeGen.c` +- **Thin community `Community 1829`** (1 nodes): `Unity.Burst.Unsafe_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1775`** (1 nodes): `Unity.Burst_CodeGen.c` +- **Thin community `Community 1830`** (1 nodes): `Unity.Burst_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1776`** (1 nodes): `Unity.Collections.LowLevel.ILSupport_CodeGen.c` +- **Thin community `Community 1831`** (1 nodes): `Unity.Collections.LowLevel.ILSupport_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1777`** (1 nodes): `Unity.Collections_CodeGen.c` +- **Thin community `Community 1832`** (1 nodes): `Unity.Collections_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1778`** (1 nodes): `Unity.InternalAPIEngineBridge.001_CodeGen.c` +- **Thin community `Community 1833`** (1 nodes): `Unity.InternalAPIEngineBridge.001_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1779`** (1 nodes): `Unity.Mathematics_CodeGen.c` +- **Thin community `Community 1834`** (1 nodes): `Unity.Mathematics_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1780`** (1 nodes): `Unity.RenderPipeline.Universal.ShaderLibrary_CodeGen.c` +- **Thin community `Community 1835`** (1 nodes): `Unity.RenderPipeline.Universal.ShaderLibrary_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1781`** (1 nodes): `Unity.RenderPipelines.Core.Runtime_CodeGen.c` +- **Thin community `Community 1836`** (1 nodes): `Unity.RenderPipelines.Core.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1782`** (1 nodes): `Unity.RenderPipelines.Universal.Runtime_CodeGen.c` +- **Thin community `Community 1837`** (1 nodes): `Unity.RenderPipelines.Universal.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1783`** (1 nodes): `Unity.TextMeshPro_CodeGen.c` +- **Thin community `Community 1838`** (1 nodes): `Unity.TextMeshPro_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1784`** (1 nodes): `UnityEngine.AIModule_CodeGen.c` +- **Thin community `Community 1839`** (1 nodes): `UnityEngine.AIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1785`** (1 nodes): `UnityEngine.AndroidJNIModule_CodeGen.c` +- **Thin community `Community 1840`** (1 nodes): `UnityEngine.AndroidJNIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1786`** (1 nodes): `UnityEngine.AnimationModule_CodeGen.c` +- **Thin community `Community 1841`** (1 nodes): `UnityEngine.AnimationModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1787`** (1 nodes): `UnityEngine.AssetBundleModule_CodeGen.c` +- **Thin community `Community 1842`** (1 nodes): `UnityEngine.AssetBundleModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1788`** (1 nodes): `UnityEngine.AudioModule_CodeGen.c` +- **Thin community `Community 1843`** (1 nodes): `UnityEngine.AudioModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1789`** (1 nodes): `UnityEngine.CoreModule_CodeGen.c` +- **Thin community `Community 1844`** (1 nodes): `UnityEngine.CoreModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1790`** (1 nodes): `UnityEngine.DirectorModule_CodeGen.c` +- **Thin community `Community 1845`** (1 nodes): `UnityEngine.DirectorModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1791`** (1 nodes): `UnityEngine.GridModule_CodeGen.c` +- **Thin community `Community 1846`** (1 nodes): `UnityEngine.GridModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1792`** (1 nodes): `UnityEngine.IMGUIModule_CodeGen.c` +- **Thin community `Community 1847`** (1 nodes): `UnityEngine.IMGUIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1793`** (1 nodes): `UnityEngine.InputLegacyModule_CodeGen.c` +- **Thin community `Community 1848`** (1 nodes): `UnityEngine.InputLegacyModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1794`** (1 nodes): `UnityEngine.InputModule_CodeGen.c` +- **Thin community `Community 1849`** (1 nodes): `UnityEngine.InputModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1795`** (1 nodes): `UnityEngine.JSONSerializeModule_CodeGen.c` +- **Thin community `Community 1850`** (1 nodes): `UnityEngine.JSONSerializeModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1796`** (1 nodes): `UnityEngine.ParticleSystemModule_CodeGen.c` +- **Thin community `Community 1851`** (1 nodes): `UnityEngine.ParticleSystemModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1797`** (1 nodes): `UnityEngine.Physics2DModule_CodeGen.c` +- **Thin community `Community 1852`** (1 nodes): `UnityEngine.Physics2DModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1798`** (1 nodes): `UnityEngine.PhysicsModule_CodeGen.c` +- **Thin community `Community 1853`** (1 nodes): `UnityEngine.PhysicsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1799`** (1 nodes): `UnityEngine.PropertiesModule_CodeGen.c` +- **Thin community `Community 1854`** (1 nodes): `UnityEngine.PropertiesModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1800`** (1 nodes): `UnityEngine.SharedInternalsModule_CodeGen.c` +- **Thin community `Community 1855`** (1 nodes): `UnityEngine.SharedInternalsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1801`** (1 nodes): `UnityEngine.SpriteMaskModule_CodeGen.c` +- **Thin community `Community 1856`** (1 nodes): `UnityEngine.SpriteMaskModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1802`** (1 nodes): `UnityEngine.SpriteShapeModule.cpp` +- **Thin community `Community 1857`** (1 nodes): `UnityEngine.SpriteShapeModule.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1803`** (1 nodes): `UnityEngine.SpriteShapeModule_CodeGen.c` +- **Thin community `Community 1858`** (1 nodes): `UnityEngine.SpriteShapeModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1804`** (1 nodes): `UnityEngine.SubsystemsModule_CodeGen.c` +- **Thin community `Community 1859`** (1 nodes): `UnityEngine.SubsystemsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1805`** (1 nodes): `UnityEngine.TerrainModule_CodeGen.c` +- **Thin community `Community 1860`** (1 nodes): `UnityEngine.TerrainModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1806`** (1 nodes): `UnityEngine.TextCoreFontEngineModule_CodeGen.c` +- **Thin community `Community 1861`** (1 nodes): `UnityEngine.TextCoreFontEngineModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1807`** (1 nodes): `UnityEngine.TextCoreTextEngineModule_CodeGen.c` +- **Thin community `Community 1862`** (1 nodes): `UnityEngine.TextCoreTextEngineModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1808`** (1 nodes): `UnityEngine.TextRenderingModule_CodeGen.c` +- **Thin community `Community 1863`** (1 nodes): `UnityEngine.TextRenderingModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1809`** (1 nodes): `UnityEngine.TilemapModule_CodeGen.c` +- **Thin community `Community 1864`** (1 nodes): `UnityEngine.TilemapModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1810`** (1 nodes): `UnityEngine.UIElementsModule_CodeGen.c` +- **Thin community `Community 1865`** (1 nodes): `UnityEngine.UIElementsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1811`** (1 nodes): `UnityEngine.UIModule_CodeGen.c` +- **Thin community `Community 1866`** (1 nodes): `UnityEngine.UIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1812`** (1 nodes): `UnityEngine.UI_CodeGen.c` +- **Thin community `Community 1867`** (1 nodes): `UnityEngine.UI_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1813`** (1 nodes): `UnityEngine.UnityAnalyticsModule_CodeGen.c` +- **Thin community `Community 1868`** (1 nodes): `UnityEngine.UnityAnalyticsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1814`** (1 nodes): `UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c` +- **Thin community `Community 1869`** (1 nodes): `UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1815`** (1 nodes): `UnityEngine.UnityWebRequestModule_CodeGen.c` +- **Thin community `Community 1870`** (1 nodes): `UnityEngine.UnityWebRequestModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1816`** (1 nodes): `UnityEngine.VFXModule_CodeGen.c` +- **Thin community `Community 1871`** (1 nodes): `UnityEngine.VFXModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1817`** (1 nodes): `UnityEngine.VideoModule_CodeGen.c` +- **Thin community `Community 1872`** (1 nodes): `UnityEngine.VideoModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1818`** (1 nodes): `UnityEngine.VRModule_CodeGen.c` +- **Thin community `Community 1873`** (1 nodes): `UnityEngine.VRModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1819`** (1 nodes): `UnityEngine.XRModule_CodeGen.c` +- **Thin community `Community 1874`** (1 nodes): `UnityEngine.XRModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1820`** (1 nodes): `UnityEngine_CodeGen.c` +- **Thin community `Community 1875`** (1 nodes): `UnityEngine_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1821`** (1 nodes): `YooAsset_CodeGen.c` +- **Thin community `Community 1876`** (1 nodes): `YooAsset_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1822`** (1 nodes): `__Generated_CodeGen.c` +- **Thin community `Community 1877`** (1 nodes): `__Generated_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1823`** (1 nodes): `pch-c-10256095421914793858.cpp` +- **Thin community `Community 1878`** (1 nodes): `pch-c-10256095421914793858.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1824`** (1 nodes): `pch-c-13433379115825167417.cpp` +- **Thin community `Community 1879`** (1 nodes): `pch-c-13433379115825167417.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1825`** (1 nodes): `pch-c-8979330332050630401.cpp` +- **Thin community `Community 1880`** (1 nodes): `pch-c-8979330332050630401.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1826`** (1 nodes): `pch-cpp-12811492739455714243.cpp` +- **Thin community `Community 1881`** (1 nodes): `pch-cpp-12811492739455714243.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1827`** (1 nodes): `pch-cpp-16603789281455124026.cpp` +- **Thin community `Community 1882`** (1 nodes): `pch-cpp-16603789281455124026.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1828`** (1 nodes): `pch-cpp-9028123735095674082.cpp` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1829`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1830`** (1 nodes): `_InternalVisibleTo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1831`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1832`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1833`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1834`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1835`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1836`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1837`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1838`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1839`** (1 nodes): `TexturePlatformSettingsModel.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1840`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1841`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1842`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1843`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1844`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1845`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1846`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1847`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1848`** (1 nodes): `TexturePlatformSettingsModal.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1849`** (1 nodes): `TextureSettingsGUI.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1850`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1851`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1852`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1853`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1854`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1855`** (1 nodes): `BurstLoader.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1856`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1857`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1858`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1859`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1860`** (1 nodes): `main.mm` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1861`** (1 nodes): `BStrHolder.h` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1862`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1863`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1864`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1865`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1866`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1867`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1868`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1869`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1870`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1871`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1872`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1873`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1874`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1875`** (1 nodes): `GlyphInfoDrawer.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1876`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1877`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1878`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1879`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1880`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1881`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1882`** (1 nodes): `InvocationInspector.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1883`** (1 nodes): `MemberInvocationInspector.cs` +- **Thin community `Community 1883`** (1 nodes): `pch-cpp-9028123735095674082.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1884`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1885`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1885`** (1 nodes): `_InternalVisibleTo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1886`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. @@ -11656,471 +11821,581 @@ Nodes (1): Kill any existing processes listening on the target port. Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1888`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1889`** (1 nodes): `glmdebug.h` +- **Thin community `Community 1889`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1890`** (1 nodes): `glmgrcocoa.mm` +- **Thin community `Community 1890`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1891`** (1 nodes): `glmgrext.h` +- **Thin community `Community 1891`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1892`** (1 nodes): `isteamdualsense.h` +- **Thin community `Community 1892`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1893`** (1 nodes): `steamencryptedappticket.h` +- **Thin community `Community 1893`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1894`** (1 nodes): `steamps3params.h` +- **Thin community `Community 1894`** (1 nodes): `TexturePlatformSettingsModel.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1895`** (1 nodes): `steamuniverse.h` +- **Thin community `Community 1895`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1896`** (1 nodes): `steam_api_internal.h` +- **Thin community `Community 1896`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1897`** (1 nodes): `BaseMenu.cpp` +- **Thin community `Community 1897`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1898`** (1 nodes): `musicplayer.h` +- **Thin community `Community 1898`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1899`** (1 nodes): `SimpleProtobuf.h` +- **Thin community `Community 1899`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1900`** (1 nodes): `SpaceWarRes.h` +- **Thin community `Community 1900`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1901`** (1 nodes): `stdafx.cpp` +- **Thin community `Community 1901`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1902`** (1 nodes): `stdafx_ps3.h` +- **Thin community `Community 1902`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1903`** (1 nodes): `glew.h` +- **Thin community `Community 1903`** (1 nodes): `TexturePlatformSettingsModal.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1904`** (1 nodes): `glxew.h` +- **Thin community `Community 1904`** (1 nodes): `TextureSettingsGUI.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1905`** (1 nodes): `wglew.h` +- **Thin community `Community 1905`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1906`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 1906`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1907`** (1 nodes): `Load suggestions.json from DOC/, return dict with nextId and suggestions list.` +- **Thin community `Community 1907`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1908`** (1 nodes): `Load todos.json from DOC/, return dict with nextId and todos list.` +- **Thin community `Community 1908`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1909`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 1909`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1910`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 1910`** (1 nodes): `BurstLoader.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1911`** (1 nodes): `Save suggestions.json to DOC/.` +- **Thin community `Community 1911`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1912`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 1912`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1913`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 1913`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1914`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 1914`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1915`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 1915`** (1 nodes): `main.mm` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1916`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 1916`** (1 nodes): `BStrHolder.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1917`** (1 nodes): `Save core player feedback collections to Dashboard data.` +- **Thin community `Community 1917`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1918`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 1918`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1919`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 1919`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1920`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 1920`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1921`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 1921`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1922`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` +- **Thin community `Community 1922`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1923`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 1923`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1924`** (1 nodes): `Run export_data.py and return the result as JSON.` +- **Thin community `Community 1924`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1925`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 1925`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1926`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 1926`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1927`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 1927`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1928`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 1928`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1929`** (1 nodes): `Create a new todo record.` +- **Thin community `Community 1929`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1930`** (1 nodes): `Update a todo's fields.` +- **Thin community `Community 1930`** (1 nodes): `GlyphInfoDrawer.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1931`** (1 nodes): `Create a new suggestion record.` +- **Thin community `Community 1931`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1932`** (1 nodes): `Update a suggestion's fields.` +- **Thin community `Community 1932`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1933`** (1 nodes): `Delete a suggestion by id.` +- **Thin community `Community 1933`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1934`** (1 nodes): `Update a feedback item inside a core player feedback collection.` +- **Thin community `Community 1934`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1935`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 1935`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1936`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 1936`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1937`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 1937`** (1 nodes): `InvocationInspector.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1938`** (1 nodes): `Fetch new discussions from Steam Community.` +- **Thin community `Community 1938`** (1 nodes): `MemberInvocationInspector.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1939`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 1939`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1940`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 1940`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1941`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 1941`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1942`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 1942`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1943`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 1943`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1944`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 1944`** (1 nodes): `glmdebug.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1945`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 1945`** (1 nodes): `glmgrcocoa.mm` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1946`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 1946`** (1 nodes): `glmgrext.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1947`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 1947`** (1 nodes): `isteamdualsense.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1948`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 1948`** (1 nodes): `steamencryptedappticket.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1949`** (1 nodes): `Fetch new discussions from Steam Community.` +- **Thin community `Community 1949`** (1 nodes): `steamps3params.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1950`** (1 nodes): `Return demo data when Steam is unreachable.` +- **Thin community `Community 1950`** (1 nodes): `steamuniverse.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1951`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 1951`** (1 nodes): `steam_api_internal.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1952`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 1952`** (1 nodes): `BaseMenu.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1953`** (1 nodes): `Load quick replies data.` +- **Thin community `Community 1953`** (1 nodes): `musicplayer.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1954`** (1 nodes): `Persist quick replies data.` +- **Thin community `Community 1954`** (1 nodes): `SimpleProtobuf.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1955`** (1 nodes): `GET /api/quick-replies` +- **Thin community `Community 1955`** (1 nodes): `SpaceWarRes.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1956`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` +- **Thin community `Community 1956`** (1 nodes): `stdafx.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1957`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 1957`** (1 nodes): `stdafx_ps3.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1958`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 1958`** (1 nodes): `glew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1959`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 1959`** (1 nodes): `glxew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1960`** (1 nodes): `Save suggestions.json to DOC/.` +- **Thin community `Community 1960`** (1 nodes): `wglew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1961`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 1961`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1962`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 1962`** (1 nodes): `Load suggestions.json from DOC/, return dict with nextId and suggestions list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1963`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 1963`** (1 nodes): `Load todos.json from DOC/, return dict with nextId and todos list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1964`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` +- **Thin community `Community 1964`** (1 nodes): `Load devplan.json from DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1965`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 1965`** (1 nodes): `Save devplan.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1966`** (1 nodes): `Run export_data.py and return the result as JSON.` +- **Thin community `Community 1966`** (1 nodes): `Save suggestions.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1967`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 1967`** (1 nodes): `Load devplan.json from DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1968`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 1968`** (1 nodes): `Save devplan.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1969`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 1969`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1970`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 1970`** (1 nodes): `Load the sentiment index.json, return list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1971`** (1 nodes): `Create a new suggestion record.` +- **Thin community `Community 1971`** (1 nodes): `Save the sentiment index.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1972`** (1 nodes): `Update a suggestion's fields.` +- **Thin community `Community 1972`** (1 nodes): `Save core player feedback collections to Dashboard data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1973`** (1 nodes): `Delete a suggestion by id.` +- **Thin community `Community 1973`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1974`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 1974`** (1 nodes): `Handles static files and API endpoints.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1975`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 1975`** (1 nodes): `List available version folders in data/oss/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1976`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 1976`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1977`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 1977`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1978`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 1978`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1979`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 1979`** (1 nodes): `Run export_data.py and return the result as JSON.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1980`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 1980`** (1 nodes): `Create a new sentiment record from multipart form data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1981`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 1981`** (1 nodes): `Delete a sentiment record by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1982`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 1982`** (1 nodes): `Create a new bug record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1983`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 1983`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1984`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 1984`** (1 nodes): `Create a new todo record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1985`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 1985`** (1 nodes): `Update a todo's fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1986`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 1986`** (1 nodes): `Create a new suggestion record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1987`** (1 nodes): `Return demo data when Steam is unreachable.` +- **Thin community `Community 1987`** (1 nodes): `Update a suggestion's fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1988`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 1988`** (1 nodes): `Delete a suggestion by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1989`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 1989`** (1 nodes): `Update a feedback item inside a core player feedback collection.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1990`** (1 nodes): `Load quick replies data.` +- **Thin community `Community 1990`** (1 nodes): `Create a new marketing TODO item.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1991`** (1 nodes): `Persist quick replies data.` +- **Thin community `Community 1991`** (1 nodes): `Toggle a TODO item's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1992`** (1 nodes): `GET /api/quick-replies` +- **Thin community `Community 1992`** (1 nodes): `Update a task's description or other fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1993`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 1993`** (1 nodes): `Fetch new discussions from Steam Community.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1994`** (1 nodes): `解析特殊标记格式的数据。 新 TXT 格式 16 字段(编辑器 sb.Append 写出,去掉 RU/ES/PT/FR + 加 IsSecondary` +- **Thin community `Community 1994`** (1 nodes): `Toggle a subtask's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1995`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 1995`** (1 nodes): `Save a marketing event note.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1996`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 1996`** (1 nodes): `Create a new marketing event.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1997`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 1997`** (1 nodes): `Extract platform name from /api/sns/{platform}...` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1998`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 1998`** (1 nodes): `Get path to the platform's JSON file.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1999`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` +- **Thin community `Community 1999`** (1 nodes): `Load a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2000`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` +- **Thin community `Community 2000`** (1 nodes): `Save a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2001`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 2001`** (1 nodes): `Handle GET /api/sns/{platform}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2002`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 2002`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2003`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 2003`** (1 nodes): `Update (create or modify) a comment.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2004`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 2004`** (1 nodes): `Fetch new discussions from Steam Community.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2005`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 2005`** (1 nodes): `Return demo data when Steam is unreachable.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2006`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 2006`** (1 nodes): `Parse Steam Community discussion list from HTML.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2007`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 2007`** (1 nodes): `Bulk create comments from selected discussions.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2008`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 2008`** (1 nodes): `Load quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2009`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 2009`** (1 nodes): `Persist quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2010`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 2010`** (1 nodes): `GET /api/quick-replies` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2011`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 2011`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2012`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 2012`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2013`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 2013`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2014`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 2014`** (1 nodes): `Save bugs.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2015`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 2015`** (1 nodes): `Save suggestions.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2016`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 2016`** (1 nodes): `Handles static files and API endpoints.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2017`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 2017`** (1 nodes): `List available version folders in data/oss/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2018`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 2018`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2019`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 2019`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2020`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 2020`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2021`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 2021`** (1 nodes): `Run export_data.py and return the result as JSON.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2022`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 2022`** (1 nodes): `Create a new sentiment record from multipart form data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2023`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 2023`** (1 nodes): `Delete a sentiment record by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2024`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 2024`** (1 nodes): `Create a new bug record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2025`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 2025`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2026`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 2026`** (1 nodes): `Create a new suggestion record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2027`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 2027`** (1 nodes): `Update a suggestion's fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2028`** (1 nodes): `Load quick replies data.` +- **Thin community `Community 2028`** (1 nodes): `Delete a suggestion by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2029`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 2029`** (1 nodes): `Create a new marketing TODO item.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2030`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 2030`** (1 nodes): `Toggle a TODO item's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2031`** (1 nodes): `Load quick replies data.` +- **Thin community `Community 2031`** (1 nodes): `Update a task's description or other fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2032`** (1 nodes): `Persist quick replies data.` +- **Thin community `Community 2032`** (1 nodes): `Create a subtask under a task.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2033`** (1 nodes): `GET /api/quick-replies` +- **Thin community `Community 2033`** (1 nodes): `Toggle a subtask's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2034`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` +- **Thin community `Community 2034`** (1 nodes): `Save a marketing event note.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2035`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 2035`** (1 nodes): `Create a new marketing event.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2036`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 2036`** (1 nodes): `Get path to the platform's JSON file.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2037`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 2037`** (1 nodes): `Load a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2038`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 2038`** (1 nodes): `Save a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2039`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 2039`** (1 nodes): `Handle GET /api/sns/{platform}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2040`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` +- **Thin community `Community 2040`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2041`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` +- **Thin community `Community 2041`** (1 nodes): `Update (create or modify) a comment.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2042`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 2042`** (1 nodes): `Return demo data when Steam is unreachable.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2043`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 2043`** (1 nodes): `Parse Steam Community discussion list from HTML.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2044`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 2044`** (1 nodes): `Bulk create comments from selected discussions.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2045`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 2045`** (1 nodes): `Load quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2046`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 2046`** (1 nodes): `Persist quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2047`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 2047`** (1 nodes): `GET /api/quick-replies` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2048`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` +- **Thin community `Community 2048`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2049`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 2049`** (1 nodes): `解析特殊标记格式的数据。 新 TXT 格式 16 字段(编辑器 sb.Append 写出,去掉 RU/ES/PT/FR + 加 IsSecondary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2050`** (1 nodes): `Run export_data.py and return the result as JSON.` +- **Thin community `Community 2050`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2051`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 2051`** (1 nodes): `Save bugs.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2052`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 2052`** (1 nodes): `Load devplan.json from DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2053`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 2053`** (1 nodes): `Save devplan.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2054`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 2054`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2055`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 2055`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2056`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 2056`** (1 nodes): `Load the sentiment index.json, return list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2057`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 2057`** (1 nodes): `Save the sentiment index.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2058`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 2058`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2059`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 2059`** (1 nodes): `Handles static files and API endpoints.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2060`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 2060`** (1 nodes): `List available version folders in data/oss/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2061`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 2061`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2062`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 2062`** (1 nodes): `Create a new sentiment record from multipart form data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2063`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 2063`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2064`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 2064`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2065`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 2065`** (1 nodes): `Create a new sentiment record from multipart form data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2066`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 2066`** (1 nodes): `Delete a sentiment record by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2067`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 2067`** (1 nodes): `Create a new bug record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2068`** (1 nodes): `Fetch new discussions from Steam Community.` +- **Thin community `Community 2068`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2069`** (1 nodes): `Return demo data when Steam is unreachable.` +- **Thin community `Community 2069`** (1 nodes): `Create a new marketing TODO item.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2070`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 2070`** (1 nodes): `Toggle a TODO item's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2071`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 2071`** (1 nodes): `Update a task's description or other fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2072`** (1 nodes): `Persist quick replies data.` +- **Thin community `Community 2072`** (1 nodes): `Create a subtask under a task.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2073`** (1 nodes): `GET /api/quick-replies` +- **Thin community `Community 2073`** (1 nodes): `Toggle a subtask's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2074`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` +- **Thin community `Community 2074`** (1 nodes): `Save a marketing event note.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2075`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 2075`** (1 nodes): `Create a new marketing event.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2076`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 2076`** (1 nodes): `Extract platform name from /api/sns/{platform}...` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2077`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 2077`** (1 nodes): `Get path to the platform's JSON file.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2078`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 2078`** (1 nodes): `Load a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2079`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 2079`** (1 nodes): `Save a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2080`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` +- **Thin community `Community 2080`** (1 nodes): `Handle GET /api/sns/{platform}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2081`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` +- **Thin community `Community 2081`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2082`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 2082`** (1 nodes): `Update (create or modify) a comment.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2083`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 2083`** (1 nodes): `Load quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2084`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 2084`** (1 nodes): `Parse Steam Community discussion list from HTML.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2085`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 2085`** (1 nodes): `Bulk create comments from selected discussions.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2086`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 2086`** (1 nodes): `Load quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2087`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` +- **Thin community `Community 2087`** (1 nodes): `Persist quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2088`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 2088`** (1 nodes): `GET /api/quick-replies` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2089`** (1 nodes): `Run export_data.py and return the result as JSON.` +- **Thin community `Community 2089`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2090`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 2090`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2091`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 2091`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2092`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 2092`** (1 nodes): `Save bugs.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2093`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 2093`** (1 nodes): `Load devplan.json from DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2094`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 2094`** (1 nodes): `Save devplan.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2095`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 2095`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2096`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 2096`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2097`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 2097`** (1 nodes): `Load the sentiment index.json, return list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2098`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 2098`** (1 nodes): `Save the sentiment index.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2099`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 2099`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2100`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 2100`** (1 nodes): `Handles static files and API endpoints.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2101`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 2101`** (1 nodes): `List available version folders in data/oss/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2102`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 2102`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2103`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 2103`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2104`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 2104`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2105`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 2105`** (1 nodes): `Run export_data.py and return the result as JSON.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2106`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 2106`** (1 nodes): `Delete a sentiment record by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2107`** (1 nodes): `Fetch new discussions from Steam Community.` +- **Thin community `Community 2107`** (1 nodes): `Create a new bug record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2108`** (1 nodes): `Return demo data when Steam is unreachable.` +- **Thin community `Community 2108`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2109`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 2109`** (1 nodes): `Create a new marketing TODO item.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2110`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 2110`** (1 nodes): `Toggle a TODO item's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2111`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 2111`** (1 nodes): `Update a task's description or other fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2112`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 2112`** (1 nodes): `Create a subtask under a task.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 2113`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 2113`** (1 nodes): `Toggle a subtask's done state.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2114`** (1 nodes): `Save a marketing event note.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2115`** (1 nodes): `Create a new marketing event.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2116`** (1 nodes): `Extract platform name from /api/sns/{platform}...` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2117`** (1 nodes): `Get path to the platform's JSON file.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2118`** (1 nodes): `Load a platform's SNS data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2119`** (1 nodes): `Save a platform's SNS data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2120`** (1 nodes): `Handle GET /api/sns/{platform}` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2121`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2122`** (1 nodes): `Update (create or modify) a comment.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2123`** (1 nodes): `Fetch new discussions from Steam Community.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2124`** (1 nodes): `Return demo data when Steam is unreachable.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2125`** (1 nodes): `Parse Steam Community discussion list from HTML.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2126`** (1 nodes): `Bulk create comments from selected discussions.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2127`** (1 nodes): `Persist quick replies data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2128`** (1 nodes): `GET /api/quick-replies` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2129`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2130`** (1 nodes): `Kill any existing processes listening on the target port.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2131`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2132`** (1 nodes): `Save bugs.json to DOC/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2133`** (1 nodes): `Load devplan.json from DOC/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2134`** (1 nodes): `Save devplan.json to DOC/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2135`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2136`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2137`** (1 nodes): `Load the sentiment index.json, return list.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2138`** (1 nodes): `Save the sentiment index.json.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2139`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2140`** (1 nodes): `Handles static files and API endpoints.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2141`** (1 nodes): `List available version folders in data/oss/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2142`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2143`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2144`** (1 nodes): `Run export_data.py and return the result as JSON.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2145`** (1 nodes): `Create a new sentiment record from multipart form data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2146`** (1 nodes): `Delete a sentiment record by id.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2147`** (1 nodes): `Create a new bug record.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2148`** (1 nodes): `Create a new marketing TODO item.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2149`** (1 nodes): `Toggle a TODO item's done state.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2150`** (1 nodes): `Update a task's description or other fields.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2151`** (1 nodes): `Create a subtask under a task.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2152`** (1 nodes): `Toggle a subtask's done state.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2153`** (1 nodes): `Save a marketing event note.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2154`** (1 nodes): `Create a new marketing event.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2155`** (1 nodes): `Extract platform name from /api/sns/{platform}...` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2156`** (1 nodes): `Get path to the platform's JSON file.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2157`** (1 nodes): `Load a platform's SNS data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2158`** (1 nodes): `Save a platform's SNS data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2159`** (1 nodes): `Handle GET /api/sns/{platform}` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2160`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2161`** (1 nodes): `Update (create or modify) a comment.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2162`** (1 nodes): `Fetch new discussions from Steam Community.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2163`** (1 nodes): `Return demo data when Steam is unreachable.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2164`** (1 nodes): `Parse Steam Community discussion list from HTML.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2165`** (1 nodes): `Bulk create comments from selected discussions.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2166`** (1 nodes): `Kill any existing processes listening on the target port.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2167`** (1 nodes): `Parse Steam Community discussion list from HTML.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2168`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `NullCheck` connect `Community 3` to `Community 0`, `Community 1`, `Community 2`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 27`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 39`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 46`, `Community 47`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 80`, `Community 81`, `Community 82`, `Community 83`, `Community 84`, `Community 85`, `Community 86`, `Community 87`, `Community 88`, `Community 89`, `Community 91`, `Community 92`, `Community 93`, `Community 111`, `Community 112`, `Community 132`, `Community 171`, `Community 271`?** - _High betweenness centrality (0.491) - this node is a cross-community bridge._ -- **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 7` to `Community 1`, `Community 2`, `Community 3`, `Community 5`, `Community 6`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 27`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 39`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 48`, `Community 50`, `Community 52`, `Community 53`, `Community 56`, `Community 57`, `Community 58`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 65`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 80`, `Community 81`, `Community 82`, `Community 83`, `Community 85`, `Community 86`, `Community 87`, `Community 88`, `Community 91`, `Community 93`, `Community 111`, `Community 112`?** - _High betweenness centrality (0.049) - this node is a cross-community bridge._ -- **Why does `Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` connect `Community 2` to `Community 1`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 9`, `Community 13`, `Community 15`, `Community 19`, `Community 23`, `Community 30`, `Community 33`, `Community 38`, `Community 42`, `Community 46`, `Community 47`, `Community 60`, `Community 79`, `Community 86`?** - _High betweenness centrality (0.019) - this node is a cross-community bridge._ -- **Are the 88461 inferred relationships involving `NullCheck` (e.g. with `AnimancerComponent_set_Animator_m6D48D5AFEC5608F1982DDAF26C3512CFE72F2A8D()` and `AnimancerComponent_get_IsPlayableInitialized_mB5A207CBB483E0F77C65DB4AB7615F282E91CD30()`) actually correct?** - _`NullCheck` has 88461 INFERRED edges - model-reasoned connections that need verification._ -- **Are the 9077 inferred relationships involving `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` (e.g. with `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` and `FastComparer__ctor_m651D576617C3EE91A72F9B695130EFBECE6F5DD0()`) actually correct?** - _`Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` has 9077 INFERRED edges - model-reasoned connections that need verification._ -- **Are the 7570 inferred relationships involving `Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` (e.g. with `UIAutoBindRuleHelper_GeneratePopupOptions_m3ECFA03503B6E94C606C8596A3EE4341BCB6AE36()` and `gg_ftp_m40754F04D96E27C5D766821193F3C70BE12D0929()`) actually correct?** - _`Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` has 7570 INFERRED edges - model-reasoned connections that need verification._ -- **Are the 3 inferred relationships involving `a_a__m5CE653E63E64F6F44A52545E39AB9C7A828465FF()` (e.g. with `Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9()` and `NullCheck`) actually correct?** - _`a_a__m5CE653E63E64F6F44A52545E39AB9C7A828465FF()` has 3 INFERRED edges - model-reasoned connections that need verification._ \ No newline at end of file +- **Why does `NullCheck` connect `Community 3` to `Community 0`, `Community 1`, `Community 2`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 39`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 44`, `Community 45`, `Community 46`, `Community 47`, `Community 48`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 75`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 81`, `Community 82`, `Community 83`, `Community 84`, `Community 87`, `Community 88`, `Community 89`, `Community 90`, `Community 100`, `Community 134`, `Community 189`, `Community 293`?** + _High betweenness centrality (0.477) - this node is a cross-community bridge._ +- **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 10` to `Community 1`, `Community 2`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 39`, `Community 42`, `Community 44`, `Community 45`, `Community 47`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 75`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 81`, `Community 82`, `Community 83`, `Community 84`, `Community 87`, `Community 88`, `Community 89`, `Community 100`?** + _High betweenness centrality (0.046) - this node is a cross-community bridge._ +- **Why does `Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57()` connect `Community 2` to `Community 1`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 39`, `Community 42`, `Community 45`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 56`, `Community 58`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 67`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 77`, `Community 79`, `Community 81`, `Community 82`, `Community 84`, `Community 88`, `Community 89`?** + _High betweenness centrality (0.018) - this node is a cross-community bridge._ +- **Are the 88620 inferred relationships involving `NullCheck` (e.g. with `AnimancerComponent_set_Animator_m6D48D5AFEC5608F1982DDAF26C3512CFE72F2A8D()` and `AnimancerComponent_get_IsPlayableInitialized_mB5A207CBB483E0F77C65DB4AB7615F282E91CD30()`) actually correct?** + _`NullCheck` has 88620 INFERRED edges - model-reasoned connections that need verification._ +- **Are the 9079 inferred relationships involving `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` (e.g. with `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` and `FastComparer__ctor_m651D576617C3EE91A72F9B695130EFBECE6F5DD0()`) actually correct?** + _`Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` has 9079 INFERRED edges - model-reasoned connections that need verification._ +- **Are the 7569 inferred relationships involving `Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` (e.g. with `UIAutoBindRuleHelper_GeneratePopupOptions_m3ECFA03503B6E94C606C8596A3EE4341BCB6AE36()` and `gg_bkn_m88731E45BB2C74D5643CB6DA25B42C448734EE34()`) actually correct?** + _`Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` has 7569 INFERRED edges - model-reasoned connections that need verification._ +- **Are the 3 inferred relationships involving `a_a__m1C0AA11936DAB6AF4A5CCC0FB2E60E981141B49F()` (e.g. with `Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9()` and `NullCheck`) actually correct?** + _`a_a__m1C0AA11936DAB6AF4A5CCC0FB2E60E981141B49F()` has 3 INFERRED edges - model-reasoned connections that need verification._ \ No newline at end of file