{"$schema":"https://json.schemastore.org/sarif-2.1.0.json","version":"2.1.0","runs":[{"tool":{"driver":{"name":"codehealth","informationUri":"https://codehealth.canine.dev","rules":[{"id":"D1","name":"Cyclomatic Complexity","shortDescription":{"text":"Cyclomatic Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D1"},{"id":"D2","name":"Cognitive Complexity","shortDescription":{"text":"Cognitive Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D2"},{"id":"D3","name":"God Classes","shortDescription":{"text":"God Classes"},"helpUri":"https://codehealth.canine.dev/dimensions/D3"},{"id":"D4","name":"Code Duplication","shortDescription":{"text":"Code Duplication"},"helpUri":"https://codehealth.canine.dev/dimensions/D4"},{"id":"D8","name":"Code Coverage","shortDescription":{"text":"Code Coverage"},"helpUri":"https://codehealth.canine.dev/dimensions/D8"},{"id":"D13","name":"Secret Scanning","shortDescription":{"text":"Secret Scanning"},"helpUri":"https://codehealth.canine.dev/dimensions/D13","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D15","name":"Churn \u00D7 Complexity Hotspots","shortDescription":{"text":"Churn \u00D7 Complexity Hotspots"},"helpUri":"https://codehealth.canine.dev/dimensions/D15"},{"id":"D16","name":"Bus Factor","shortDescription":{"text":"Bus Factor"},"helpUri":"https://codehealth.canine.dev/dimensions/D16"},{"id":"D19","name":"Documentation Quality","shortDescription":{"text":"Documentation Quality"},"helpUri":"https://codehealth.canine.dev/dimensions/D19"},{"id":"D21","name":"Naming Consistency","shortDescription":{"text":"Naming Consistency"},"helpUri":"https://codehealth.canine.dev/dimensions/D21"},{"id":"D28","name":"Secrets (history)","shortDescription":{"text":"Secrets (history)"},"helpUri":"https://codehealth.canine.dev/dimensions/D28","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D29","name":"Static Analysis (SAST)","shortDescription":{"text":"Static Analysis (SAST)"},"helpUri":"https://codehealth.canine.dev/dimensions/D29","relationships":[{"target":{"id":"CWE-79","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-89","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-78","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-94","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-77","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-79","CWE-89","CWE-78","CWE-94","CWE-77"]}},{"id":"D31","name":"IaC \u0026 Container Security","shortDescription":{"text":"IaC \u0026 Container Security"},"helpUri":"https://codehealth.canine.dev/dimensions/D31","relationships":[{"target":{"id":"CWE-1032","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-732","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-16","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-1032","CWE-732","CWE-16"]}},{"id":"D34","name":"Knowledge Freshness","shortDescription":{"text":"Knowledge Freshness"},"helpUri":"https://codehealth.canine.dev/dimensions/D34"},{"id":"D35","name":"Change Coupling","shortDescription":{"text":"Change Coupling"},"helpUri":"https://codehealth.canine.dev/dimensions/D35"}]}},"results":[{"ruleId":"D1","level":"warning","message":{"text":"Data.makeDataTable (cyclomatic 17): Data.makeDataTable has cyclomatic complexity 17 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Main.fs"},"region":{"startLine":63}}}],"partialFingerprints":{"codehealthFindingId/v1":"af663856287895bd4fb75f2bc519bda1d494d13b272a9b3ae517d6df974a5b79"}},{"ruleId":"D2","level":"warning","message":{"text":"Data.makeDataTable (cognitive 32): Data.makeDataTable has cognitive complexity 32 (threshold 15). Drivers by points: if/else 22, match/switch 6, loops 4 (nesting depth added 17). The drivers above price the dispatch low by construction \u2014 a dispatch is charged once however many cases it lists, while each branch inside an arm is charged in full \u2014 so most of this count is what the case bodies hold, and the arms are where it can be reduced. To reduce it, keep the dispatch but shrink the arms: move each non-trivial case body into its own named function (or onto the value being matched) so the dispatch reads one line per case, and group related cases into a sub-dispatch. Keep every case explicit, and make the behaviour for cases you do not list a deliberate choice rather than an accident."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Main.fs"},"region":{"startLine":63}}}],"partialFingerprints":{"codehealthFindingId/v1":"01a5c0254e4ae0f65e653aa4d18475de0737801721c208a2312c8313bad4a4ef"}},{"ruleId":"D3","level":"warning","message":{"text":"FileTooLong: XPlot.GoogleCharts/Configuration.fs: FileTooLong \u2014 1724 significant lines (blank, comment-only and punctuation-only lines excluded). To reduce it, split the file along the responsibilities already in it: move each cohesive group of declarations into its own sibling file in the same module or package, so no one file has to be read whole to change one of them."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"32dadfa6c17d0bd4ae2deedb5a6c6cab3ba9e42d46889759324d9146aa1e8bfa"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: Deedle: TooManyMethods \u2014 42 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts.Deedle/Deedle.fs"},"region":{"startLine":2}}}],"partialFingerprints":{"codehealthFindingId/v1":"78ea0032bd210be8da48e3715c90bbc8d8e72cf88071b18fba6caf914de1d88e"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: Chart: TooManyMethods \u2014 35 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Main.fs"},"region":{"startLine":436}}}],"partialFingerprints":{"codehealthFindingId/v1":"5ac112278df956d11a207ee66b7ee1acc85596d76185dade1e58848cca81942c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 17): src/XPlot.Plotly/Plots/Area.fs:22-37 | src/XPlot.Plotly/Plots/Scattergl.fs:36-51 | src/XPlot.Plotly/Plots/Choropleth.fs:34-49 | src/XPlot.Plotly/Plots/Scattergeo.fs:33-48 | src/XPlot.Plotly/Plots/Surface.fs:37-52 | src/XPlot.Plotly/Plots/Scatter3D.fs:38-53 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:58-73 | src/XPlot.Plotly/Plots/Countor.fs:51-66 | src/XPlot.Plotly/Plots/Mesh3D.fs:46-61 | src/XPlot.Plotly/Plots/Pie.fs:40-55 | src/XPlot.Plotly/Plots/Histogram2D.fs:54-69 | src/XPlot.Plotly/Plots/Histogram.fs:47-62 | src/XPlot.Plotly/Plots/Heatmap.fs:44-59 | src/XPlot.Plotly/Plots/Box.fs:35-50 | src/XPlot.Plotly/Plots/Bar.fs:37-52 | src/XPlot.Plotly/Plots/Candlestick.fs:26-41 | src/XPlot.Plotly/Plots/Scatter.fs:45-60 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Area.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Bar.fs\u0060 as WHOLE FILES: this scan already matched 3 separate duplicated blocks between them, totalling at least 36 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Area.fs"},"region":{"startLine":22}}}],"partialFingerprints":{"codehealthFindingId/v1":"e937432da5f907f80938a6effbeb5050973f615f84f74f02ad88daf3e74fbef5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 6): src/XPlot.Plotly/Plots/Choropleth.fs:91-106 | src/XPlot.Plotly/Plots/Surface.fs:89-104 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:146-161 | src/XPlot.Plotly/Plots/Countor.fs:139-154 | src/XPlot.Plotly/Plots/Histogram2D.fs:142-157 | src/XPlot.Plotly/Plots/Heatmap.fs:132-147 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Choropleth.fs"},"region":{"startLine":91}}}],"partialFingerprints":{"codehealthFindingId/v1":"0121e467a55cf702a7a37272a3425d0ff4a3aaf84ff7d8b0a78d3078686fa55c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 5): src/XPlot.Plotly/Plots/Scattergl.fs:69-84 | src/XPlot.Plotly/Plots/Countor.fs:89-104 | src/XPlot.Plotly/Plots/Heatmap.fs:82-97 | src/XPlot.Plotly/Plots/Bar.fs:70-85 | src/XPlot.Plotly/Plots/Scatter.fs:78-93 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scattergl.fs"},"region":{"startLine":69}}}],"partialFingerprints":{"codehealthFindingId/v1":"43ddb3c1e4b7a2c1c331236992771e8d1053f1065ef8320310240b963ed8058f"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 5): src/XPlot.Plotly/Plots/Surface.fs:145-160 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:270-285 | src/XPlot.Plotly/Plots/Countor.fs:216-231 | src/XPlot.Plotly/Plots/Histogram2D.fs:248-263 | src/XPlot.Plotly/Plots/Heatmap.fs:191-206 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Surface.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Histogram2DContour.fs\u0060 as WHOLE FILES: this scan already matched 7 separate duplicated blocks between them, totalling at least 70 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Surface.fs"},"region":{"startLine":145}}}],"partialFingerprints":{"codehealthFindingId/v1":"05bdcc3d8920a5c719a33f5c12847a6dde050a5ed5016ca4b06f3f24c8050da6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 4): src/XPlot.Plotly/Plots/Scattergl.fs:135-150 | src/XPlot.Plotly/Plots/Histogram.fs:185-200 | src/XPlot.Plotly/Plots/Bar.fs:132-147 | src/XPlot.Plotly/Plots/Scatter.fs:168-183 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scattergl.fs"},"region":{"startLine":135}}}],"partialFingerprints":{"codehealthFindingId/v1":"e403dec76af6c8ce288bd1ce04625bff43d0bd27b0659feaf4fbd07807421836"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 4): src/XPlot.Plotly/Plots/Histogram2DContour.fs:171-186 | src/XPlot.Plotly/Plots/Countor.fs:164-179 | src/XPlot.Plotly/Plots/Histogram2D.fs:167-182 | src/XPlot.Plotly/Plots/Heatmap.fs:157-172 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Histogram2DContour.fs"},"region":{"startLine":171}}}],"partialFingerprints":{"codehealthFindingId/v1":"eaf82fd705155505dae895c0752bde6181e5b4f99d06076fd5ffe14b29d38236"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 3): src/XPlot.Plotly/PlotBase/Xaxis.fs:70-85 | src/XPlot.Plotly/PlotBase/Yaxis.fs:71-86 | src/XPlot.Plotly/PlotBase/Zaxis.fs:95-110 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Xaxis.fs"},"region":{"startLine":70}}}],"partialFingerprints":{"codehealthFindingId/v1":"5a745f258708cae333bdd6199342662a87a5718f4bbb666092db58d08b9fd163"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 3): src/XPlot.Plotly/Plots/Histogram.fs:100-115 | src/XPlot.Plotly/Plots/Bar.fs:90-105 | src/XPlot.Plotly/Plots/Scatter.fs:98-113 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Histogram.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Bar.fs\u0060 as WHOLE FILES: this scan already matched 9 separate duplicated blocks between them, totalling at least 83 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Histogram.fs"},"region":{"startLine":100}}}],"partialFingerprints":{"codehealthFindingId/v1":"e7ccf02fb01735e97701c384468416b9d645cbb99b89717834406e6442d1f5df"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Lataxis.fs:10-25 | src/XPlot.Plotly/PlotBase/Lonaxis.fs:10-25 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Lataxis.fs"},"region":{"startLine":10}}}],"partialFingerprints":{"codehealthFindingId/v1":"7bbce2614bb50d9b0af5ee0263b856a1ce117068e9ea96d44b62a8a9257a7b30"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 2): src/XPlot.Plotly/Plots/Scatter3D.fs:139-154 | src/XPlot.Plotly/Plots/Mesh3D.fs:157-172 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scatter3D.fs"},"region":{"startLine":139}}}],"partialFingerprints":{"codehealthFindingId/v1":"ea7b78e722d2bd3e3342b9b80b0cd268650a5f7455bde397feacf0b6bed56663"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 2): src/XPlot.Plotly/Plots/Histogram2DContour.fs:91-106 | src/XPlot.Plotly/Plots/Histogram2D.fs:87-102 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Histogram2DContour.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Histogram2D.fs\u0060 as WHOLE FILES: this scan already matched 10 separate duplicated blocks between them, totalling at least 110 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Histogram2DContour.fs"},"region":{"startLine":91}}}],"partialFingerprints":{"codehealthFindingId/v1":"49889a4540c9a0f72f98923e91d5c859e2947e4478ab5ae156a482f18e72b69d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (15 lines \u00D7 2): src/XPlot.Plotly/PlotBase/ErrorX.fs:19-33 | src/XPlot.Plotly/PlotBase/ErrorY.fs:19-33 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/ErrorX.fs"},"region":{"startLine":19}}}],"partialFingerprints":{"codehealthFindingId/v1":"11cb5a6e0cb59788b900ca4e896bd5c8ba89e41b413e8799550a693d7a950db7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (15 lines \u00D7 2): src/XPlot.Plotly/Plots/Bar.fs:114-128 | src/XPlot.Plotly/Plots/Scatter.fs:150-164 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Bar.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Scatter.fs\u0060 as WHOLE FILES: this scan already matched 10 separate duplicated blocks between them, totalling at least 109 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Bar.fs"},"region":{"startLine":114}}}],"partialFingerprints":{"codehealthFindingId/v1":"fd0fb68fac0c023109f3b7ef757815ae71e417ced17b041cbdf1f039ac3852e5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 4): src/XPlot.Plotly/PlotBase/Insidetextfont.fs:6-19 | src/XPlot.Plotly/PlotBase/Outsidetextfont.fs:6-19 | src/XPlot.Plotly/PlotBase/Titlefont.fs:6-19 | src/XPlot.Plotly/PlotBase/Tickfont.fs:6-19 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Insidetextfont.fs"},"region":{"startLine":6}}}],"partialFingerprints":{"codehealthFindingId/v1":"980856668306746a7e2fc4cf8b9d6a8b191ca35c2d1615eb38ea60e386aaef57"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 3): src/XPlot.Plotly/PlotBase/X.fs:18-31 | src/XPlot.Plotly/PlotBase/Y.fs:18-31 | src/XPlot.Plotly/PlotBase/Z.fs:18-31 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/X.fs"},"region":{"startLine":18}}}],"partialFingerprints":{"codehealthFindingId/v1":"3c9e56061ae7d6cda0827b20bef3d479c37cd501ac4262c9b6e25b10a4298378"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): src/XPlot.Plotly/Plots/Area.fs:69-82 | src/XPlot.Plotly/Plots/Bar.fs:157-170 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Area.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Bar.fs\u0060 as WHOLE FILES: this scan already matched 3 separate duplicated blocks between them, totalling at least 36 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Area.fs"},"region":{"startLine":69}}}],"partialFingerprints":{"codehealthFindingId/v1":"5acfae583366006de47c89350260e67bf7c8e2591b9dd17d5c74ec5334363170"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): src/XPlot.Plotly/Plots/Scattergeo.fs:133-146 | src/XPlot.Plotly/Plots/Scatter3D.fs:159-172 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scattergeo.fs"},"region":{"startLine":133}}}],"partialFingerprints":{"codehealthFindingId/v1":"36c4592e330ed47f67f438b614f0a73f8fbe088825f83c24b1905424b4321132"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): src/XPlot.Plotly/Plots/Surface.fs:74-87 | src/XPlot.Plotly/Plots/Scatter3D.fs:71-84 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Surface.fs"},"region":{"startLine":74}}}],"partialFingerprints":{"codehealthFindingId/v1":"40ce93fa6d77c25518947871dfe2bca8a4199782ea21c266cec1da211dfac821"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Angularaxis.fs:53-65 | src/XPlot.Plotly/PlotBase/Radialaxis.fs:59-71 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Angularaxis.fs"},"region":{"startLine":53}}}],"partialFingerprints":{"codehealthFindingId/v1":"fb3d28e46abbc2e6dba68bf4ecc9492577dbc82e75879b14308fcd157a4bf670"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Textfont.fs:26-38 | src/XPlot.Plotly/PlotBase/Marker.fs:120-133 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Textfont.fs"},"region":{"startLine":26}}}],"partialFingerprints":{"codehealthFindingId/v1":"816e1e8e61cec3d967a3c7919b6d94d650c722de60b4857322ed508618fb742d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): src/XPlot.Plotly/Plots/Scattergl.fs:117-129 | src/XPlot.Plotly/Plots/Scatter.fs:127-139 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Scattergl.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Scatter.fs\u0060 as WHOLE FILES: this scan already matched 7 separate duplicated blocks between them, totalling at least 77 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scattergl.fs"},"region":{"startLine":117}}}],"partialFingerprints":{"codehealthFindingId/v1":"1afc985da0e33d6a7e97cf139cac9dd23b3918ee53e82d20ee41809da3470159"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): src/XPlot.Plotly/Plots/Choropleth.fs:140-152 | src/XPlot.Plotly/Plots/Scatter3D.fs:154-167 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Choropleth.fs"},"region":{"startLine":140}}}],"partialFingerprints":{"codehealthFindingId/v1":"aa4a028130238fcf24d422c0a672e2f1f2d3552bf2742c7d312ea03d61d8f569"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): src/XPlot.Plotly/Plots/Scatter3D.fs:113-125 | src/XPlot.Plotly/Plots/Scatter.fs:136-148 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scatter3D.fs"},"region":{"startLine":113}}}],"partialFingerprints":{"codehealthFindingId/v1":"703b5b0316572da1fe588277669f6dc2944491e087ea8e99735401142d416b44"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 5): src/XPlot.Plotly/PlotBase/Aspectratio.fs:10-21 | src/XPlot.Plotly/PlotBase/Eye.fs:10-21 | src/XPlot.Plotly/PlotBase/Center.fs:9-20 | src/XPlot.Plotly/PlotBase/Up.fs:10-21 | src/XPlot.Plotly/Plots/Mesh3D.fs:81-92 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it somewhere all 5 call sites can already reach \u2014 a location they all depend on today, or a new shared one if there is none \u2014 and call it from each site; until then, every change has to be made 5 times. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Aspectratio.fs"},"region":{"startLine":10}}}],"partialFingerprints":{"codehealthFindingId/v1":"3d551b42eec598667dc9839f294e928140e8e6ffb34e69758a1013cbde10073e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:112-122 | src/XPlot.GoogleCharts/Configuration.fs:986-996 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":112}}}],"partialFingerprints":{"codehealthFindingId/v1":"7f56fb0e2ab9c328050f7e32a1f995802a4cd0affa70c41c59dd5cd3e8302caa"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:548-558 | src/XPlot.GoogleCharts/Configuration.fs:965-975 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":548}}}],"partialFingerprints":{"codehealthFindingId/v1":"f8a952468b95dbb58a19288c010188c9fc3fc8c8f5d7e02224d9cbc2cdf0ec8d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:589-599 | src/XPlot.GoogleCharts/Configuration.fs:1567-1577 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":589}}}],"partialFingerprints":{"codehealthFindingId/v1":"962521ac976f20ea5b5888ad63208b939dcf0a00560e9d435a960e3264601a64"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:609-619 | src/XPlot.GoogleCharts/Configuration.fs:850-860 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":609}}}],"partialFingerprints":{"codehealthFindingId/v1":"658cb960538050cae8a14d62ef9f30759eda762255be863af2e6a3646479f458"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Projection.fs:14-25 | src/XPlot.Plotly/PlotBase/Contours.fs:40-50 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Projection.fs"},"region":{"startLine":14}}}],"partialFingerprints":{"codehealthFindingId/v1":"4e5907d40fe38940032a3fb415afef050b0d2b9e6135ed8056c94b2adae648e8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): tools/StaticDataGenerator/Program.fs:16-25 | tools/StaticDataGenerator/Program.fs:34-43 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"tools/StaticDataGenerator/Program.fs"},"region":{"startLine":16}}}],"partialFingerprints":{"codehealthFindingId/v1":"11086792e0bb774c6ae37d7e23e80b1cf1a8aa39dbcd8e5d97a95edd5d6fa5fe"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 9): src/XPlot.GoogleCharts.Deedle/Deedle.fs:37-45 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:73-81 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:146-154 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:169-177 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:226-234 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:283-291 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:369-377 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:405-413 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:441-449 \u2014 all 9 copies are in the same file, so extract the block into one function there and call it from every one of those sites \u2014 resolving only two of them leaves the rest to drift apart the first time one is edited. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts.Deedle/Deedle.fs"},"region":{"startLine":37}}}],"partialFingerprints":{"codehealthFindingId/v1":"0480e6996e0b941d35431a5b9c6b3826e492e11284d061b8ca73164f31efc4a6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:180-188 | src/XPlot.GoogleCharts/Configuration.fs:736-744 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":180}}}],"partialFingerprints":{"codehealthFindingId/v1":"0d483122a770ed9bacf5a0bd1adb13ae4ce524ef5ebf3b62aea941f68b6826b4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:1018-1026 | src/XPlot.GoogleCharts/Configuration.fs:1087-1095 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":1018}}}],"partialFingerprints":{"codehealthFindingId/v1":"a92f814b9862f464fc271bc180de460042640d57a192d900c8cc40c1b0302582"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): tools/BaselineGenerator/Program.fs:20-28 | tools/BaselineGenerator/Program.fs:45-53 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"tools/BaselineGenerator/Program.fs"},"region":{"startLine":20}}}],"partialFingerprints":{"codehealthFindingId/v1":"5bbaa13ef0ede1b833307fc0703503434e8a8936c2180149591a92fb168206c8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): tools/StaticDataGenerator/Program.fs:54-62 | tools/StaticDataGenerator/Program.fs:88-96 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"tools/StaticDataGenerator/Program.fs"},"region":{"startLine":54}}}],"partialFingerprints":{"codehealthFindingId/v1":"3fc0127fdaa0c636f654dded9efc466429f9b0d4ccdcf47260a5fe920c78ac30"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): src/XPlot.D3/Main.fs:69-76 | src/XPlot.GoogleCharts/Main.fs:337-345 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it somewhere both call sites can already reach \u2014 a location they all depend on today, or a new shared one if there is none \u2014 and call it from each site; until then, every change has to be made twice. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/XPlot.D3/Main.fs:69\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.D3/Main.fs"},"region":{"startLine":69}}}],"partialFingerprints":{"codehealthFindingId/v1":"1b582ff83e488ee99f8de7743ec0b7be032973730b14a1dc57d03d7a9e8b92ff"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): tools/BaselineGenerator/Program.fs:101-108 | tools/BaselineGenerator/Program.fs:236-243 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"tools/BaselineGenerator/Program.fs"},"region":{"startLine":101}}}],"partialFingerprints":{"codehealthFindingId/v1":"345f456ce08987d914b7548cc5fcd7e9f987c75ab841075e5a956873e26f5329"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 29): src/XPlot.GoogleCharts/Configuration.fs:28-34 | src/XPlot.GoogleCharts/Configuration.fs:108-114 | src/XPlot.GoogleCharts/Configuration.fs:1085-1091 | src/XPlot.GoogleCharts/Configuration.fs:1210-1216 | src/XPlot.GoogleCharts/Configuration.fs:1264-1270 | src/XPlot.GoogleCharts/Configuration.fs:1469-1475 | src/XPlot.Plotly/PlotBase/Margin.fs:6-13 | src/XPlot.Plotly/PlotBase/ErrorX.fs:15-22 | src/XPlot.Plotly/PlotBase/ErrorY.fs:15-22 | src/XPlot.Plotly/PlotBase/ErrorZ.fs:15-22 | src/XPlot.Plotly/PlotBase/X.fs:9-16 | src/XPlot.Plotly/PlotBase/Y.fs:9-16 | src/XPlot.Plotly/PlotBase/Z.fs:9-16 | src/XPlot.Plotly/PlotBase/Xaxis.fs:53-59 | src/XPlot.Plotly/PlotBase/Yaxis.fs:54-60 | src/XPlot.Plotly/PlotBase/Zaxis.fs:47-54 | src/XPlot.Plotly/PlotBase/Textfont.fs:5-11 | src/XPlot.Plotly/PlotBase/Line.fs:14-21 | src/XPlot.Plotly/Plots/Scattergeo.fs:25-31 | src/XPlot.Plotly/Plots/Scatter3D.fs:30-36 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:50-56 | src/XPlot.Plotly/Plots/Countor.fs:43-49 | src/XPlot.Plotly/Plots/Mesh3D.fs:38-44 | src/XPlot.Plotly/Plots/Pie.fs:32-38 | src/XPlot.Plotly/Plots/Histogram2D.fs:46-52 | src/XPlot.Plotly/Plots/Histogram.fs:39-45 | src/XPlot.Plotly/Plots/Heatmap.fs:36-42 | src/XPlot.Plotly/Plots/Bar.fs:29-35 | src/XPlot.Plotly/Plots/Scatter.fs:37-43 \u2014 there are 29 copies across 24 file(s) \u2014 more copies than files, so at least one file holds the block twice. Extract it once into a single shared function every call site can reach and call it from all 29 sites; resolving a subset leaves the remainder to drift apart. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":28}}}],"partialFingerprints":{"codehealthFindingId/v1":"bd91a56ba6df1aaf137ed6a416c65f3cdae1214e0d98c9b71eac92dd31dd4ac8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 7): src/XPlot.GoogleCharts.Deedle/Deedle.fs:24-30 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:60-66 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:133-139 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:270-276 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:356-362 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:392-398 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:428-434 \u2014 all 7 copies are in the same file, so extract the block into one function there and call it from every one of those sites \u2014 resolving only two of them leaves the rest to drift apart the first time one is edited. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts.Deedle/Deedle.fs"},"region":{"startLine":24}}}],"partialFingerprints":{"codehealthFindingId/v1":"462332dc96753bde62851205220a50ff93b0cdc2e372a729916f5876a5dc6796"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 5): src/XPlot.Plotly/PlotBase/Angularaxis.fs:10-17 | src/XPlot.Plotly/PlotBase/Radialaxis.fs:11-18 | src/XPlot.Plotly/PlotBase/Lataxis.fs:6-13 | src/XPlot.Plotly/PlotBase/Lonaxis.fs:6-13 | src/XPlot.Plotly/Layout.fs:34-40 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it somewhere all 5 call sites can already reach \u2014 a location they all depend on today, or a new shared one if there is none \u2014 and call it from each site; until then, every change has to be made 5 times."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Angularaxis.fs"},"region":{"startLine":10}}}],"partialFingerprints":{"codehealthFindingId/v1":"c4ad06dce7d6daa6fb5e72d103cc55bed7ff2ff498e2a4d9acd7b42166678ad8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 4): src/XPlot.GoogleCharts.Deedle/Deedle.fs:192-198 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:213-219 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:249-255 | src/XPlot.GoogleCharts.Deedle/Deedle.fs:327-333 \u2014 all 4 copies are in the same file, so extract the block into one function there and call it from every one of those sites \u2014 resolving only two of them leaves the rest to drift apart the first time one is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts.Deedle/Deedle.fs"},"region":{"startLine":192}}}],"partialFingerprints":{"codehealthFindingId/v1":"f1ac306810e5d451d25459a7ff4e9d5cfe76bd5aede34428bb34b164f2c29636"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 29): src/XPlot.Plotly/PlotBase/Annotation.fs:10-15 | src/XPlot.Plotly/PlotBase/ErrorX.fs:9-14 | src/XPlot.Plotly/PlotBase/ErrorY.fs:9-14 | src/XPlot.Plotly/PlotBase/ErrorZ.fs:9-14 | src/XPlot.Plotly/PlotBase/Xaxis.fs:32-37 | src/XPlot.Plotly/PlotBase/Yaxis.fs:33-38 | src/XPlot.Plotly/PlotBase/Zaxis.fs:39-44 | src/XPlot.Plotly/PlotBase/Colorbar.fs:13-18 | src/XPlot.Plotly/PlotBase/Line.fs:10-15 | src/XPlot.Plotly/PlotBase/Marker.fs:13-18 | src/XPlot.Plotly/Plots/Area.fs:8-13 | src/XPlot.Plotly/Plots/Scattergl.fs:8-13 | src/XPlot.Plotly/Plots/Choropleth.fs:8-13 | src/XPlot.Plotly/Plots/Scattergeo.fs:8-13 | src/XPlot.Plotly/Plots/Scattergeo.fs:24-29 | src/XPlot.Plotly/Plots/Surface.fs:8-13 | src/XPlot.Plotly/Plots/Scatter3D.fs:8-13 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:8-13 | src/XPlot.Plotly/Plots/Countor.fs:8-13 | src/XPlot.Plotly/Plots/Mesh3D.fs:8-13 | src/XPlot.Plotly/Plots/Pie.fs:8-13 | src/XPlot.Plotly/Plots/Pie.fs:30-35 | src/XPlot.Plotly/Plots/Histogram2D.fs:8-13 | src/XPlot.Plotly/Plots/Histogram.fs:8-13 | src/XPlot.Plotly/Plots/Heatmap.fs:8-13 | src/XPlot.Plotly/Plots/Box.fs:9-14 | src/XPlot.Plotly/Plots/Bar.fs:8-13 | src/XPlot.Plotly/Plots/Candlestick.fs:8-13 | src/XPlot.Plotly/Plots/Scatter.fs:8-13 \u2014 there are 29 copies across 27 file(s) \u2014 more copies than files, so at least one file holds the block twice. Extract it once into a single shared function every call site can reach and call it from all 29 sites; resolving a subset leaves the remainder to drift apart."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Annotation.fs"},"region":{"startLine":10}}}],"partialFingerprints":{"codehealthFindingId/v1":"49c565b6ee0b47da8f81f691af3e52f53df46604dbb26071f8695a4880ab3551"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 7): src/XPlot.Plotly/PlotBase/Radialaxis.fs:5-10 | src/XPlot.Plotly/PlotBase/Marker.fs:6-11 | src/XPlot.Plotly/Plots/Surface.fs:16-21 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:23-28 | src/XPlot.Plotly/Plots/Countor.fs:23-28 | src/XPlot.Plotly/Plots/Histogram2D.fs:23-28 | src/XPlot.Plotly/Plots/Heatmap.fs:23-28 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Surface.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Histogram2DContour.fs\u0060 as WHOLE FILES: this scan already matched 7 separate duplicated blocks between them, totalling at least 70 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Radialaxis.fs"},"region":{"startLine":5}}}],"partialFingerprints":{"codehealthFindingId/v1":"cf50b506c212805955732362eace15967bd0d21093a59f8ee24d5c6c6eeef879"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 5): src/XPlot.Plotly/PlotBase/Legend.fs:5-10 | src/XPlot.Plotly/PlotBase/Xaxis.fs:21-26 | src/XPlot.Plotly/PlotBase/Yaxis.fs:22-27 | src/XPlot.Plotly/PlotBase/Zaxis.fs:28-33 | src/XPlot.Plotly/PlotBase/Colorbar.fs:27-32 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Legend.fs"},"region":{"startLine":5}}}],"partialFingerprints":{"codehealthFindingId/v1":"c95b0b1865eccd8b53c088fe44ce0c714906084709833679118e452af3bc92a2"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 4): src/XPlot.Plotly/PlotBase/Marker.fs:20-25 | src/XPlot.Plotly/Plots/Surface.fs:28-33 | src/XPlot.Plotly/Plots/Mesh3D.fs:32-37 | src/XPlot.Plotly/Plots/Heatmap.fs:34-39 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Surface.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Heatmap.fs\u0060 as WHOLE FILES: this scan already matched 8 separate duplicated blocks between them, totalling at least 76 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Marker.fs"},"region":{"startLine":20}}}],"partialFingerprints":{"codehealthFindingId/v1":"d49ba240007b3301961a18cbef2aae6a1ba945d00ae9e7dace448591df70b5c7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 3): src/XPlot.Plotly/PlotBase/Shape.fs:6-11 | src/XPlot.Plotly/Plots/Mesh3D.fs:15-20 | src/XPlot.Plotly/Plots/Candlestick.fs:15-20 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it somewhere all 3 call sites can already reach \u2014 a location they all depend on today, or a new shared one if there is none \u2014 and call it from each site; until then, every change has to be made 3 times."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Shape.fs"},"region":{"startLine":6}}}],"partialFingerprints":{"codehealthFindingId/v1":"250d18ca4463cb5f23a07ddf8e01d1e9d5e881bf5411e10841d3535795131d3b"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 3): src/XPlot.Plotly/Plots/Histogram.fs:34-39 | src/XPlot.Plotly/Plots/Bar.fs:25-30 | src/XPlot.Plotly/Plots/Scatter.fs:31-36 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Histogram.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Bar.fs\u0060 as WHOLE FILES: this scan already matched 9 separate duplicated blocks between them, totalling at least 83 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Histogram.fs"},"region":{"startLine":34}}}],"partialFingerprints":{"codehealthFindingId/v1":"17b90c77031d29936f8edd4b6164fde23c3c9d217a2be99b9de7e1bff3f013ee"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:294-299 | src/XPlot.GoogleCharts/Configuration.fs:1390-1395 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":294}}}],"partialFingerprints":{"codehealthFindingId/v1":"8d0e9ba69c7dc8b15cd188f5877b47234e31fed3d2cadfb2ef294569c2b94b36"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.GoogleCharts/Configuration.fs:1365-1370 | src/XPlot.GoogleCharts/Configuration.fs:1388-1393 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":1365}}}],"partialFingerprints":{"codehealthFindingId/v1":"852be2b63e953e77730fb1fb5dc9a7c3ea7963874b22db35dadae960fce834df"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Xaxis.fs:4-9 | src/XPlot.Plotly/PlotBase/Yaxis.fs:5-10 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Xaxis.fs"},"region":{"startLine":4}}}],"partialFingerprints":{"codehealthFindingId/v1":"15537341fd2c892cf47e75825088c3f4a3ead298a6610ab7e51bf0f0dd40249b"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Colorbar.fs:7-12 | src/XPlot.Plotly/PlotBase/Colorbar.fs:17-22 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Colorbar.fs"},"region":{"startLine":7}}}],"partialFingerprints":{"codehealthFindingId/v1":"1cb1e57bc704c4f07c25c2b434c83faa576821de2e6ee01d310d4383a9b97128"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/Plots/Choropleth.fs:25-30 | src/XPlot.Plotly/Plots/Heatmap.fs:33-38 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Choropleth.fs"},"region":{"startLine":25}}}],"partialFingerprints":{"codehealthFindingId/v1":"0e634490081913fdb3996ff684801e4b9ccdd86e836e20c9aee33fc18ed37693"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/Plots/Countor.fs:30-35 | src/XPlot.Plotly/Plots/Heatmap.fs:30-35 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Countor.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Heatmap.fs\u0060 as WHOLE FILES: this scan already matched 11 separate duplicated blocks between them, totalling at least 116 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Countor.fs"},"region":{"startLine":30}}}],"partialFingerprints":{"codehealthFindingId/v1":"1f777b210cca23dfc774b10ad0d26b5b8bf0f0209f2efc96926d91173dffefca"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/Plots/Pie.fs:14-19 | src/XPlot.Plotly/Plots/Histogram.fs:18-23 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Pie.fs"},"region":{"startLine":14}}}],"partialFingerprints":{"codehealthFindingId/v1":"45de3e790a000bc6079dbeb3aa005e53c333acf1f19a2e94f8974ea472ffe8f8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/Plots/Histogram.fs:16-21 | src/XPlot.Plotly/Plots/Box.fs:19-24 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Histogram.fs"},"region":{"startLine":16}}}],"partialFingerprints":{"codehealthFindingId/v1":"e1d17a23d8beb79554e15f3974161b5dea5dce412ab6564b2675e0c34180b4a2"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/Main.fs:349-354 | src/XPlot.Plotly/Main.fs:397-402 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/XPlot.Plotly/Main.fs:349\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Main.fs"},"region":{"startLine":349}}}],"partialFingerprints":{"codehealthFindingId/v1":"323daa3bc4cf9ad7a7e1991ed034a10e094f88e8c8042b4a30e494c1e9180f54"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): src/XPlot.Plotly/Main.fs:417-422 | src/XPlot.Plotly/Main.fs:443-448 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/XPlot.Plotly/Main.fs:417\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Main.fs"},"region":{"startLine":417}}}],"partialFingerprints":{"codehealthFindingId/v1":"a93526e5e3568368d67a04bb6a76ccaccbecc259797ce50552849bd0434a7983"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 7): src/XPlot.Plotly/Plots/Scattergl.fs:166-170 | src/XPlot.Plotly/Plots/Scatter3D.fs:175-179 | src/XPlot.Plotly/Plots/Mesh3D.fs:213-217 | src/XPlot.Plotly/Plots/Histogram.fs:231-235 | src/XPlot.Plotly/Plots/Bar.fs:173-177 | src/XPlot.Plotly/Plots/Candlestick.fs:110-114 | src/XPlot.Plotly/Plots/Scatter.fs:218-222 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scattergl.fs"},"region":{"startLine":166}}}],"partialFingerprints":{"codehealthFindingId/v1":"dc3a5f74bad25e60ee41f358ba4c2132c8c07004ea8f7b2de2679b5c314cd132"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 6): src/XPlot.Plotly/Plots/Choropleth.fs:165-169 | src/XPlot.Plotly/Plots/Surface.fs:179-183 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:311-315 | src/XPlot.Plotly/Plots/Countor.fs:269-273 | src/XPlot.Plotly/Plots/Histogram2D.fs:289-293 | src/XPlot.Plotly/Plots/Heatmap.fs:232-236 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Choropleth.fs"},"region":{"startLine":165}}}],"partialFingerprints":{"codehealthFindingId/v1":"476d3ea819743586a4491635c9993aa7e0ecc5454efc8584c36e06f69da01c58"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 5): src/XPlot.Plotly/Plots/Surface.fs:171-175 | src/XPlot.Plotly/Plots/Histogram2DContour.fs:296-300 | src/XPlot.Plotly/Plots/Countor.fs:254-258 | src/XPlot.Plotly/Plots/Histogram2D.fs:274-278 | src/XPlot.Plotly/Plots/Heatmap.fs:217-221 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Surface.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Histogram2DContour.fs\u0060 as WHOLE FILES: this scan already matched 7 separate duplicated blocks between them, totalling at least 70 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Surface.fs"},"region":{"startLine":171}}}],"partialFingerprints":{"codehealthFindingId/v1":"1becefac55552c50a18773ff4f81cc2d9cc9edc1eea72d7498e4b94e74f74e5d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 4): src/XPlot.Plotly/Plots/Scattergl.fs:184-188 | src/XPlot.Plotly/Plots/Histogram.fs:257-261 | src/XPlot.Plotly/Plots/Bar.fs:190-194 | src/XPlot.Plotly/Plots/Scatter.fs:241-245 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scattergl.fs"},"region":{"startLine":184}}}],"partialFingerprints":{"codehealthFindingId/v1":"f6ec80e5d4132c069550a320eecf6f0d68f14435ff192db8277ca8000b93f3ff"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): src/XPlot.Plotly/PlotBase/Line.fs:100-104 | src/XPlot.Plotly/PlotBase/Marker.fs:155-159 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/PlotBase/Line.fs"},"region":{"startLine":100}}}],"partialFingerprints":{"codehealthFindingId/v1":"02df66c0ca29c66ef945dbeade0f82054a8222ffa708521908d410c6b8e6ff68"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): src/XPlot.Plotly/Plots/Scatter3D.fs:194-198 | src/XPlot.Plotly/Plots/Mesh3D.fs:236-240 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Scatter3D.fs"},"region":{"startLine":194}}}],"partialFingerprints":{"codehealthFindingId/v1":"a7728711823e3f5f77610bd274635ed38cdb3912164a38add37554339d9882bf"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): src/XPlot.Plotly/Plots/Histogram.fs:238-242 | src/XPlot.Plotly/Plots/Bar.fs:180-184 \u2014 before extracting anything, compare \u0060src/XPlot.Plotly/Plots/Histogram.fs\u0060 and \u0060src/XPlot.Plotly/Plots/Bar.fs\u0060 as WHOLE FILES: this scan already matched 9 separate duplicated blocks between them, totalling at least 83 lines, which is the signature of one file having been copied from the other rather than of a helper waiting to be extracted. If that is what happened, the fix is to keep one copy and have the other call it (or delete it), which resolves this row and its siblings together \u2014 extracting one helper per block leaves the fork in place."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.Plotly/Plots/Histogram.fs"},"region":{"startLine":238}}}],"partialFingerprints":{"codehealthFindingId/v1":"2d1c72408fc71c68df6f5d60cc9c7e606eca77307c9b3ca5e7876321f135eed6"}},{"ruleId":"D8","level":"warning","message":{"text":"Coverage not measured: The test suite couldn\u0027t be built/run in-image and no coverage report is committed, so line coverage was not measured \u2014 and it is EXCLUDED from the score rather than scored on a LoC-ratio proxy. No coverage collector was found in your CI either, so there is no existing report to hand us: add a coverage collector to your test run and commit (or publish) its Cobertura/OpenCover/lcov output anywhere in the repo, or make the suite runnable in-image, and real coverage will be measured."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"62e63e619c28f057e129f2997c965d32a457366a9ce18ca019ffb6bdfba85c99"}},{"ruleId":"D16","level":"warning","message":{"text":"dormant codebase \u2014 no living knowledge left to concentrate: All 3 significant source file(s) were last meaningfully changed so long ago that no living knowledge remains \u2014 nothing since has been substantial enough to re-establish ownership (a broad, mechanical sweep that touches many files shallowly does not count, and neither does no activity at all). There is no concentration to measure, so the bus factor is not scored. This is not a clean bill: nobody currently holds working knowledge of this code (see D34 Knowledge Freshness)."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"569d55ea5cb0330f13c125b289d07e5abdfcceac947a2c2645277937942e7d5f"}},{"ruleId":"D31","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"fe2d688610b51e0a5a02c7c5dd1724a4986e40f2689fb84510e2ec0164c27d6a"}},{"ruleId":"D31","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"6c9bd328f1425e4185802e2cb388fc5dec17b2da92bc5227fa43622d89e747d7"}},{"ruleId":"D31","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"862ff8f6398d0c954d863093dda800a50d336a2052b43b47ee2482a1c0f797c4"}},{"ruleId":"D31","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"0857c6b98c2d82c12d367b74becf78d139c18d97600048abf818d745d25082b6"}},{"ruleId":"D31","level":"warning","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"becbc5502f94878197b05d70c7ef15f1353fd99a90efcb824b9c43f11ae5ce7a"}},{"ruleId":"D31","level":"warning","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"f964633d21ebfd050248c21f2ebe84ab843661881d67731812be7c97ee8e85c1"}},{"ruleId":"D31","level":"note","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"3adeb5ca433f8377e0513466abe226661632e2c7a65ab03d48b79033987746ab"}},{"ruleId":"D34","level":"note","message":{"text":"Dormant codebase: 45 of 45 significant files have no living knowledge \u2014 the codebase as a whole is dormant, not 45 separate risks. Re-engage owners or document before change."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"4c69f1e54b7dd6fe9029dd02df6ba8f8145b789f2f18dbdaa086c40ded49dba6"}},{"ruleId":"D34","level":"note","message":{"text":"Largest orphaned file: One of the largest files with no living knowledge remaining \u2014 a reasonable place to start a read-through before the aggregate risk above bites."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Configuration.fs"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"022ea7081d83e5812ed799615ded547d1239df9c6da483688a13dd7dc1eaa0c7"}},{"ruleId":"D34","level":"note","message":{"text":"Largest orphaned file: One of the largest files with no living knowledge remaining \u2014 a reasonable place to start a read-through before the aggregate risk above bites."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts/Main.fs"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"1a9ff85bc5c150a50e24d56509bf25b5bd29aeef45380bb783bdeada51e5ef18"}},{"ruleId":"D34","level":"note","message":{"text":"Largest orphaned file: One of the largest files with no living knowledge remaining \u2014 a reasonable place to start a read-through before the aggregate risk above bites."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/XPlot.GoogleCharts.Deedle/Deedle.fs"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"908519f2af3eed08e6bdb19768266ff8aeaab7464f7dec742ac76431de7d2b67"}}],"taxonomies":[{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d","organization":"MITRE","informationUri":"https://cwe.mitre.org/","isComprehensive":false,"shortDescription":{"text":"The MITRE Common Weakness Enumeration (CWE)."},"taxa":[{"id":"CWE-1032","guid":"5f21e517-68aa-a650-9a25-5771ef024637","name":"OWASP Top Ten \u2014 Security Misconfiguration category","shortDescription":{"text":"OWASP Top Ten \u2014 Security Misconfiguration category"},"helpUri":"https://cwe.mitre.org/data/definitions/1032.html"},{"id":"CWE-16","guid":"659db3ea-affc-8453-8add-c1218fbfcb92","name":"Configuration","shortDescription":{"text":"Configuration"},"helpUri":"https://cwe.mitre.org/data/definitions/16.html"},{"id":"CWE-259","guid":"ae9ad959-fbb6-9d5e-892d-3dca66da0b69","name":"Use of Hard-coded Password","shortDescription":{"text":"Use of Hard-coded Password"},"helpUri":"https://cwe.mitre.org/data/definitions/259.html"},{"id":"CWE-732","guid":"1da27e8f-b330-7650-ab63-bd61953eae5d","name":"Incorrect Permission Assignment for Critical Resource","shortDescription":{"text":"Incorrect Permission Assignment for Critical Resource"},"helpUri":"https://cwe.mitre.org/data/definitions/732.html"},{"id":"CWE-77","guid":"332c8ade-6612-9f56-a06b-d8d90b1a8750","name":"Command Injection","shortDescription":{"text":"Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/77.html"},{"id":"CWE-78","guid":"2e31ceaf-c7ae-2e5e-9661-cfb1362789cf","name":"OS Command Injection","shortDescription":{"text":"OS Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/78.html"},{"id":"CWE-79","guid":"fd45580b-e8c4-fc5e-8c2f-aa8fab0b4dbf","name":"Cross-site Scripting (XSS)","shortDescription":{"text":"Cross-site Scripting (XSS)"},"helpUri":"https://cwe.mitre.org/data/definitions/79.html"},{"id":"CWE-798","guid":"5e8f057d-fee3-995a-a0cb-9fc5b0d174d1","name":"Use of Hard-coded Credentials","shortDescription":{"text":"Use of Hard-coded Credentials"},"helpUri":"https://cwe.mitre.org/data/definitions/798.html"},{"id":"CWE-89","guid":"6d08fdad-37eb-c150-bbf0-d7d946863407","name":"SQL Injection","shortDescription":{"text":"SQL Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/89.html"},{"id":"CWE-94","guid":"75e7f50c-6c2f-dd52-bf40-bf6c52b861fd","name":"Code Injection","shortDescription":{"text":"Code Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/94.html"}]}],"properties":{"codehealthPublication":{"public":true,"notice":"This is the PUBLIC form of this artifact. Findings are listed in full, but the details of SECURITY findings \u2014 which rule fired, in which file, on which line, and how to fix it \u2014 are deliberately withheld, and any secret-scanner results are excluded entirely. Where detail is absent here it was REMOVED FOR PUBLICATION; it is not missing from the analysis. The complete artifact is available from the repository owner.","securityFindingsRedacted":7,"secretScannerRunsExcluded":0}},"redactionTokens":["A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."]}]}