From 773621324b25ccd3603c22617b1bf6a0dbee7d06 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:30:02 +0800 Subject: [PATCH 01/15] viz smart: surface planned -> committed -> spent as a funnel (#4222) The last of the three asks in #4222. A pipeline was previously visible only as `% zeros` annotations scattered across three separate box titles: 47% of projects have nothing committed, 55% nothing spent. Read one at a time those are three unrelated data-quality notes; read together they are a funding pipeline, which is the actionable governance signal. The funnel states it once. Detection requires BOTH a vocabulary match and row-wise containment, and neither gate is redundant. The vocabulary supplies the ORDER -- direction is semantics and no statistic recovers it -- while containment verifies that the order the names claim is the order the data has. Names alone would read `township` as a shipping stage. Containment alone cannot tell a pipeline from a partition: total/male/female population nests perfectly and would render as leakage, the worst failure mode for the admin data qsv is usually pointed at. Matching is by SUBSTRING, which needs justifying given `is_intensive_measure`'s scar tissue (where "ratio" matched the whole `-ration` word family). The motivating column is `totalplannedcommit`: one all-lowercase run, so `field_name_tokens` yields a single token and token-equality against "planned" misses entirely. What makes substrings safe here is the conjunction -- a spurious "ship" inside `township` cannot produce a panel unless a second column independently matches a different rank of the same family AND the two are nested in that order. `is_intensive_measure` had no second gate; this does. `totalplannedcommit` also contains "commit" at position 12. If that won it would collide with `commit_total` and the funnel would be ambiguous or ordered backwards -- on the exact dataset the issue names. Lowest character position wins, because English puts the stage modifier first. One false-positive class survives the conjunction and needs its own guard: complements. `unspent_balance` contains "spent" and is near-perfectly nested inside `planned`, so both gates pass and it would render as the Spent stage, inverting the panel. Hence FUNNEL_NON_STAGE_MARKERS. Bars are summed amounts; rows-reached rides in the hover. At Gini 0.95 "42% of dollars committed" and "45% of projects committed anything" are both true and read as a contradiction, so neither is ever shown alone -- the same hazard `lorenz_caveat` exists to defuse. Stage-to-stage conversion is plotly's own `textinfo`, computed from the bar values, so it cannot drift from the bars. Totals are summed over the listwise-complete join and therefore do NOT match `stats.sum`. Following `lorenz_caveat`, the subtitle discloses the denominator unconditionally rather than only when it looks bad. Order is never sorted by value. When a downstream total outruns its predecessor -- plausible for capital projects, where a few change orders dominate a Gini-0.95 column -- the inverted band IS the finding, and the subtitle names it. Uses the Funnel trace added in dathere/plotly (upstream PR plotly/plotly.rs#432); Cargo.toml now pins the stacked `deps/webdriver-downloader-0.17+funnel` branch. Funnel is a CARTESIAN trace, so unlike Sankey it composes with the typed subplot grid and static export -- verified by rendering a funnel to PNG, not just assumed. Note a funnel draws index 0 at the TOP, the opposite of a plain category axis; feeding it the lollipop's reversed arrays renders the funnel upside down, widening toward the bottom. 7 integration + 3 unit tests. The two negative tests would pass vacuously against pre-fix code (no funnel existed), so they were confirmed against a deliberately loosened build instead -- containment gate disabled and negation guard emptied -- and both failed there, so each gate is doing real work. Swept all 18 gallery corpus datasets: zero funnels, no false positives. Gallery not regenerated: no example CSV produces a funnel, so the only diff would be timestamp churn. Closes #4222. Co-Authored-By: Claude Opus 4.7 (1M context) --- Cargo.lock | 42 +-- Cargo.toml | 7 +- src/cmd/viz.rs | 790 +++++++++++++++++++++++++++++++++++++++++++--- tests/test_viz.rs | 222 +++++++++++++ 4 files changed, 998 insertions(+), 63 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5fa1477f6..aa38f74b08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -330,7 +330,7 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -341,7 +341,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -2315,7 +2315,7 @@ dependencies = [ "libc", "option-ext", "redox_users", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -2527,7 +2527,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -3599,7 +3599,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2 0.6.5", + "socket2 0.5.10", "system-configuration", "tokio", "tower-service", @@ -5346,7 +5346,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967" dependencies = [ "libc", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -5679,7 +5679,7 @@ dependencies = [ [[package]] name = "plotly" version = "0.14.1" -source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17#b159f474c2ee7c37c24c2bef0f57ba6580703d93" +source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#667358fcfca838eafc0201ec4e7ffc3aede1f1d2" dependencies = [ "askama", "async-trait", @@ -5702,7 +5702,7 @@ dependencies = [ [[package]] name = "plotly_derive" version = "0.14.1" -source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17#b159f474c2ee7c37c24c2bef0f57ba6580703d93" +source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#667358fcfca838eafc0201ec4e7ffc3aede1f1d2" dependencies = [ "darling 0.23.0", "proc-macro2", @@ -5713,7 +5713,7 @@ dependencies = [ [[package]] name = "plotly_static" version = "0.1.0" -source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17#b159f474c2ee7c37c24c2bef0f57ba6580703d93" +source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#667358fcfca838eafc0201ec4e7ffc3aede1f1d2" dependencies = [ "anyhow", "base64", @@ -6904,7 +6904,7 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2 0.6.5", + "socket2 0.5.10", "thiserror 2.0.19", "tokio", "tracing", @@ -6943,9 +6943,9 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", - "socket2 0.6.5", + "socket2 0.5.10", "tracing", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -7755,7 +7755,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -7814,7 +7814,7 @@ dependencies = [ "security-framework", "security-framework-sys", "webpki-root-certs", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -8390,7 +8390,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" dependencies = [ "libc", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -8515,7 +8515,7 @@ dependencies = [ "cfg-if", "libc", "psm", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -8766,10 +8766,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.4.3", + "getrandom 0.3.4", "once_cell", "rustix", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -8782,7 +8782,7 @@ dependencies = [ "parking_lot", "rustix", "signal-hook 0.3.18", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -8818,7 +8818,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" dependencies = [ "rustix", - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] @@ -10075,7 +10075,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.60.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 792edc8598..2005073916 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -463,7 +463,7 @@ csvs_convert = { git = "https://github.com/jqnatividad/csvs_convert", branch = " # use our patched fork of whatlang to bump hashbrown until our PR is merged whatlang = { git = "https://github.com/jqnatividad/whatlang-rs", branch = "bump-hashbrown-to-16" } -# Pinned to our stacked branch `deps/webdriver-downloader-0.17` (PR +# Pinned to our stacked branch `deps/webdriver-downloader-0.17+funnel` (PR # https://github.com/plotly/plotly.rs/pull/428), a strict superset of the earlier pins: # - MapLibre `map`-subplot traces qsv's `viz` maps use (ChoroplethMap, DensityMap, # ScatterMap; upstream PRs #406/#410/#415/#416) — now merged into plotly:main @@ -471,8 +471,9 @@ whatlang = { git = "https://github.com/jqnatividad/whatlang-rs", branch = "bump- # - new trace types Indicator, Histogram2d, Icicle + layout-level `uirevision` (PR #423) # - new trace types Splom, Parcats (PR #425) — used by qsv `viz splom`/`viz parcats` # - webdriver-downloader 0.17 (PR #427) — used by qsv `viz_static` for headless Chromium/Firefox export -# When #421/#423/#425/#428 merge upstream, repoint this to a plotly.rs release/main rev. -plotly = { git = "https://github.com/dathere/plotly", branch = "deps/webdriver-downloader-0.17" } +# - Funnel trace + layout funnelmode (PR #432) — used by qsv `viz smart` pipeline funnels +# When #421/#423/#425/#428/#432 merge upstream, repoint this to a plotly.rs release/main rev. +plotly = { git = "https://github.com/dathere/plotly", branch = "deps/webdriver-downloader-0.17+funnel" } # TRACKING: remove this patch when upstream resolves it (see exit conditions below). # diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index 3239355df4..45855efc12 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -702,8 +702,9 @@ use plotly::layout::update_menu::{ }; use plotly::{ Bar, BoxPlot, Candlestick, Choropleth, ChoroplethMap, Configuration, Contour, DensityMap, - HeatMap, Histogram, Icicle, Indicator, Ohlc, Parcats, Pie, Plot, Sankey, Scatter, Scatter3D, - ScatterGeo, ScatterMap, ScatterPolar, Splom, Sunburst, Trace, Traces, Treemap, Violin, + Funnel, HeatMap, Histogram, Icicle, Indicator, Ohlc, Parcats, Pie, Plot, Sankey, Scatter, + Scatter3D, ScatterGeo, ScatterMap, ScatterPolar, Splom, Sunburst, Trace, Traces, Treemap, + Violin, box_plot::{BoxPoints, QuartileMethod}, choropleth::{LocationMode, Marker as ChoroplethMarker}, color::NamedColor, @@ -712,6 +713,7 @@ use plotly::{ HoverInfo, Line, Marker, Mode, Orientation, Pattern, PatternShape, TextPosition, TickMode, Title, }, + funnel::Connector as FunnelConnector, indicator::{Delta, Gauge, GaugeAxis, Mode as IndicatorMode, Number}, layout::{ Animation, AnimationMode, AnimationOptions, Annotation, Axis, AxisType, CategoryOrder, @@ -12395,6 +12397,25 @@ enum PanelKind { gini: f64, label: String, }, + /// Ordered pipeline funnel over measures that form process STAGES — planned → committed → + /// spent, impressions → clicks → conversions (issue #4222). Built when column names resolve + /// to distinct ranks of one `FUNNEL_FAMILIES` vocabulary AND the columns are row-wise nested + /// in that order; see `build_funnel_panel` for why both gates are required. + /// + /// All five vectors are parallel and UPSTREAM-FIRST; the render arm reverses them, because + /// plotly places category index 0 at the axis bottom. `totals` is the summed amount per stage + /// and drives the bar length; `reached` is the count of complete-case rows with a strictly + /// positive value at that stage, carried because at high Gini "62% of dollars spent" and "45% + /// of projects spent anything" are both true and neither may be shown alone. `n_complete` is + /// the shared listwise-complete denominator, disclosed unconditionally in the subtitle since + /// these sums do NOT match `stats.sum`. + Funnel { + stages: Vec, + labels: Vec, + totals: Vec, + reached: Vec, + n_complete: usize, + }, /// 2D density contour of the most strongly correlated numeric pair — used INSTEAD of /// `ScatterPair` for large datasets (>= `SMART_CONTOUR_MIN_POINTS`), where a scatter overplots. /// Carries the precomputed bin-center axes and count grid so the render loop stays pure. @@ -15385,6 +15406,264 @@ fn lorenz_caveat(s: &crate::cmd::stats::StatsData) -> String { ) } +/// One stage of an ordered pipeline vocabulary: its canonical display name and the substrings +/// that identify a column as belonging to it. +struct FunnelStage { + name: &'static str, + words: &'static [&'static str], +} + +/// An ordered family of pipeline stages. Order within `stages` IS the pipeline order — it is the +/// vocabulary, not the data, that establishes direction (see `build_funnel_panel`). +struct FunnelFamily { + name: &'static str, + stages: &'static [FunnelStage], +} + +/// The pipeline vocabularies `viz smart` recognizes (issue #4222). +/// +/// Matched as SUBSTRINGS, deliberately — `field_name_tokens` cannot help here. The motivating +/// column is `totalplannedcommit`: one all-lowercase alphanumeric run, so tokenization yields the +/// single token "totalplannedcommit" and a token-equality test against "planned" misses entirely. +/// +/// Substring matching is what burned `is_intensive_measure` (where "ratio" matched the whole +/// `-ration` word family), so read why it is safe here: a stage word alone NEVER produces a panel. +/// A spurious "ship" inside `township` can only reach the dashboard if a second column +/// independently matches a DIFFERENT rank of the SAME family and the columns are row-wise nested +/// in that order (`FUNNEL_CONTAINMENT_MIN`). `is_intensive_measure` had no such second gate; this +/// does, and the conjunction is the entire safety argument. +const FUNNEL_FAMILIES: &[FunnelFamily] = &[ + FunnelFamily { + name: "budget", + stages: &[ + FunnelStage { + name: "Planned", + words: &[ + "planned", + "plan", + "budget", + "appropriat", + "authoriz", + "estimated", + "proposed", + ], + }, + FunnelStage { + name: "Committed", + words: &["commit", "encumber", "obligat", "contract", "awarded"], + }, + FunnelStage { + name: "Spent", + words: &[ + "spent", "spend", "expend", "disburs", "outlay", "paid", "actual", + ], + }, + ], + }, + FunnelFamily { + name: "marketing", + stages: &[ + FunnelStage { + name: "Impressions", + words: &["impression", "view", "reach"], + }, + FunnelStage { + name: "Clicks", + words: &["click"], + }, + FunnelStage { + name: "Leads", + words: &["lead", "signup", "registrat"], + }, + FunnelStage { + name: "Conversions", + words: &["conversion", "convert", "purchase", "sale"], + }, + ], + }, + FunnelFamily { + name: "fulfillment", + stages: &[ + FunnelStage { + name: "Ordered", + words: &["ordered", "orders", "placed"], + }, + FunnelStage { + name: "Shipped", + words: &["shipped", "shipment", "dispatch"], + }, + FunnelStage { + name: "Delivered", + words: &["delivered", "delivery", "received"], + }, + ], + }, +]; + +/// Names that CONTAIN a stage word but denote its complement or a derived difference, never the +/// stage itself. These are the one false-positive class the vocabulary-plus-containment +/// conjunction cannot catch on its own: `unspent_balance` contains "spent" AND is near-perfectly +/// nested inside `planned`, so both gates pass and it would render as the Spent stage — inverting +/// the panel's meaning. Small and closed by construction: every entry is either an `un-` negation +/// or an explicit difference/residual word. +const FUNNEL_NON_STAGE_MARKERS: &[&str] = &[ + "unspent", + "uncommitted", + "unplanned", + "unpaid", + "unobligated", + "undisbursed", + "unshipped", + "remaining", + "variance", + "shortfall", + "overrun", + "difference", + "delta", + "balance", +]; + +/// Minimum share of complete-case rows that must satisfy `stage[k+1] <= stage[k]` for a pair of +/// columns to be accepted as consecutive pipeline stages. Deliberately tolerant: capital projects +/// really do have change orders, and a strict 1.0 would reject the flagship dataset outright. +const FUNNEL_CONTAINMENT_MIN: f64 = 0.90; + +/// Containment-violation share above which the subtitle names it. Below this it is float noise or +/// a handful of corrections, not a finding. +const FUNNEL_VIOLATION_NOTE_MIN: f64 = 0.01; + +/// Minimum share of the table's rows that must survive the listwise-complete join for the funnel's +/// totals to be worth showing at all. +const FUNNEL_MIN_COMPLETE_FRAC: f64 = 0.50; + +/// Cap on funnel stages, so a wide finance table can't produce an unreadable twelve-band funnel. +const FUNNEL_MAX_STAGES: usize = 6; + +/// A column's resolved pipeline position: which family it belongs to, its stage rank within that +/// family, and how many DISTINCT ranks of that family its name matched (the ambiguity measure used +/// to break rank collisions — an unambiguous `planned_amt` should beat a 2-match name). +#[derive(Clone, Copy, PartialEq, Eq, Debug)] +struct FunnelHit { + family: usize, + rank: usize, + ambiguity: usize, +} + +/// Resolve a column name to a pipeline stage, or `None`. +/// +/// `totalplannedcommit` contains BOTH "planned" (position 5) and "commit" (position 12); if +/// "commit" won it would collide with a sibling `commit_total` and the funnel would be ambiguous +/// or ordered backwards — on the exact dataset issue #4222 names. **Lowest character position +/// wins**, because English puts the stage modifier before the noun ("planned commitment" is a +/// plan; "spent_of_planned" is a spend). Ties on position go to the longer (more specific) word. +fn stage_match(label: &str, field: &str) -> Option { + let hay = format!("{label} {field}").to_ascii_lowercase(); + if FUNNEL_NON_STAGE_MARKERS.iter().any(|m| hay.contains(m)) { + return None; + } + + let mut best: Option<(usize, usize, usize, usize)> = None; // (pos, !len, family, rank) + for (fi, fam) in FUNNEL_FAMILIES.iter().enumerate() { + for (ri, stage) in fam.stages.iter().enumerate() { + for word in stage.words { + if let Some(pos) = hay.find(word) { + // earliest position wins; on a tie the longer word is the more specific match + let key = (pos, usize::MAX - word.len(), fi, ri); + if best.is_none_or(|b| key < b) { + best = Some(key); + } + } + } + } + } + + let (_, _, family, rank) = best?; + // ambiguity is measured WITHIN the winning family: how many of its distinct ranks this one + // name could be read as. + let ambiguity = FUNNEL_FAMILIES[family] + .stages + .iter() + .filter(|stage| stage.words.iter().any(|w| hay.contains(w))) + .count(); + Some(FunnelHit { + family, + rank, + ambiguity, + }) +} + +/// Share of row-aligned pairs satisfying `downstream <= upstream`. The tolerance is relative, so a +/// float-noise equality on large money values doesn't read as a violation. Returns 0.0 for empty +/// input (an empty pipeline is not a contained one). +fn containment_fraction(upstream: &[f64], downstream: &[f64]) -> f64 { + let n = upstream.len().min(downstream.len()); + if n == 0 { + return 0.0; + } + let ok = (0..n) + .filter(|&r| { + let (u, d) = (upstream[r], downstream[r]); + d <= u + 1e-9 * u.abs().max(1.0) + }) + .count(); + #[allow(clippy::cast_precision_loss)] + let frac = ok as f64 / n as f64; + frac +} + +/// The caveat line beneath a funnel panel's title (issue #4222). +/// +/// Clause 1 is UNCONDITIONAL, following `lorenz_caveat`'s philosophy. The funnel's totals are +/// summed over the listwise-complete join `read_numeric_columns` produces — rows where ANY kept +/// numeric column was blank are absent — so they will NOT match `stats.sum`, and a reader +/// reconciling the two deserves to be told why without having to notice a discrepancy first. +/// +/// The remaining clauses fire only when they apply, and both describe the same hazard from +/// different angles: a downstream stage that outruns its predecessor. Per-row violations mean +/// individual overruns; a larger downstream TOTAL means the overruns dominate the column. Capped +/// at 3 clauses like `lorenz_caveat`, so the line stays one readable row. +fn funnel_subtitle( + stages: &[String], + totals: &[f64], + violations: &[f64], + n_complete: usize, + complete_frac: f64, +) -> Option { + let mut parts: Vec = vec![format!( + "n = {} complete cases ({:.0}% of rows)", + HumanCount(n_complete as u64), + complete_frac * 100.0 + )]; + + // worst per-row violation, if any is worth naming + if let Some((k, v)) = violations + .iter() + .enumerate() + .skip(1) + .max_by(|a, b| a.1.total_cmp(b.1)) + .filter(|(_, v)| **v >= FUNNEL_VIOLATION_NOTE_MIN) + && let (Some(here), Some(prev)) = (stages.get(k), stages.get(k - 1)) + { + parts.push(format!( + "{here} exceeds {prev} in {:.0}% of rows", + v * 100.0 + )); + } + + // a stage whose TOTAL outruns its predecessor: the bar order is kept (vocabulary order is + // never sorted away), so the inverted band is the finding and needs naming. + if let Some(k) = (1..totals.len()).find(|&k| totals[k] > totals[k - 1]) + && let (Some(here), Some(prev)) = (stages.get(k), stages.get(k - 1)) + { + parts.push(format!( + "{here} total exceeds {prev} \u{2014} overruns, not leakage" + )); + } + + parts.truncate(3); + Some(parts.join(" \u{b7} ")) +} + /// APPROXIMATE share of the most frequent value, reconstructed entirely from the stats cache: /// `mode_occurrences / record_count`, where the record count is recovered as /// `cardinality / uniqueness_ratio` (its defining ratio) so no data pass is needed. @@ -19964,6 +20243,9 @@ struct SmartCtx<'a> { /// at most ONE animated panel is shown; precedence is T3 (bubble) > T2 (geo) > T1 (scatter). bubble_panel: Option, geo_anim_panel: Option, + /// the pipeline funnel (issue #4222), built during the correlation pass while the + /// row-aligned columns are live and inserted later with the other overview panels. + funnel_panel: Option, explicit_box_points: Option, count_conf: Config, @@ -20241,6 +20523,7 @@ impl<'a> SmartCtx<'a> { sankey_pair: None, bubble_panel: None, geo_anim_panel: None, + funnel_panel: None, explicit_box_points, count_conf, stats_input: prep.stats_input.clone(), @@ -20663,6 +20946,14 @@ impl<'a> SmartCtx<'a> { read_numeric_columns(&mut rdr, &headers, nh, &numeric_indices, false)?; // need 2+ numeric columns AND 2+ complete rows for a meaningful correlation matrix if labels.len() >= 2 && columns.first().is_some_and(|c| c.len() >= 2) { + // Pipeline funnel (issue #4222, ask 3): built HERE, while the row-aligned + // columns the correlation matrix needs are still live, so detection costs no + // extra data pass. STASHED rather than inserted, because the correlation + // heatmap's own `insert(0, ..)` further down would otherwise land on top of it. + let total_rows = self.row_count() as usize; + let funnel = self.build_funnel_panel(&labels, &columns, &kept_indices, total_rows); + self.funnel_panel = funnel; + // Pearson is always computed: the nonlinearity note below is DEFINED as a // Pearson-vs-Spearman divergence, so it needs an r even when the panel itself // reports rho. On a mostly heavy-tailed table the displayed matrix (and every @@ -21103,6 +21394,247 @@ impl<'a> SmartCtx<'a> { Ok(()) } + /// Build the pipeline-funnel panel from the row-aligned columns the correlation pass already + /// read (issue #4222, ask 3), or `None` when this table is not a pipeline. + /// + /// Two gates, both required. The VOCABULARY (`FUNNEL_FAMILIES`) supplies the ORDER — direction + /// is semantics, and no statistic can recover it — while row-wise CONTAINMENT verifies that + /// the order the names claim is the order the data actually has. Neither alone is safe: + /// names alone would read `township` as a shipping stage, and containment alone cannot tell + /// a pipeline from a partition (`total_pop` / `male_pop` / `female_pop` nests perfectly and + /// would render as leakage, the worst failure mode for the admin data qsv is usually + /// pointed at). + /// + /// `total_rows` is the table's row count, used only to disclose how much of it survived the + /// listwise-complete join. + fn build_funnel_panel( + &self, + labels: &[String], + columns: &[Vec], + kept_indices: &[usize], + total_rows: usize, + ) -> Option { + if columns.is_empty() || labels.len() != kept_indices.len() { + return None; + } + + // 1. resolve eligible columns to stage hits. Filters mirror `is_inequality_candidate`: a + // dictionary-declared Mean/Min/Max is intensive (a funnel of averages is nonsense), and + // rate/ratio/index and id/code names are never pipeline amounts. + let mut hits: Vec<(usize, FunnelHit)> = Vec::new(); + for (pos, &src) in kept_indices.iter().enumerate() { + let (Some(sem), Some(s)) = (self.col_sems.get(src), self.stats.get(src)) else { + continue; + }; + if self.is_map_col(src) + || !matches!(sem.route, Route::Defer | Route::Measure) + || !matches!(sem.agg, Some(Agg::Sum) | None) + || is_intensive_measure(&sem.label, &s.field) + || is_identifier_name(&sem.label, &s.field) + { + continue; + } + if let Some(hit) = stage_match(&sem.label, &s.field) { + hits.push((pos, hit)); + } + } + if hits.len() < 2 { + // most tables are not pipelines; staying silent here keeps stderr useful + return None; + } + + // 2. pick the family with the most distinct ranks represented (ties -> first family) + let family = { + let mut best: Option<(usize, usize)> = None; + for fi in 0..FUNNEL_FAMILIES.len() { + let ranks: std::collections::HashSet = hits + .iter() + .filter(|(_, h)| h.family == fi) + .map(|(_, h)| h.rank) + .collect(); + if ranks.len() >= 2 && best.is_none_or(|(n, _)| ranks.len() > n) { + best = Some((ranks.len(), fi)); + } + } + best?.1 + }; + let fam = &FUNNEL_FAMILIES[family]; + + // 3. one column per rank. A collision goes to the less ambiguous name; a true tie is + // unresolvable, and guessing which of two columns is "the" Spent stage would silently + // invert the panel, so bail loudly instead. + let mut per_rank: std::collections::BTreeMap = + std::collections::BTreeMap::new(); + for &(pos, hit) in &hits { + if hit.family != family { + continue; + } + match per_rank.get(&hit.rank).copied() { + Some((_, amb)) if amb < hit.ambiguity => {}, + Some((other, amb)) if amb == hit.ambiguity => { + viz_note(&format!( + "viz smart: pipeline funnel skipped \u{2014} {} and {} both resolve to \ + the '{}' stage of the {} pipeline", + labels[other], labels[pos], fam.stages[hit.rank].name, fam.name + )); + return None; + }, + _ => { + per_rank.insert(hit.rank, (pos, hit.ambiguity)); + }, + } + } + if per_rank.len() < 2 { + return None; + } + + // 4. an ENTIRELY-zero stage never reaches `columns`: the correlation pre-filter requires + // `cardinality > 1`. Dropping it would silently shorten the pipeline and imply the last + // surviving stage ends the process, so rescue it from the base-cache sign counts (no + // data pass) and carry it as a zero-height band. + let mut zero_stages: Vec<(usize, String)> = Vec::new(); + for (src, s) in self.stats.iter().enumerate() { + if kept_indices.contains(&src) + || !matches!(s.r#type.as_str(), "Integer" | "Float") + || self.is_map_col(src) + { + continue; + } + let (Some(neg), Some(zero), Some(n_pos)) = (s.n_negative, s.n_zero, s.n_positive) + else { + continue; + }; + if zero == 0 || neg + n_pos > 0 { + continue; + } + let Some(sem) = self.col_sems.get(src) else { + continue; + }; + if let Some(hit) = stage_match(&sem.label, &s.field) + && hit.family == family + && !per_rank.contains_key(&hit.rank) + { + let label = if sem.label.is_empty() { + s.field.clone() + } else { + sem.label.clone() + }; + zero_stages.push((hit.rank, label)); + } + } + + // 5. assemble the ordered stage list, upstream-first + let mut ordered: Vec<(usize, Option, String)> = per_rank + .iter() + .map(|(&rank, &(pos, _))| (rank, Some(pos), labels[pos].clone())) + .chain(zero_stages.into_iter().map(|(r, l)| (r, None, l))) + .collect(); + ordered.sort_by_key(|&(rank, _, _)| rank); + if ordered.len() > FUNNEL_MAX_STAGES { + let dropped = ordered.len() - FUNNEL_MAX_STAGES; + ordered.truncate(FUNNEL_MAX_STAGES); + viz_note(&format!( + "viz smart: pipeline funnel shows the first {FUNNEL_MAX_STAGES} stages ({dropped} \ + more not shown)" + )); + } + + // 6. verify the order the names claimed. A rescued all-zero stage is trivially contained. + for w in ordered.windows(2) { + let [up, down] = w else { continue }; + let (Some(ui), Some(di)) = (up.1, down.1) else { + continue; + }; + let frac = containment_fraction(&columns[ui], &columns[di]); + if frac < FUNNEL_CONTAINMENT_MIN { + viz_note(&format!( + "viz smart: pipeline funnel skipped \u{2014} {} is not contained in {} \ + ({:.0}% of rows)", + down.2, + up.2, + frac * 100.0 + )); + return None; + } + } + + // 7. totals, reach counts and violation shares + let n_complete = columns[0].len(); + #[allow(clippy::cast_precision_loss)] + let complete_frac = if total_rows == 0 { + 0.0 + } else { + n_complete as f64 / total_rows as f64 + }; + if complete_frac < FUNNEL_MIN_COMPLETE_FRAC { + viz_note(&format!( + "viz smart: pipeline funnel skipped \u{2014} only {:.0}% of rows are complete \ + across every stage", + complete_frac * 100.0 + )); + return None; + } + + let mut stages: Vec = Vec::with_capacity(ordered.len()); + let mut stage_labels: Vec = Vec::with_capacity(ordered.len()); + let mut totals: Vec = Vec::with_capacity(ordered.len()); + let mut reached: Vec = Vec::with_capacity(ordered.len()); + let mut violations: Vec = Vec::with_capacity(ordered.len()); + for (k, (rank, pos, label)) in ordered.iter().enumerate() { + stages.push(fam.stages[*rank].name.to_string()); + stage_labels.push(label.clone()); + if let Some(p) = pos { + totals.push(columns[*p].iter().sum()); + reached.push(columns[*p].iter().filter(|v| **v > 0.0).count()); + } else { + totals.push(0.0); + reached.push(0); + } + violations.push(if k == 0 { + 0.0 + } else { + match (ordered[k - 1].1, *pos) { + (Some(ui), Some(di)) => 1.0 - containment_fraction(&columns[ui], &columns[di]), + _ => 0.0, + } + }); + } + + if totals.iter().any(|t| *t < 0.0) { + viz_note( + "viz smart: pipeline funnel skipped \u{2014} a stage total is negative, which a \ + funnel cannot represent", + ); + return None; + } + if totals.windows(2).all(|w| { + let [a, b] = w else { return true }; + (a - b).abs() < f64::EPSILON + }) { + viz_note( + "viz smart: pipeline funnel skipped \u{2014} every stage total is identical (the \ + columns are copies, not stages)", + ); + return None; + } + + let subtitle = funnel_subtitle(&stages, &totals, &violations, n_complete, complete_frac); + let title = format!("Pipeline funnel: {}", stage_labels.join(" \u{2192} ")); + Some( + Panel::new( + title, + PanelKind::Funnel { + stages, + labels: stage_labels, + totals, + reached, + n_complete, + }, + ) + .with_subtitle(subtitle), + ) + } + /// Prepend the cross-column overview panels: the winning animated panel, measure-by-dimension, /// grouped violin, Lorenz curves, parcats, hierarchy, time-series, cyclic profile, and finally /// the geographic panels. Each is `insert(0, ..)`-ed, so the LAST one inserted leads the @@ -21440,6 +21972,15 @@ impl<'a> SmartCtx<'a> { } } + // prepend the pipeline funnel (issue #4222), built during the correlation pass. Inserted + // after the cyclic/time-series blocks and before the geographic ones, so it sits directly + // beneath the maps and above the correlation heatmap, Lorenz curves and parcats: geo still + // leads, but the governance readout is top-of-fold rather than buried among the + // distribution panels. + if let Some(panel) = self.funnel_panel.take() { + self.panels.insert(0, panel); + } + // prepend the geographic overview panels (built up front, above) so they lead the dashboard // and survive the panel cap. Insert the per-country choropleth first, then the point map at // index 0, yielding [map, choropleth, ...] — the point map for spatial detail, the @@ -21643,6 +22184,7 @@ impl<'a> SmartCtx<'a> { | PanelKind::AnimatedBubble { .. } | PanelKind::ScatterPair { .. } | PanelKind::Lorenz { .. } + | PanelKind::Funnel { .. } | PanelKind::ContourPair { .. } | PanelKind::Scatter3D { .. } | PanelKind::Histogram { .. } @@ -22370,6 +22912,64 @@ fn panel_trace( } t }, + PanelKind::Funnel { + stages, + labels, + totals, + reached, + n_complete, + } => { + // A horizontal funnel: amount on the value axis, stage on the category axis. + // A funnel trace draws index 0 at the TOP and works downward — the opposite of a + // plain category axis, and the reason these arrays are fed UPSTREAM-FIRST, exactly + // as the panel carries them. Feeding them reversed (the lollipop's convention) + // renders the funnel upside down, widening toward the bottom. + // + // The bar text is left to plotly's own `textinfo`: it computes "percent previous" + // from the values themselves, so the conversion figures can never drift from the + // bars. The hover is fully pre-rendered into `hover_text`, which keeps every literal + // `%` in DATA rather than in the template — so `escape_template_pct` is unnecessary + // here and only the column label needs `escape_hover`. + let hover: Vec = (0..stages.len()) + .map(|k| { + let pct = if *n_complete == 0 { + 0.0 + } else { + #[allow(clippy::cast_precision_loss)] + let p = reached[k] as f64 / *n_complete as f64 * 100.0; + p + }; + format!( + "{}
Stage: {}
Amount: {}
Rows reached: {} of {} ({pct:.0}% of \ + complete cases)", + escape_hover(&labels[k]), + escape_hover(&stages[k]), + fmt_measure(totals[k]), + HumanCount(reached[k] as u64), + HumanCount(*n_complete as u64), + ) + }) + .collect(); + let xs: Vec = totals.clone(); + let ys: Vec = stages.clone(); + let mut f = Funnel::new(xs, ys) + .orientation(Orientation::Horizontal) + .name(panel.name.clone()) + .marker(Marker::new().color(color)) + // ONLY the stage-to-stage conversion: plotly computes it from the values, so it + // can never drift from the bars. The absolute amounts deliberately stay out of + // the band — "value+percent previous" is two long lines that plotly clips inside + // a short band — and live in the KPI row above and this panel's hover instead. + .text_info("percent previous") + .text_position(TextPosition::Outside) + .connector(FunnelConnector::new().visible(true)) + .hover_text_array(hover) + .hover_template("%{hovertext}"); + if let Some((x, y)) = &axes { + f = f.x_axis(x.clone()).y_axis(y.clone()); + } + f + }, PanelKind::ContourPair { x, y, @@ -22597,6 +23197,7 @@ fn smart_grid_parts( | PanelKind::TimeSeries { .. } | PanelKind::ScatterPair { .. } | PanelKind::Lorenz { .. } + | PanelKind::Funnel { .. } | PanelKind::ContourPair { .. } | PanelKind::Scatter3D { .. } | PanelKind::MeasureByDim { .. } @@ -22629,6 +23230,12 @@ fn smart_grid_parts( .iter() .map(|l| l.chars().count().min(TOPREL_LABEL_MAX_CHARS)) .max(), + // the funnel is the other horizontal panel: its category ticks are the short + // canonical stage names, which still need left room reserved + PanelKind::Funnel { stages, .. } => stages + .iter() + .map(|l| l.chars().count().min(TOPREL_LABEL_MAX_CHARS)) + .max(), _ => None, }) .max() @@ -22979,45 +23586,58 @@ fn smart_grid_parts( let geom = geoms[n].clone(); // the Top Relationships lollipop is the one horizontal panel: value (NMI) on a zoomed x, // pair on the category y — the opposite axis roles from every other (vertical) panel. - let (x_axis, y_axis) = - if let PanelKind::TopRelationships { values, labels, .. } = &panel.kind { - let (floor, ceil) = lollipop_value_range(values); - // bottom-to-top (weakest-first), matching the reversed y-values the trace feeds - let ticks: Vec = labels - .iter() - .rev() - .map(|l| truncate_label(l, TOPREL_LABEL_MAX_CHARS)) - .collect(); - ( - lollipop_value_axis(floor, ceil, theme) - .domain(&geom.x_domain) - .anchor(yref.clone()), - lollipop_category_axis(theme, &ticks) - .domain(&geom.y_domain) - .anchor(xref.clone()), - ) - } else { - // a relationship panel's per-axis log verdict (issue #4223). The y side sets the - // axis TYPE only — `styled_y_axis`'s "log scale" title is the cue for an unlabeled - // distribution axis, while these panels name the logged axis in the panel title. - let (x_log, y_log) = panel.axis_log; - let mut y = styled_y_axis(bar_max, log_y, theme); - if y_log { - y = y.type_(AxisType::Log); - } - ( - styled_x_axis( - is_box, - is_date, - x_log, - theme, - freq_bar_tick_text(panel, freq), - ) + let (x_axis, y_axis) = if let PanelKind::Funnel { stages, totals, .. } = &panel.kind { + // the funnel is horizontal like the lollipop, but its value axis is anchored at + // zero and its categories run TOP-DOWN, matching the upstream-first arrays the + // trace feeds (see the `panel_trace` arm). + let ticks: Vec = stages.clone(); + let max = totals.iter().copied().fold(0.0_f64, f64::max); + ( + funnel_value_axis(max, theme) + .domain(&geom.x_domain) + .anchor(yref.clone()), + lollipop_category_axis(theme, &ticks) + .domain(&geom.y_domain) + .anchor(xref.clone()), + ) + } else if let PanelKind::TopRelationships { values, labels, .. } = &panel.kind { + let (floor, ceil) = lollipop_value_range(values); + // bottom-to-top (weakest-first), matching the reversed y-values the trace feeds + let ticks: Vec = labels + .iter() + .rev() + .map(|l| truncate_label(l, TOPREL_LABEL_MAX_CHARS)) + .collect(); + ( + lollipop_value_axis(floor, ceil, theme) .domain(&geom.x_domain) .anchor(yref.clone()), - y.domain(&geom.y_domain).anchor(xref.clone()), + lollipop_category_axis(theme, &ticks) + .domain(&geom.y_domain) + .anchor(xref.clone()), + ) + } else { + // a relationship panel's per-axis log verdict (issue #4223). The y side sets the + // axis TYPE only — `styled_y_axis`'s "log scale" title is the cue for an unlabeled + // distribution axis, while these panels name the logged axis in the panel title. + let (x_log, y_log) = panel.axis_log; + let mut y = styled_y_axis(bar_max, log_y, theme); + if y_log { + y = y.type_(AxisType::Log); + } + ( + styled_x_axis( + is_box, + is_date, + x_log, + theme, + freq_bar_tick_text(panel, freq), ) - }; + .domain(&geom.x_domain) + .anchor(yref.clone()), + y.domain(&geom.y_domain).anchor(xref.clone()), + ) + }; axes.push((pos, x_axis, y_axis)); annotations.push(panel_title_annotation( panel, @@ -24255,6 +24875,7 @@ fn smart_inline_panel_plot( ); let is_date = matches!(panel.kind, PanelKind::TimeSeries { .. }); let is_toprel = matches!(panel.kind, PanelKind::TopRelationships { .. }); + let is_funnel = matches!(panel.kind, PanelKind::Funnel { .. }); let (trace, bar_max, log_y) = panel_trace(panel, color, freq, hist, outliers, None, theme, log_scale); @@ -24272,6 +24893,9 @@ fn smart_inline_panel_plot( (110, 90) } else if is_toprel { (TOPREL_LABEL_MAX_CHARS * CORR_LABEL_PX_PER_CHAR + 24, 30) + } else if is_funnel { + // right room as well: plotly's in-band text can overflow the widest band + (TOPREL_LABEL_MAX_CHARS * CORR_LABEL_PX_PER_CHAR + 24, 60) } else if log_y { (60 + LOG_AXIS_TITLE_MARGIN_PX, 30) } else { @@ -24279,7 +24903,14 @@ fn smart_inline_panel_plot( }; // the lollipop is the one horizontal panel: value (NMI) on a zoomed x, pair on the category y // — the opposite axis roles from every other (vertical) inline panel. - let (x_axis, y_axis) = if let PanelKind::TopRelationships { values, labels, .. } = &panel.kind { + let (x_axis, y_axis) = if let PanelKind::Funnel { stages, totals, .. } = &panel.kind { + let ticks: Vec = stages.clone(); + let max = totals.iter().copied().fold(0.0_f64, f64::max); + ( + funnel_value_axis(max, theme), + lollipop_category_axis(theme, &ticks), + ) + } else if let PanelKind::TopRelationships { values, labels, .. } = &panel.kind { let (floor, ceil) = lollipop_value_range(values); let ticks: Vec = labels .iter() @@ -25648,6 +26279,7 @@ fn is_overview_panel(kind: &PanelKind) -> bool { | PanelKind::TopRelationships { .. } | PanelKind::ScatterPair { .. } | PanelKind::Lorenz { .. } + | PanelKind::Funnel { .. } | PanelKind::ContourPair { .. } | PanelKind::Scatter3D { .. } | PanelKind::MeasureByDim { .. } @@ -26182,6 +26814,31 @@ fn lollipop_value_axis(floor: f64, ceil: f64, theme: Option) -> Ax a } +/// The VALUE (x) axis for a horizontal pipeline funnel (issue #4222). +/// +/// Anchored at **zero**, unlike `lollipop_value_axis`'s zoomed range. A funnel's whole claim is +/// that band widths are proportional to stage amounts; a floor above zero would exaggerate the +/// taper, which is the one thing this panel must not do. The headroom above `max` leaves room for +/// plotly's in-band `textinfo` on the widest band. +/// +/// Never logged, for the same reason — a log value axis destroys the proportional reading. +fn funnel_value_axis(max: f64, theme: Option) -> Axis { + let ceil = if max > 0.0 { max * 1.35 } else { 1.0 }; + let mut a = Axis::new() + .show_grid(true) + .grid_width(1) + .zero_line(false) + .show_line(false) + .range(vec![0.0, ceil]); + if theme.is_none() { + a = a + .grid_color(GRID_COLOR) + .tick_color(AXIS_LINE) + .tick_font(Font::new().family(FONT_FAMILY).size(10)); + } + a +} + /// The CATEGORY (y) axis for a horizontal "Top Relationships" lollipop — one tick per ranked pair, /// no gridlines, small ticks. The trace's y-values are the FULL pair labels (so each pair is a /// distinct row); `tick_text` overrides only what's DISPLAYED with the caller's already-truncated @@ -30028,6 +30685,61 @@ mod tests { ); } + #[test] + fn stage_match_resolves_glued_multiword_names_by_position() { + // `totalplannedcommit` contains BOTH "planned" (pos 5) and "commit" (pos 12). English puts + // the stage modifier first, so the earliest match wins -- otherwise this column collides + // with a sibling `commit_total` and the pipeline is ambiguous or backwards. + let planned = stage_match("", "totalplannedcommit").expect("glued name should match"); + assert_eq!(planned.rank, 0, "totalplannedcommit is the Planned stage"); + assert_eq!( + planned.ambiguity, 2, + "it reads as two stages, hence ambiguous" + ); + + let committed = stage_match("", "commit_total").expect("commit_total should match"); + assert_eq!(committed.rank, 1); + assert_eq!(committed.family, planned.family, "same vocabulary family"); + + // the reversed phrasing resolves the other way, by the same rule + assert_eq!(stage_match("", "spent_of_planned").map(|h| h.rank), Some(2)); + } + + #[test] + fn stage_match_rejects_negations_and_derived_columns() { + // these all CONTAIN a stage word and would pass row-wise containment against their own + // predecessor, so the conjunction cannot catch them -- only the negation guard can + for name in [ + "unspent_balance", + "uncommitted_funds", + "unobligated", + "spend_variance", + "planned_actual_difference", + ] { + assert!( + stage_match("", name).is_none(), + "{name} denotes a complement or a difference, not a stage" + ); + } + // a plain stage column is of course still matched + assert!(stage_match("", "spentamt").is_some()); + } + + #[test] + fn containment_fraction_tolerates_float_noise_and_counts_violations() { + // exact equality on large values must not read as a violation + let big = vec![1e12, 2e12, 3e12]; + assert!((containment_fraction(&big, &big) - 1.0).abs() < f64::EPSILON); + + // 1 of 4 rows breaks the nesting + let up = vec![10.0, 10.0, 10.0, 10.0]; + let down = vec![1.0, 2.0, 3.0, 99.0]; + assert!((containment_fraction(&up, &down) - 0.75).abs() < 1e-12); + + // an empty pipeline is not a contained one + assert!((containment_fraction(&[], &[]) - 0.0).abs() < f64::EPSILON); + } + #[test] fn panel_title_escapes_markup_with_and_without_subtitle() { // a hostile column header must not reach plotly's markup renderer as live markup on diff --git a/tests/test_viz.rs b/tests/test_viz.rs index 151cd432d9..dc160e96d5 100644 --- a/tests/test_viz.rs +++ b/tests/test_viz.rs @@ -11895,6 +11895,228 @@ fn viz_smart_density_panel_hover_names_both_measures_and_the_row_count() { ); } +// A nested budget pipeline. Column names are deliberately GLUED (`totalplannedcommit`) to lock in +// the substring matching the funnel detector needs -- `field_name_tokens` yields one token here, +// so token-equality against "planned" would miss. Values repeat (a 40-value pool) so the columns +// stay below the near-unique threshold that would drop them from the correlation read. +fn pipeline_csv() -> String { + let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + let commit = planned * (i % 3) / 4; + let spent = commit * (i % 2) / 3; + rows.push_str(&format!("{planned},{commit},{spent}\n")); + } + rows +} + +#[test] +fn viz_smart_builds_pipeline_funnel_for_glued_stage_names() { + // issue #4222 ask 3. `totalplannedcommit` contains both "planned" (pos 5) and "commit" + // (pos 12); the lowest-position rule must resolve it to Planned, leaving `commitamt` as the + // Committed stage. If "commit" won instead, the two would collide and the funnel would be + // skipped as ambiguous -- on the very dataset shape the issue was filed against. + let wrk = Workdir::new("viz_smart_builds_pipeline_funnel_for_glued_stage_names"); + wrk.create_from_string("p.csv", &pipeline_csv()); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + html.contains(r#""type":"funnel""#), + "a nested planned/committed/spent table should earn a funnel panel; html: {html}" + ); + assert!( + html.contains("Pipeline funnel: totalplannedcommit"), + "the funnel title should lead with the upstream column; html: {html}" + ); + // stage order is vocabulary order, upstream-first -- a funnel trace draws index 0 at the TOP + assert!( + html.contains(r#""y":["Planned","Committed","Spent"]"#), + "stages must be fed upstream-first, or the funnel renders upside down; html: {html}" + ); +} + +#[test] +fn viz_smart_funnel_hover_reports_both_dollar_and_row_conversion() { + // At high concentration "42% of dollars committed" and "N of M projects committed anything" + // are both true and read as a contradiction, so neither may appear alone. + let wrk = Workdir::new("viz_smart_funnel_hover_reports_both_dollar_and_row_conversion"); + wrk.create_from_string("p.csv", &pipeline_csv()); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + // the dollar side is plotly's own textinfo, computed from the bar values so it cannot drift + assert!( + html.contains(r#""textinfo":"percent previous""#), + "stage-to-stage conversion must be labeled on the bands; html: {html}" + ); + // the row side rides in the hover, against a denominator named in the same breath + assert!( + html.contains("Rows reached:") && html.contains("complete cases)"), + "the hover must carry rows-reached and its denominator; html: {html}" + ); +} + +#[test] +fn viz_smart_funnel_declares_complete_case_denominator() { + // The funnel sums over the listwise-complete join, so its totals do NOT match `stats.sum`. + // Following `lorenz_caveat`, that is disclosed unconditionally rather than only when bad. + let wrk = Workdir::new("viz_smart_funnel_declares_complete_case_denominator"); + let mut rows = String::from("totalplannedcommit,commitamt,spentamt,othermeasure\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + let commit = planned * (i % 3) / 4; + let spent = commit * (i % 2) / 3; + // blank in 10% of rows, so the listwise join drops those rows from every stage + let other = if i % 10 == 0 { + String::new() + } else { + format!("{}", i % 17) + }; + rows.push_str(&format!("{planned},{commit},{spent},{other}\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + html.contains("complete cases (90% of rows)"), + "the funnel subtitle must state the complete-case denominator; html: {html}" + ); +} + +#[test] +fn viz_smart_funnel_includes_an_all_zero_stage() { + // A wholly-zero stage has cardinality 1, so the correlation pre-filter drops it and it never + // reaches the row-aligned columns. Losing it would silently shorten the pipeline and imply + // the last surviving stage ends the process, so it is rescued from the cached sign counts. + let wrk = Workdir::new("viz_smart_funnel_includes_an_all_zero_stage"); + let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + let commit = planned * (i % 3) / 4; + rows.push_str(&format!("{planned},{commit},0\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + html.contains(r#""y":["Planned","Committed","Spent"]"#), + "the nothing-spent-yet stage must still appear, at zero; html: {html}" + ); +} + +#[test] +fn viz_smart_funnel_flags_overrun_without_reordering_stages() { + // A downstream stage whose TOTAL outruns its predecessor is the finding, not a glitch: bar + // order stays vocabulary order (never sorted by value) and the subtitle names the inversion. + let wrk = Workdir::new("viz_smart_funnel_flags_overrun_without_reordering_stages"); + let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + // 3 rows in 300 (1%) blow through their plan by 100x -- under the 90% containment gate, + // but enough to dominate the committed total + let commit = if i % 100 == 7 { + planned * 100 + } else { + planned / 2 + }; + rows.push_str(&format!("{planned},{commit},0\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + html.contains("total exceeds"), + "an inverted stage total must be named in the subtitle; html: {html}" + ); + assert!( + html.contains(r#""y":["Planned","Committed","Spent"]"#), + "vocabulary order must survive an overrun; html: {html}" + ); +} + +#[test] +fn viz_smart_no_funnel_when_containment_is_violated() { + // Vocabulary alone is NOT enough: these two columns name distinct stages of one family, so + // only the row-wise containment gate can reject them. + let wrk = Workdir::new("viz_smart_no_funnel_when_containment_is_violated"); + let mut rows = String::from("plannedamt,spentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + // spent exceeds planned in 30% of rows -- well past FUNNEL_CONTAINMENT_MIN + let spent = if i % 10 < 3 { planned * 2 } else { planned / 2 }; + rows.push_str(&format!("{planned},{spent}\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + !html.contains("Pipeline funnel:"), + "columns that are not nested must not be drawn as a pipeline; html: {html}" + ); +} + +#[test] +fn viz_smart_no_funnel_for_unspent_complement_column() { + // `unspentamt` contains "spent" AND is perfectly nested inside `plannedamt`, so BOTH gates + // pass -- it is the one false-positive class the conjunction cannot catch, and the reason the + // negation guard exists. Read as a Spent stage it would invert the panel's meaning. + let wrk = Workdir::new("viz_smart_no_funnel_for_unspent_complement_column"); + let mut rows = String::from("plannedamt,unspentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + let unspent = planned / 2; + rows.push_str(&format!("{planned},{unspent}\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + !html.contains("Pipeline funnel:"), + "a complement column must not be read as its own stage; html: {html}" + ); +} + /// A dataset `viz smart` can actually profile: a low-cardinality dimension with repeated values /// (so it earns a frequency bar) plus a numeric measure with a spread (so it earns a box panel). fn cache_opts_csv() -> String { From c2e1122c74bf1ac9f371675b63cc3f6432f71455 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 00:35:54 +0800 Subject: [PATCH 02/15] deps: bump plotly funnel branch to 60a4ffc Picks up the funnel-specific `FunnelHoverInfo` enum, which replaces the generic `HoverInfo` on the Funnel trace and carries the `percent initial` / `percent previous` / `percent total` flags the generic one has no room for. No qsv change needed: the funnel panel sets `hover_template` plus a pre-rendered `hover_text_array` rather than `hover_info`, so the swapped field is untouched. Verified rather than assumed -- full viz suite re-run against the new rev. Co-Authored-By: Claude Opus 4.7 (1M context) --- Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aa38f74b08..597378b51d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5679,7 +5679,7 @@ dependencies = [ [[package]] name = "plotly" version = "0.14.1" -source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#667358fcfca838eafc0201ec4e7ffc3aede1f1d2" +source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#60a4ffc07830ce429de0498e4a7c83671486a298" dependencies = [ "askama", "async-trait", @@ -5702,7 +5702,7 @@ dependencies = [ [[package]] name = "plotly_derive" version = "0.14.1" -source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#667358fcfca838eafc0201ec4e7ffc3aede1f1d2" +source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#60a4ffc07830ce429de0498e4a7c83671486a298" dependencies = [ "darling 0.23.0", "proc-macro2", @@ -5713,7 +5713,7 @@ dependencies = [ [[package]] name = "plotly_static" version = "0.1.0" -source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#667358fcfca838eafc0201ec4e7ffc3aede1f1d2" +source = "git+https://github.com/dathere/plotly?branch=deps%2Fwebdriver-downloader-0.17%2Bfunnel#60a4ffc07830ce429de0498e4a7c83671486a298" dependencies = [ "anyhow", "base64", From 4042d590983f8bd8e30bf3a2151a4ded1206b776 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 00:42:07 +0800 Subject: [PATCH 03/15] viz smart: stop the all-zero stage rescue bypassing funnel validation Two defects, both in the rescue path that carries a wholly-zero stage the correlation pre-filter drops (`cardinality > 1`). Containment was SKIPPED across a rescued stage. The gate bailed on any pair where either side had no data vector, so `planned` -> all-zero `commit` -> non-nested `spent` skipped BOTH pairs and drew a funnel whose actual planned/spent relationship violates containment outright. A zero stage is now treated as the vector of zeros it is: a zero DOWNSTREAM is trivially contained in any non-negative upstream, while a zero UPSTREAM contains only zeros, so a positive downstream means a later stage recorded activity its predecessor never did -- exactly the nesting claim a funnel makes, so it is measured and can fail rather than being waved through. The subtitle's violation shares go through the same helper, so the number shown agrees with the gate that ran. The rescue also applied only type and map-column checks, skipping the route, aggregation, intensive-measure and identifier-name filters the main pass uses. An all-zero `spent_pct` or `orders_id` could therefore enter as a funnel amount stage that the main pass would have rejected. Both paths now share one `eligible_stage` closure; the duplication was the bug, so the fix is to have one copy rather than to patch the second. Two regression tests, both confirmed failing against 7736213. The existing all-zero-stage test still passes, so the headline nothing-spent-yet case is intact. Addresses roborev 3832 (2x Medium). Co-Authored-By: Claude Opus 4.7 (1M context) --- src/cmd/viz.rs | 63 ++++++++++++++++++++++++++++++++++++----------- tests/test_viz.rs | 56 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 15 deletions(-) diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index 45855efc12..99e2f0ece2 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -15611,6 +15611,35 @@ fn containment_fraction(upstream: &[f64], downstream: &[f64]) -> f64 { frac } +/// Containment for one consecutive stage pair, where either side may be a RESCUED ALL-ZERO stage +/// (carried as `None` because such a column never reaches the row-aligned read — see +/// `build_funnel_panel` step 4). +/// +/// The tempting shortcut is to skip any pair involving a zero stage, but that silently disables +/// the gate: with `planned` → all-zero `commit` → non-nested `spent`, BOTH pairs get skipped and +/// the funnel is drawn even though the real `planned`/`spent` relationship violates containment. +/// So a zero stage is treated as the vector of zeros it actually is: +/// +/// - zero DOWNSTREAM sits inside any non-negative upstream — trivially contained; +/// - zero UPSTREAM contains only zeros, so a positive downstream value means the process recorded a +/// later stage while its predecessor recorded nothing. That is precisely the nesting claim a +/// funnel makes, so it is measured and can fail the gate rather than being waved through. +fn stage_containment(columns: &[Vec], up: Option, down: Option) -> f64 { + match (up, down) { + (Some(u), Some(d)) => containment_fraction(&columns[u], &columns[d]), + (None, Some(d)) => { + let n = columns[d].len(); + if n == 0 { + return 0.0; + } + #[allow(clippy::cast_precision_loss)] + let frac = columns[d].iter().filter(|v| **v <= 0.0).count() as f64 / n as f64; + frac + }, + (Some(_) | None, None) => 1.0, + } +} + /// The caveat line beneath a funnel panel's title (issue #4222). /// /// Clause 1 is UNCONDITIONAL, following `lorenz_caveat`'s philosophy. The funnel's totals are @@ -21421,17 +21450,27 @@ impl<'a> SmartCtx<'a> { // 1. resolve eligible columns to stage hits. Filters mirror `is_inequality_candidate`: a // dictionary-declared Mean/Min/Max is intensive (a funnel of averages is nonsense), and // rate/ratio/index and id/code names are never pipeline amounts. + // ONE eligibility test, shared by the main pass and the all-zero rescue in step 4. + // Keeping it in a single place is load-bearing rather than tidy: while the rescue carried + // its own looser copy, an all-zero `spent_pct` or `orders_id` could enter as a stage that + // the main pass would have rejected outright. + let eligible_stage = |src: usize| -> bool { + let (Some(sem), Some(s)) = (self.col_sems.get(src), self.stats.get(src)) else { + return false; + }; + !self.is_map_col(src) + && matches!(sem.route, Route::Defer | Route::Measure) + && matches!(sem.agg, Some(Agg::Sum) | None) + && !is_intensive_measure(&sem.label, &s.field) + && !is_identifier_name(&sem.label, &s.field) + }; + let mut hits: Vec<(usize, FunnelHit)> = Vec::new(); for (pos, &src) in kept_indices.iter().enumerate() { let (Some(sem), Some(s)) = (self.col_sems.get(src), self.stats.get(src)) else { continue; }; - if self.is_map_col(src) - || !matches!(sem.route, Route::Defer | Route::Measure) - || !matches!(sem.agg, Some(Agg::Sum) | None) - || is_intensive_measure(&sem.label, &s.field) - || is_identifier_name(&sem.label, &s.field) - { + if !eligible_stage(src) { continue; } if let Some(hit) = stage_match(&sem.label, &s.field) { @@ -21496,7 +21535,7 @@ impl<'a> SmartCtx<'a> { for (src, s) in self.stats.iter().enumerate() { if kept_indices.contains(&src) || !matches!(s.r#type.as_str(), "Integer" | "Float") - || self.is_map_col(src) + || !eligible_stage(src) { continue; } @@ -21542,10 +21581,7 @@ impl<'a> SmartCtx<'a> { // 6. verify the order the names claimed. A rescued all-zero stage is trivially contained. for w in ordered.windows(2) { let [up, down] = w else { continue }; - let (Some(ui), Some(di)) = (up.1, down.1) else { - continue; - }; - let frac = containment_fraction(&columns[ui], &columns[di]); + let frac = stage_containment(columns, up.1, down.1); if frac < FUNNEL_CONTAINMENT_MIN { viz_note(&format!( "viz smart: pipeline funnel skipped \u{2014} {} is not contained in {} \ @@ -21593,10 +21629,7 @@ impl<'a> SmartCtx<'a> { violations.push(if k == 0 { 0.0 } else { - match (ordered[k - 1].1, *pos) { - (Some(ui), Some(di)) => 1.0 - containment_fraction(&columns[ui], &columns[di]), - _ => 0.0, - } + 1.0 - stage_containment(columns, ordered[k - 1].1, *pos) }); } diff --git a/tests/test_viz.rs b/tests/test_viz.rs index dc160e96d5..ae8420d5d6 100644 --- a/tests/test_viz.rs +++ b/tests/test_viz.rs @@ -12117,6 +12117,62 @@ fn viz_smart_no_funnel_for_unspent_complement_column() { ); } +#[test] +fn viz_smart_no_funnel_when_a_zero_stage_masks_a_containment_violation() { + // roborev 3832: an all-zero stage is carried without a data vector, and the containment gate + // used to SKIP any pair involving one. With planned -> all-zero commit -> non-nested spent + // that skipped BOTH pairs, so the funnel rendered even though spending exceeds the plan. + // A zero upstream contains only zeros, so a positive downstream must fail the gate. + let wrk = Workdir::new("viz_smart_no_funnel_when_a_zero_stage_masks_a_containment_violation"); + let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + // nothing committed anywhere, yet money was spent -- and spent beyond the plan + let spent = planned * 3; + rows.push_str(&format!("{planned},0,{spent}\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + !html.contains("Pipeline funnel:"), + "a zero stage must not let a downstream violation through; html: {html}" + ); +} + +#[test] +fn viz_smart_funnel_zero_stage_rescue_honors_the_eligibility_filters() { + // roborev 3832: the rescue applied only a type/map check, so an all-zero column the MAIN pass + // would reject -- here `spent_pct`, intensive by name -- could still be admitted as a stage. + // Both paths now share one eligibility test, so the funnel stops at Committed. + let wrk = Workdir::new("viz_smart_funnel_zero_stage_rescue_honors_the_eligibility_filters"); + let mut rows = String::from("totalplannedcommit,commitamt,spent_pct\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + let commit = planned * (i % 3) / 4; + rows.push_str(&format!("{planned},{commit},0\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + html.contains(r#""y":["Planned","Committed"]"#), + "an intensive all-zero column must not be rescued as a stage; html: {html}" + ); +} + /// A dataset `viz smart` can actually profile: a low-cardinality dimension with repeated values /// (so it earns a frequency bar) plus a numeric measure with a spread (so it earns a box panel). fn cache_opts_csv() -> String { From c1af099fdaa686baf6c19c7028578491610a82f3 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 00:53:04 +0800 Subject: [PATCH 04/15] viz smart: hold an all-zero funnel stage to exact containment The rescued all-zero-upstream case was measured against the global FUNNEL_CONTAINMENT_MIN, so a downstream stage active in up to a tenth of rows still passed the gate and rendered. That tolerance exists for one specific real-world failure mode: genuine change orders on a POPULATED upstream stage, where a few rows legitimately overrun their predecessor. An all-zero upstream is a different kind of claim -- the column recorded nothing anywhere -- so "90% contained" would mean up to 10% of rows show a later stage running while its predecessor never happened. That is not an overrun, it contradicts the nesting the funnel asserts, and one positive downstream value is enough to reject the pipeline. Implemented as `stage_pair_passes`, kept deliberately separate from `stage_containment`: the gate is strict, while the measurement stays honest so the subtitle can still report the true violation share instead of a flat 0%. One regression test -- 5% sparse spend under an all-zero commit, comfortably inside the old gate -- confirmed failing against 4042d59. The existing all-zero-stage test still passes, so the nothing-spent-yet case is intact. Addresses roborev 3838 (Medium). Co-Authored-By: Claude Opus 4.7 (1M context) --- src/cmd/viz.rs | 31 +++++++++++++++++++++++++++---- tests/test_viz.rs | 30 ++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 4 deletions(-) diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index 99e2f0ece2..ded180bc48 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -15622,8 +15622,8 @@ fn containment_fraction(upstream: &[f64], downstream: &[f64]) -> f64 { /// /// - zero DOWNSTREAM sits inside any non-negative upstream — trivially contained; /// - zero UPSTREAM contains only zeros, so a positive downstream value means the process recorded a -/// later stage while its predecessor recorded nothing. That is precisely the nesting claim a -/// funnel makes, so it is measured and can fail the gate rather than being waved through. +/// later stage while its predecessor recorded nothing. This function reports the honest share +/// (used by the subtitle); `stage_pair_passes` is what refuses to let ANY of it through. fn stage_containment(columns: &[Vec], up: Option, down: Option) -> f64 { match (up, down) { (Some(u), Some(d)) => containment_fraction(&columns[u], &columns[d]), @@ -15640,6 +15640,29 @@ fn stage_containment(columns: &[Vec], up: Option, down: Option], up: Option, down: Option) -> bool { + let frac = stage_containment(columns, up, down); + if up.is_none() && down.is_some() { + return frac >= 1.0; + } + frac >= FUNNEL_CONTAINMENT_MIN +} + /// The caveat line beneath a funnel panel's title (issue #4222). /// /// Clause 1 is UNCONDITIONAL, following `lorenz_caveat`'s philosophy. The funnel's totals are @@ -21581,8 +21604,8 @@ impl<'a> SmartCtx<'a> { // 6. verify the order the names claimed. A rescued all-zero stage is trivially contained. for w in ordered.windows(2) { let [up, down] = w else { continue }; - let frac = stage_containment(columns, up.1, down.1); - if frac < FUNNEL_CONTAINMENT_MIN { + if !stage_pair_passes(columns, up.1, down.1) { + let frac = stage_containment(columns, up.1, down.1); viz_note(&format!( "viz smart: pipeline funnel skipped \u{2014} {} is not contained in {} \ ({:.0}% of rows)", diff --git a/tests/test_viz.rs b/tests/test_viz.rs index ae8420d5d6..d06f6ed959 100644 --- a/tests/test_viz.rs +++ b/tests/test_viz.rs @@ -12146,6 +12146,36 @@ fn viz_smart_no_funnel_when_a_zero_stage_masks_a_containment_violation() { ); } +#[test] +fn viz_smart_no_funnel_when_a_zero_stage_is_followed_by_sparse_activity() { + // roborev 3838: an all-zero upstream was measured against the global 90% containment gate, so + // a downstream stage active in up to a tenth of rows still rendered. That tolerance exists for + // change orders on a POPULATED stage; an empty predecessor is a categorical claim, and any + // spend below a stage that recorded nothing contradicts it. 5% here -- inside the old gate. + let wrk = Workdir::new("viz_smart_no_funnel_when_a_zero_stage_is_followed_by_sparse_activity"); + let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); + for i in 0..300 { + let planned = ((i % 40) + 1) * 1000; + // nothing committed anywhere; 5% of rows nonetheless report spend (still <= planned, so + // only the zero-upstream rule can reject this) + let spent = if i % 20 == 0 { planned / 2 } else { 0 }; + rows.push_str(&format!("{planned},0,{spent}\n")); + } + wrk.create_from_string("p.csv", &rows); + + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html]) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + + let html = wrk.read_to_string("p.html").unwrap(); + assert!( + !html.contains("Pipeline funnel:"), + "spend below an empty stage must reject the pipeline, not be tolerated; html: {html}" + ); +} + #[test] fn viz_smart_funnel_zero_stage_rescue_honors_the_eligibility_filters() { // roborev 3832: the rescue applied only a type/map check, so an all-zero column the MAIN pass From abe974000c1bf1167469097ed9166d9fe5ba5745 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 01:07:38 +0800 Subject: [PATCH 05/15] viz: add a standalone `funnel` chart type `viz smart` can now detect a pipeline, but only the column-shaped kind (planned/committed/spent as three columns), and its doc comment explicitly declares the other shape out of scope: a pipeline encoded as ROWS, one row per stage. `viz funnel` is that shape. The two are complements rather than duplicates, and the split falls out of who knows what. The smart panel has to INFER both the stage order and the nesting, which is why it needs a vocabulary, a containment gate and a negation guard. Here the user has already answered both by naming the column and ordering the rows, so nothing is inferred: stage order is first-appearance order in the file, and no containment check applies, because an explicit `viz funnel` is a request rather than a detection. Input shape mirrors `viz pie` exactly -- `--x` = stage column, optional `--y` = value column, counting occurrences when omitted -- so it aggregates several rows per stage (the gallery example sums three acquisition channels per stage). Stages are never sorted by value, for the same reason the smart panel doesn't: a stage that outruns its predecessor is a finding, and sorting would hide it. A negative stage total is rejected outright rather than drawn. No axis titles. A funnel is cartesian, but plotly renders no visible value axis for it -- each band carries its own value and conversion label -- so an axis title would be dead config that never appears. Gallery gains a 46th figure beside `pie (donut)`, with `signup_funnel.csv` as a purpose-built fixture (force-added: `.gitignore` ignores `*.csv*` repo-wide and all 18 sibling gallery inputs are tracked the same way). The other `smart_*.html` artifacts were left untouched -- regenerating them produces only timestamp churn plus the known base64/window-id nondeterminism, and no existing gallery dataset yields a funnel. 3 tests (file order preserved, counting mode, negative rejected). Help regenerated via `--generate-help-md`. Co-Authored-By: Claude Opus 4.7 (1M context) --- docs/help/viz.md | 12 ++++++ examples/viz/gallery.html | 46 ++++++++++---------- examples/viz/gen_gallery.py | 7 +++ examples/viz/signup_funnel.csv | 16 +++++++ src/cmd/viz.rs | 79 ++++++++++++++++++++++++++++++++++ tests/test_viz.rs | 68 +++++++++++++++++++++++++++++ 6 files changed, 206 insertions(+), 22 deletions(-) create mode 100644 examples/viz/signup_funnel.csv diff --git a/docs/help/viz.md b/docs/help/viz.md index d62550cbec..c73091bcd5 100644 --- a/docs/help/viz.md +++ b/docs/help/viz.md @@ -51,6 +51,11 @@ violin Violin plot: a box plot plus a KDE density curve revealing the distribution's shape (modes, shoulders). Same inputs as box (--y = value column, optional --x = group column). pie Proportions. --x = label column, optional --y = value column. +funnel Stage-by-stage drop-off. --x = stage column, optional --y = value + column (counts stage occurrences when omitted). Stages keep the + order they first appear in the file, so the rows define the + pipeline; plotly labels each band with its conversion from the + previous stage. heatmap Color grid. Correlation matrix of numeric columns (default; an optional column subset via --cols), or a category x category pivot with --x/--y/--z. @@ -204,6 +209,12 @@ qsv viz violin data.csv --y measurement --x group -o violin.html qsv viz pie data.csv --x category --donut -o pie.html ``` +> Funnel of a pipeline whose stages are ROWS (stage column + amount column) + +```console +qsv viz funnel pipeline.csv --x stage --y amount -o funnel.html +``` + > Correlation heatmap over all numeric columns ```console @@ -324,6 +335,7 @@ qsv viz histogram [options] qsv viz box [options] qsv viz violin [options] qsv viz pie [options] +qsv viz funnel [options] qsv viz heatmap [options] qsv viz contour [options] qsv viz candlestick [options] diff --git a/examples/viz/gallery.html b/examples/viz/gallery.html index bc86442f98..ba13c9dbb6 100644 --- a/examples/viz/gallery.html +++ b/examples/viz/gallery.html @@ -32,7 +32,7 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

Every chart type produced by qsv viz, from the sample datasets in examples/viz/. Generated with the viz feature; each chart is fully interactive.

-
Jump to a chart45 charts + 3 data dictionaries
+
Jump to a chart46 charts + 3 data dictionaries
smart dashboard (--smarter, geospatial)One command, 13 auto-chosen panels — nearly every panel type at once on a synthetic catalog of Japanese earthquakes. Things the raw table hides but the dashboard makes obvious: depth_km is bimodal (two populations — shallow interplate quakes ~20 km and the deep Wadati-Benioff slab ~450 km — so --smarter draws a histogram, not a box that would average the peaks away); the points trace Japan's subduction arcs on the map; and a prefecture choropleth bins each quake into the GeoJSON region that contains it (point-in-polygon, no geocoding). Most of this catalog is offshore Pacific seismicity, so under the default 10 km snap cap the far-offshore quakes are dropped (287 of 417 here — the panel title reports it) and the on-land/near-coast prefectures are colored; raise --snap-max-dist to snap distant quakes to the nearest prefecture instead, or --no-snap to drop every offshore point. magnitude vs felt_reports is almost perfectly correlated (r=0.95); magnitude and felt_reports are right-skewed with flagged outliers; and the magnitude-over-time trend spikes during a September aftershock sequence. --bivariate adds an NMI association heatmap spanning every column type, not just the continuous-numeric ones the Pearson heatmap covers — it surfaces depth_km and felt_reports as strongly associated with occurrence_date (NMI=0.93 and 0.89), a temporal-clustering signal (the same September aftershock sequence) a Pearson matrix restricted to numeric pairs alone cannot express against a date column. Coordinate columns are shown on the map only, not re-charted as distributions. Rendered with the built-in plotly_dark theme.
qsv viz smart seismic_events.csv --smarter --bivariate --theme plotly_dark \
   --grid-cols 3 --geojson japan_prefectures.geojson -o smart_dashboard_smarter_geospatial.html
@@ -60,46 +60,47 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

violinRevenue distribution per region — a KDE density silhouette around an inner quartile box + mean line, revealing shape (modes, shoulders) a box hides. viz smart auto-picks this for columns in the bimodality ambiguity band (--violin auto).
qsv viz violin sales_sample.csv --y revenue --x region -o violin.html
pie (donut)Revenue share by product category.
qsv viz pie sales_sample.csv --x product_category --y revenue \
   --donut -o pie_donut.html
-
heatmap (correlation)Pearson correlation matrix over numeric columns.
qsv viz heatmap sales_sample.csv -o heatmap_correlation.html
+
funnelStage-by-stage drop-off for a signup pipeline encoded as rows (one row per stage per channel, summed per stage). Stages keep the order they first appear in the file, so the data defines the pipeline and nothing is inferred; each band is labelled with its conversion from the previous stage. This is the row-shaped counterpart to the column-shaped pipeline viz smart detects automatically.
qsv viz funnel signup_funnel.csv --x stage --y users -o funnel.html
+
heatmap (correlation)Pearson correlation matrix over numeric columns.
qsv viz heatmap sales_sample.csv -o heatmap_correlation.html
scatter (correlated pair)The most strongly correlated numeric pair (discount_pct vs profit_margin_pct, r=-0.99). viz smart auto-adds this as a drill-down beside the correlation heatmap.
qsv viz scatter sales_sample.csv --x discount_pct --y profit_margin_pct \
-  -o scatter_correlated_pair.html
+ -o scatter_correlated_pair.html
contour2D density of units sold vs revenue (binned into a 20x20 grid). viz smart uses this instead of the pair scatter for large datasets, where a scatter would overplot.
qsv viz contour sales_sample.csv --x units_sold --y revenue --bins 20 \
-  -o contour.html
+ -o contour.html
heatmap (pivot)Region x category grid of revenue.
qsv viz heatmap sales_sample.csv --x region --y product_category \
-  --z revenue -o heatmap_pivot.html
+ --z revenue -o heatmap_pivot.html
candlestickOHLC price action.
qsv viz candlestick stock_prices.csv --x date --ohlc-open open \
-  --high high --low low --close close -o candlestick.html
+ --high high --low low --close close -o candlestick.html
ohlcOpen-high-low-close bars.
qsv viz ohlc stock_prices.csv --x date --ohlc-open open --high high \
-  --low low --close close -o ohlc.html
+ --low low --close close -o ohlc.html
radarMulti-axis brand comparison (per-axis mean per series).
qsv viz radar product_ratings.csv --cols battery,camera,performance,display,value,design \
-  --series brand -o radar.html
+ --series brand -o radar.html
sankeyWeb session funnel (duplicate edges aggregated).
qsv viz sankey web_flows.csv --source source --target target \
-  --value sessions -o sankey.html
+ --value sessions -o sankey.html
treemapPart-to-whole spend by plan then region, sized by summed monthly_spend. Rounded tiles + white separators come from the treemap-specific marker; non-numeric/negative measure cells are rejected so proportions can't silently misstate.
qsv viz treemap customer_spend.csv --cols plan,region --value monthly_spend \
-  --agg sum -o treemap.html
+ --agg sum -o treemap.html
sunburstThree-level hierarchy (region -> product_category -> payment_method) as concentric rings, sized by row count; inner rings are parents, outer rings their children. Opens at two rings (maxdepth) so labels stay legible instead of crowding a ~100-sector outer ring; click a sector to drill in and the deeper ring's labels grow back. Hover always shows value + percent.
qsv viz sunburst sales_sample.csv --cols region,product_category,payment_method \
-  -o sunburst.html
+ -o sunburst.html
icicleSame three-level hierarchy (region -> product_category -> payment_method) as a rectangular icicle: parents on the left, children fanning right, each rectangle sized by row count. The flat left-to-right layout keeps deep labels readable where a sunburst's outer ring would crowd; click a rectangle to zoom into that branch. Hover shows label + value + percent of parent.
qsv viz icicle sales_sample.csv --cols region,product_category,payment_method \
-  -o icicle.html
+ -o icicle.html
splomScatter-plot matrix of four numeric columns (units_sold, revenue, discount_pct, profit_margin_pct): every pairwise scatter in an N x N grid with shared axes, so correlation structure is legible at a glance. This is a standalone chart command — the viz smart dashboard has no SPLOM panel; it covers the same ground with its correlation heatmap plus the strongest-pair scatter and 3D scatter drill-downs.
qsv viz splom sales_sample.csv --cols units_sold,revenue,discount_pct,profit_margin_pct \
-  -o splom.html
+ -o splom.html
parcatsParallel-categories flow over three categorical columns (region -> product_category -> payment_method): each ribbon is a category combination, sized by how many rows share it, so co-occurrence between the dimensions is visible without implying a part-to-whole nesting. Ribbons are colored by their first-axis category and bundled (like a Sankey), and each axis opens ordered by frequency with a ⇅ category order toggle that flips every axis between frequency and alphabetical order. viz smart auto-adds this panel for 3-4 associated many-to-many categoricals (and suppresses the hierarchy on the same columns); genuine rollup trees still auto-select a treemap/sunburst.
qsv viz parcats sales_sample.csv --cols region,product_category,payment_method \
-  -o parcats.html
+ -o parcats.html
mapEarthquake points on token-free OpenStreetMap tiles; marker color = magnitude, size = depth.
qsv viz map quakes.csv --lat lat --lon lon --color magnitude \
-  --size depth_km -o map.html
+ --size depth_km -o map.html
map (density)DensityMap heatmap of the same points on a light Carto basemap, weighted by magnitude (via --color) so stronger quakes glow hotter — hovering a point shows its magnitude, not just the coordinates.
qsv viz map quakes.csv --lat lat --lon lon --density --color magnitude \
-  --style carto-positron -o map_density.html
+ --style carto-positron -o map_density.html
geoSame earthquakes on an offline natural-earth projection (no tiles, no token); marker color = magnitude. viz smart auto-uses this projection for global-extent coordinates.
qsv viz geo quakes.csv --lat lat --lon lon --color magnitude \
-  --projection natural-earth -o geo.html
+ --projection natural-earth -o geo.html
geo (animated slider)An animated point map: --slider steps through the region column, revealing the world's seismicity continent by continent, each region in its own color via --series. With --slider-cumulative the points accumulate as the animation plays (Play/Pause + a scrub slider). Unlike the MapLibre tile map, scattergeo animates natively, so --slider is supported on viz geo — use it instead of viz map for animated point maps.
qsv viz geo quakes.csv --lat lat --lon lon --slider region --series region \
-  --slider-cumulative --projection natural-earth -o geo_animated_slider.html
+ --slider-cumulative --projection natural-earth -o geo_animated_slider.html
choroplethFilled-region map coloring countries by GDP, matched by ISO-3 code on a token-free projection basemap. Use --location-mode usa-states / country-names / geojson-id for other region keys, --map for a MapLibre tile basemap, or --geocode to derive codes from lat/lon or place names.
qsv viz choropleth country_stats.csv --locations iso3 --value gdp_usd_tn \
-  --color-scale viridis -o choropleth.html
+ --color-scale viridis -o choropleth.html
choropleth (US states)Same chart, --location-mode usa-states: state codes matched to Plotly's built-in US-state geometry on the token-free albers-usa projection (CONUS + Alaska/Hawaii insets) — no GeoJSON needed. States are colored by renewable-electricity share.
qsv viz choropleth us_state_stats.csv --locations state --value renewable_electricity_pct \
-  --location-mode usa-states -o choropleth_us_states.html
+ --location-mode usa-states -o choropleth_us_states.html
choropleth (MapLibre + GeoJSON)--map draws the filled regions on an interactive MapLibre tile basemap (token-free carto-positron) instead of a projection. The regions come from a custom GeoJSON (--geojson local file or URL) matched to the data by --feature-id-key — here the near-rectangular western states, colored by installed wind capacity. The view auto-centers and zooms to the GeoJSON extent (shown full-width so the computed zoom frames the regions as the CLI does — a tile map's zoom is fixed, so a narrow grid cell would crop it).
qsv viz choropleth western_states.csv --locations state --value wind_capacity_gw \
   --geojson western_states.geojson --feature-id-key id --map --style carto-positron \
-  -o choropleth_maplibre_geojson.html
+ -o choropleth_maplibre_geojson.html
smart dashboard (time-series)Auto dashboard for stock_prices: a time-series trend panel (the first numeric column over the date) leads; the strongest-correlated pair drill-down (open vs close) is shown as a static scatter — that relationship is a near-perfect line whose 2-D shape doesn't evolve, so the judicious animation gate withholds the (uninformative) animated version — alongside box-plot summaries of the OHLC columns.
qsv viz smart stock_prices.csv --max-charts 8 -o smart_dashboard_time_series.html
smart dashboard (per-US-state choropleth)`viz smart` reverse-geocodes each point; because every city resolves to a US state, it adds a per-US-state choropleth (cities-per-state, albers-usa) beside the point map, alongside the usual box plots, frequency bars and the strongest-pair scatter. (The point map's spatial extent caption counts the data's bounding-box corners, which spill into neighboring countries and ocean — the choropleth instead resolves each city to its own state.) No flags, no LLM — the state fill is derived purely from the lat/lon columns.
qsv viz smart us_cities.csv -o smart_dashboard_per_us_state_choropleth.html
smart dashboard (--dictionary infer, treemap)Auto dashboard for customer_spend with a describegpt-inferred Data Dictionary (--dictionary infer) guiding panel selection & field labels. Two categorical dimensions (plan, region) form a shallow part-to-whole hierarchy, auto-rendered as a TREEMAP (area = size). Requires a local LLM; the committed HTML is reused on regen.
qsv viz smart customer_spend.csv --dictionary infer -o smart_dashboard_dictionary_infer_treemap.html
@@ -123,7 +124,7 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

--feature-id-key properties.nameBoston 311 (2025) smart visual data dictionary screenshot diff --git a/examples/viz/gen_gallery.py b/examples/viz/gen_gallery.py index 47a42c49e3..424e336312 100755 --- a/examples/viz/gen_gallery.py +++ b/examples/viz/gen_gallery.py @@ -510,6 +510,13 @@ False, ["violin", "sales_sample.csv", "--y", "revenue", "--x", "region"]), ("pie (donut)", "Revenue share by product category.", False, ["pie", "sales_sample.csv", "--x", "product_category", "--y", "revenue", "--donut"]), + ("funnel", + "Stage-by-stage drop-off for a signup pipeline encoded as rows (one row per stage " + "per channel, summed per stage). Stages keep the order they first appear in the file, so the " + "data defines the pipeline and nothing is inferred; each band is labelled with its conversion " + "from the previous stage. This is the row-shaped counterpart to the column-shaped pipeline " + "viz smart detects automatically.", + False, ["funnel", "signup_funnel.csv", "--x", "stage", "--y", "users"]), ("heatmap (correlation)", "Pearson correlation matrix over numeric columns.", False, ["heatmap", "sales_sample.csv"]), ("scatter (correlated pair)", diff --git a/examples/viz/signup_funnel.csv b/examples/viz/signup_funnel.csv new file mode 100644 index 0000000000..b871cdaf22 --- /dev/null +++ b/examples/viz/signup_funnel.csv @@ -0,0 +1,16 @@ +stage,channel,users +Visited,organic,31240 +Visited,paid,16970 +Visited,referral,8815 +Signed up,organic,8410 +Signed up,paid,4570 +Signed up,referral,3120 +Activated,organic,4980 +Activated,paid,1935 +Activated,referral,1702 +Subscribed,organic,1460 +Subscribed,paid,402 +Subscribed,referral,588 +Renewed,organic,742 +Renewed,paid,119 +Renewed,referral,304 diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index ded180bc48..4c97cd274e 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -37,6 +37,11 @@ Chart types (subcommands): distribution's shape (modes, shoulders). Same inputs as box (--y = value column, optional --x = group column). pie Proportions. --x = label column, optional --y = value column. + funnel Stage-by-stage drop-off. --x = stage column, optional --y = value + column (counts stage occurrences when omitted). Stages keep the + order they first appear in the file, so the rows define the + pipeline; plotly labels each band with its conversion from the + previous stage. heatmap Color grid. Correlation matrix of numeric columns (default; an optional column subset via --cols), or a category x category pivot with --x/--y/--z. @@ -152,6 +157,9 @@ Examples: # Pie chart of category proportions (counts), as a donut qsv viz pie data.csv --x category --donut -o pie.html + # Funnel of a pipeline whose stages are ROWS (stage column + amount column) + qsv viz funnel pipeline.csv --x stage --y amount -o funnel.html + # Correlation heatmap over all numeric columns qsv viz heatmap data.csv -o corr.html @@ -216,6 +224,7 @@ Usage: qsv viz box [options] qsv viz violin [options] qsv viz pie [options] + qsv viz funnel [options] qsv viz heatmap [options] qsv viz contour [options] qsv viz candlestick [options] @@ -1433,6 +1442,7 @@ struct Args { cmd_box: bool, cmd_violin: bool, cmd_pie: bool, + cmd_funnel: bool, cmd_heatmap: bool, cmd_contour: bool, cmd_candlestick: bool, @@ -1967,6 +1977,13 @@ fn build_plot( plot.add_trace(build_pie(args)?); (None, None) }, + // A funnel is cartesian, but plotly draws no visible value axis for it -- each band + // carries its own value and conversion label instead. An axis title here would be dead + // config that never renders, so it gets none, like the domain-based traces above. + Chart::Funnel => { + plot.add_trace(build_funnel_chart(args)?); + (None, None) + }, Chart::Sankey => { let (trace, menu) = build_sankey(args)?; plot.add_trace(trace); @@ -2038,6 +2055,7 @@ enum Chart { Box, Violin, Pie, + Funnel, Heatmap, Contour, Candlestick, @@ -2071,6 +2089,8 @@ fn chart_kind(args: &Args) -> Chart { Chart::Violin } else if args.cmd_pie { Chart::Pie + } else if args.cmd_funnel { + Chart::Funnel } else if args.cmd_heatmap { Chart::Heatmap } else if args.cmd_contour { @@ -7365,6 +7385,65 @@ fn build_pie(args: &Args) -> CliResult> { Ok(pie) } +/// `viz funnel`: a stage-by-stage drop-off chart. Sums `--y` per `--x` stage, or counts stage +/// occurrences when `--y` is omitted — the same input shape as `viz pie`, and read the same way. +/// +/// The two funnels in qsv are complements, not duplicates. `viz smart`'s panel detects a pipeline +/// spread across SEPARATE COLUMNS (planned/committed/spent) and has to infer both the order and +/// the nesting. This one takes a pipeline encoded as ROWS — one row per stage — which the smart +/// path explicitly declines to guess at. Here the user has already answered both questions, so +/// there is nothing to infer: **stage order is first-appearance order in the file**, and no +/// containment check applies, because an explicit `viz funnel` is a request, not a detection. +/// +/// Stages are NOT sorted by value. A stage that outruns its predecessor is a finding the reader +/// needs to see, and sorting would quietly hide it. +fn build_funnel_chart(args: &Args) -> CliResult> { + let (mut rdr, headers, nh) = reader_and_headers(args)?; + let stage_idx = resolve_one(args.flag_x.as_ref(), &headers, nh, "x")?; + let value_idx = match args.flag_y.as_ref() { + Some(s) => Some(resolve_one(Some(s), &headers, nh, "y")?), + None => None, + }; + + let mut order: Vec = Vec::new(); + let mut acc: HashMap = HashMap::new(); + let mut record = csv::ByteRecord::new(); + while rdr.read_byte_record(&mut record)? { + let stage = cell_to_string(record.get(stage_idx)); + if stage.is_empty() { + continue; + } + let inc = match value_idx { + Some(i) => match parse_f64(record.get(i)) { + Some(v) => v, + None => continue, + }, + None => 1.0, + }; + if let Some(v) = acc.get_mut(&stage) { + *v += inc; + } else { + order.push(stage.clone()); + acc.insert(stage, inc); + } + } + if order.is_empty() { + return fail_clierror!("No data found for the funnel chart."); + } + let values: Vec = order.iter().map(|s| acc[s]).collect(); + if values.iter().any(|v| *v < 0.0) { + return fail_clierror!( + "A funnel cannot represent a negative stage total; check the --y column." + ); + } + + // plotly draws index 0 at the TOP and works downward, so first-appearance order is fed as-is. + Ok(Funnel::new(values, order) + .orientation(Orientation::Horizontal) + .text_info("value+percent previous") + .connector(FunnelConnector::new().visible(true))) +} + /// Non-fatal advisory: a pie of many NEAR-EQUAL slices is the worst case for a pie chart — humans /// compare angles/areas poorly, so similar slices are nearly indistinguishable and a bar chart is /// strictly easier to read. Measured by the coefficient of variation (stddev / mean) of the slice diff --git a/tests/test_viz.rs b/tests/test_viz.rs index d06f6ed959..fc0820c228 100644 --- a/tests/test_viz.rs +++ b/tests/test_viz.rs @@ -6853,6 +6853,74 @@ fn viz_contour_hover_names_both_measures_and_the_row_count() { ); } +fn funnel_stages(wrk: &Workdir) { + wrk.create_from_string( + "stages.csv", + "stage,amount\nVisited,48210\nSignedup,12980\nActivated,7412\nSubscribed,2104\nRenewed,\ + 861\n", + ); +} + +#[test] +fn viz_funnel_keeps_file_order_and_labels_conversion() { + // `viz funnel` takes a pipeline encoded as ROWS, which `viz smart`'s column-based detector + // explicitly declines to guess at. Order is first-appearance order in the file -- the user + // has already answered the question the smart path has to infer -- and is never sorted by + // value, so a stage that outruns its predecessor stays visible. + let wrk = Workdir::new("viz_funnel_keeps_file_order_and_labels_conversion"); + funnel_stages(&wrk); + + let mut cmd = wrk.command("viz"); + cmd.args(["funnel", "stages.csv", "--x", "stage", "--y", "amount"]); + let out = wrk.output(&mut cmd); + assert!(out.status.success()); + + let html = String::from_utf8_lossy(&out.stdout); + assert!(html.contains(r#""type":"funnel""#), "html: {html}"); + assert!( + html.contains(r#""y":["Visited","SignedUp","Activated","Subscribed","Renewed"]"#) + || html.contains(r#""y":["Visited","Signedup","Activated","Subscribed","Renewed"]"#), + "stages must keep file order, unsorted; html: {html}" + ); + assert!( + html.contains(r#""textinfo":"value+percent previous""#), + "each band should carry its value and conversion; html: {html}" + ); +} + +#[test] +fn viz_funnel_counts_stage_rows_when_no_value_column() { + // --y omitted counts occurrences per stage, mirroring `viz pie`'s behaviour + let wrk = Workdir::new("viz_funnel_counts_stage_rows_when_no_value_column"); + wrk.create_from_string( + "ev.csv", + "stage\nVisited\nVisited\nVisited\nSignedup\nSignedup\nActivated\n", + ); + + let mut cmd = wrk.command("viz"); + cmd.args(["funnel", "ev.csv", "--x", "stage"]); + let out = wrk.output(&mut cmd); + assert!(out.status.success()); + + let html = String::from_utf8_lossy(&out.stdout); + assert!( + html.contains(r#""x":[3.0,2.0,1.0]"#) || html.contains(r#""x":[3,2,1]"#), + "stage occurrences should be counted; html: {html}" + ); +} + +#[test] +fn viz_funnel_rejects_a_negative_stage_total() { + // a negative band is not something a funnel can represent, so this fails loudly rather than + // drawing a nonsense chart + let wrk = Workdir::new("viz_funnel_rejects_a_negative_stage_total"); + wrk.create_from_string("neg.csv", "stage,amount\nVisited,100\nRefunded,-40\n"); + + let mut cmd = wrk.command("viz"); + cmd.args(["funnel", "neg.csv", "--x", "stage", "--y", "amount"]); + wrk.assert_err(&mut cmd); +} + #[test] fn viz_contour_non_numeric_errors() { let wrk = Workdir::new("viz_contour_non_numeric_errors"); From 73c0f7ddefe6a03fd1aa9dbe944f21a8438077c5 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 01:22:29 +0800 Subject: [PATCH 06/15] viz smart: stop greedy stage words matching unrelated columns Checking whether any gallery dataset triggers the funnel panel turned up a shipped false positive instead. `nyc_311` carries `X Coordinate (State Plane)` -- "State Plane" contains a bare "plan" -- and on a table that also holds a genuine spend column that renders as: Pipeline funnel: X Coordinate (State Plane) -> spent_total Reproduced end to end before fixing, and gone after. This is the `ratio`-inside-`duration` bug again, in the very code whose comment claimed the vocabulary/containment conjunction prevents it. The conjunction is real but weaker than that comment implied: it demands a second column at a different rank, and any table with a real `spent` column hands that over for free. So a greedy word is dangerous even WITH the conjunction, and the comment now says so, citing this case rather than reasoning in the abstract. Bare "plan" is dropped. It also matches "plant", "floorplan" and "airplane", while adding almost nothing: "planned" already covers the glued `totalplannedcommit` case that substring matching exists for, and budget / appropriat / authoriz / estimated / proposed cover the stage otherwise. The remaining greedy words keep their coverage but get their collisions named in FUNNEL_NON_STAGE_MARKERS: a review or overview count is not an impressions stage, a contractor count is not a commitment, a wholesale price is not a conversion, a lead time is not a lead, and replaced units are not placed orders. One unit test over the collision set, confirmed failing when grafted onto the pre-fix vocabulary, plus assertions that the genuine stage words still resolve. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/cmd/viz.rs | 72 +++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 66 insertions(+), 6 deletions(-) diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index 4c97cd274e..5e6177c099 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -15506,20 +15506,30 @@ struct FunnelFamily { /// single token "totalplannedcommit" and a token-equality test against "planned" misses entirely. /// /// Substring matching is what burned `is_intensive_measure` (where "ratio" matched the whole -/// `-ration` word family), so read why it is safe here: a stage word alone NEVER produces a panel. -/// A spurious "ship" inside `township` can only reach the dashboard if a second column -/// independently matches a DIFFERENT rank of the SAME family and the columns are row-wise nested -/// in that order (`FUNNEL_CONTAINMENT_MIN`). `is_intensive_measure` had no such second gate; this -/// does, and the conjunction is the entire safety argument. +/// `-ration` word family), so the conjunction below matters: a stage word alone never produces a +/// panel, because a second column must independently match a DIFFERENT rank of the SAME family +/// and the two must be row-wise nested in that order (`FUNNEL_CONTAINMENT_MIN`). +/// +/// That is a real constraint but NOT a sufficient one, and the distinction is worth stating +/// plainly because assuming otherwise already shipped one false positive: a table holding a +/// genuine `spent` column supplies the second rank for free, so any greedy word paired with it +/// yields a funnel. `X Coordinate (State Plane)` matched a bare "plan" and produced +/// "Pipeline funnel: X Coordinate (State Plane) -> spent_total". +/// +/// So the vocabulary carries the real burden: prefer words that are not substrings of common +/// unrelated nouns, and name the ones that are in `FUNNEL_NON_STAGE_MARKERS`. const FUNNEL_FAMILIES: &[FunnelFamily] = &[ FunnelFamily { name: "budget", stages: &[ FunnelStage { name: "Planned", + // NB: bare "plan" is deliberately absent -- it matches "State Plane", + // "plant", "floorplan" and "airplane". "planned" covers the glued + // `totalplannedcommit` case that motivated substring matching, and the + // remaining words cover the stage without that collision surface. words: &[ "planned", - "plan", "budget", "appropriat", "authoriz", @@ -15586,6 +15596,7 @@ const FUNNEL_FAMILIES: &[FunnelFamily] = &[ /// the panel's meaning. Small and closed by construction: every entry is either an `un-` negation /// or an explicit difference/residual word. const FUNNEL_NON_STAGE_MARKERS: &[&str] = &[ + // complements and derived differences "unspent", "uncommitted", "unplanned", @@ -15600,6 +15611,21 @@ const FUNNEL_NON_STAGE_MARKERS: &[&str] = &[ "difference", "delta", "balance", + // COLLISIONS: ordinary words that merely CONTAIN a stage word. A review count is not an + // impressions stage and a contractor count is not a commitment, but "view" and "contract" + // match them, and a table that also holds a genuine spend or purchase column supplies the + // second rank the conjunction asks for -- so these need naming outright. + "review", + "overview", + "interview", + "contractor", + "wholesale", + "resale", + "lead time", + "lead_time", + "leadtime", + "replaced", + "displaced", ]; /// Minimum share of complete-case rows that must satisfy `stage[k+1] <= stage[k]` for a pair of @@ -30860,6 +30886,40 @@ mod tests { assert!(stage_match("", "spentamt").is_some()); } + #[test] + fn stage_match_rejects_words_that_merely_contain_a_stage_word() { + // A shipped false positive: `X Coordinate (State Plane)` matched a bare "plan" and, paired + // with a genuine `spent_total`, produced "Pipeline funnel: X Coordinate (State Plane) -> + // spent_total". The conjunction did not save it, because a real table supplies the second + // rank for free -- so the vocabulary itself has to be non-greedy. + for name in [ + "X Coordinate (State Plane)", + "Y Coordinate (State Plane)", + "plant_capacity", + "floorplan_area", + // ordinary words that merely contain a stage word, caught by the collision guard + "review_count", + "overview_score", + "contractor_count", + "wholesale_price", + "lead_time_days", + "replaced_units", + ] { + assert!( + stage_match("", name).is_none(), + "{name} merely contains a stage word; it is not a pipeline stage" + ); + } + + // the real stage words still resolve, including the glued case substrings exist for + assert_eq!( + stage_match("", "totalplannedcommit").map(|h| h.rank), + Some(0) + ); + assert_eq!(stage_match("", "budget_total").map(|h| h.rank), Some(0)); + assert_eq!(stage_match("", "spent_total").map(|h| h.rank), Some(2)); + } + #[test] fn containment_fraction_tolerates_float_noise_and_counts_violations() { // exact equality on large values must not read as a violation From 9a42462d8c900e573091b4d2dc40eddd9780880a Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 07:29:56 +0800 Subject: [PATCH 07/15] viz gallery: add the real NYC Capital Projects dashboard Adds the dataset the whole #4222 review series was filed against -- 12,587 capital projects, sourced from Checkbook NYC via NYC Open Data -- as a `--smarter` gallery figure, and it earns its place twice. What it shows. Its money columns are both extremely concentrated (Gini 0.93/0.96) and heavily zero-inflated, so the Lorenz panels read "flat run = 60% zeros, not small values". No existing gallery figure exercised that clause: cms_medicare has no zero inflation, so it only ever showed the unit caveat. This is the case the caveat was written for, at 0.96 rather than 0.65. What it does NOT show, deliberately: a pipeline funnel. The columns are named planned / committed / spent and match the stage vocabulary, but the values are not nested -- spent totals $81.0B against committed $28.4B (2.9x), and spent exceeds committed on 46% of rows. The official column descriptions explain why: `totalplannedcommit` is allocated in the Capital Commitment Plan while `commit_total` and `spent_total` are sums within the City's budget -- three independent aggregates on different bases, not stages of one nesting. So the containment gate declines and says so: viz smart: pipeline funnel skipped -- commit_total is not contained in totalplannedcommit (80% of rows) That is the gate doing exactly the job it exists for, on the dataset whose issue proposed the funnel in the first place. The vocabulary says pipeline and the data says otherwise, which is the strongest argument available for not having built detection on names alone. The threshold was deliberately NOT relaxed to force the panel: doing so would assert a nesting the source data contradicts. `nyc_capital_projects.csv` is force-added, as `.gitignore` ignores `*.csv*` repo-wide and all sibling gallery inputs are tracked the same way. The other `smart_*.html` artifacts are untouched -- regenerating them yields only timestamp churn plus the known base64/window-id nondeterminism. An unrelated windows-sys bump that a non-`--locked` build had written into Cargo.lock was reverted rather than carried along. Co-Authored-By: Claude Opus 4.7 (1M context) --- examples/viz/gallery.html | 71 +- examples/viz/gen_gallery.py | 16 + examples/viz/nyc_capital_projects.csv | 12588 ++++++++++++++++++++++++ examples/viz/smart_cpdb.html | 758 ++ 4 files changed, 13398 insertions(+), 35 deletions(-) create mode 100644 examples/viz/nyc_capital_projects.csv create mode 100644 examples/viz/smart_cpdb.html diff --git a/examples/viz/gallery.html b/examples/viz/gallery.html index ba13c9dbb6..9f7be736d2 100644 --- a/examples/viz/gallery.html +++ b/examples/viz/gallery.html @@ -32,7 +32,7 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

Every chart type produced by qsv viz, from the sample datasets in examples/viz/. Generated with the viz feature; each chart is fully interactive.

-
Jump to a chart46 charts + 3 data dictionaries
+
Jump to a chart47 charts + 3 data dictionaries
smart dashboard (--smarter, geospatial)One command, 13 auto-chosen panels — nearly every panel type at once on a synthetic catalog of Japanese earthquakes. Things the raw table hides but the dashboard makes obvious: depth_km is bimodal (two populations — shallow interplate quakes ~20 km and the deep Wadati-Benioff slab ~450 km — so --smarter draws a histogram, not a box that would average the peaks away); the points trace Japan's subduction arcs on the map; and a prefecture choropleth bins each quake into the GeoJSON region that contains it (point-in-polygon, no geocoding). Most of this catalog is offshore Pacific seismicity, so under the default 10 km snap cap the far-offshore quakes are dropped (287 of 417 here — the panel title reports it) and the on-land/near-coast prefectures are colored; raise --snap-max-dist to snap distant quakes to the nearest prefecture instead, or --no-snap to drop every offshore point. magnitude vs felt_reports is almost perfectly correlated (r=0.95); magnitude and felt_reports are right-skewed with flagged outliers; and the magnitude-over-time trend spikes during a September aftershock sequence. --bivariate adds an NMI association heatmap spanning every column type, not just the continuous-numeric ones the Pearson heatmap covers — it surfaces depth_km and felt_reports as strongly associated with occurrence_date (NMI=0.93 and 0.89), a temporal-clustering signal (the same September aftershock sequence) a Pearson matrix restricted to numeric pairs alone cannot express against a date column. Coordinate columns are shown on the map only, not re-charted as distributions. Rendered with the built-in plotly_dark theme.
qsv viz smart seismic_events.csv --smarter --bivariate --theme plotly_dark \
   --grid-cols 3 --geojson japan_prefectures.geojson -o smart_dashboard_smarter_geospatial.html
@@ -43,64 +43,65 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

-o smart_dashboard_kpi_gauges_target_delta.html
smart dashboard (--smarter)Same auto-profiler with `--smarter`, which runs `qsv moarstats --advanced` itself to enrich the stats cache in one step: the bimodal monthly_spend column renders as a histogram (a box plot would hide its two peaks), and the skewed account_age_days box is annotated with its skew direction and outlier share.
qsv viz smart customer_spend.csv --smarter --max-charts 8 -o smart_dashboard_smarter.html
smart dashboard (--smarter, Gini/Lorenz inequality + log-skew boxes)Medicare payments to individual practitioners (CMS — a 30k sample), with medical_payment and total_patients per provider. These are additive amounts across comparable units, so --smarter recognizes them as inequality measures and adds a Lorenz curve for each (Gini 0.65 / 0.61) — the further the curve bows below the diagonal, the more concentrated the payments. The distribution boxes are skew-aware: a heavily right-skewed money column would squash a linear box into a sliver against its largest values, so viz smart draws it on a log axis instead, keeping the median and quartiles legible.
qsv viz smart cms_medicare_providers.csv --smarter -o smart_dashboard_smarter_gini_lorenz_inequality_log_skew_boxes.html
+
smart dashboard (--smarter, zero-inflated capital pipeline)NYC Capital Projects Database (12,587 projects, sourced from Checkbook NYC), the dataset this dashboard's inequality work was designed against. Its money columns are both extremely concentrated (Gini 0.93–0.96) and heavily zero-inflated, which the Lorenz panels state outright: flat run = 60% zeros, not small values. That long flat opening run is not a mass of small projects — it is the projects with nothing committed or spent yet, a funding-pipeline stage rather than a have-not population. Every Lorenz panel also carries the unit caveat, because a Gini across units as unlike a subway extension and a playground resurfacing is close to tautological and must not be read as inequity.

Note what is absent: no pipeline funnel. The column names look like planned → committed → spent, but the values are not nested (spent totals 2.9× committed — they are independent sums on different bases), so the containment gate declines and says so on stderr rather than drawing a funnel the data does not support.
qsv viz smart nyc_capital_projects.csv --smarter -o smart_dashboard_smarter_zero_inflated_capital_pipeline.html
barRevenue by region (aggregated sum).
qsv viz bar sales_sample.csv --x region --y revenue --agg sum \
-  -o bar.html
+ -o bar.html
bar (animated slider)Revenue by product category, animated over an ordinal column with --slider: each distinct satisfaction rating (1–5) becomes an animation frame, with a ▶ Play/⏸ Pause button and a scrub slider to step through them (Gapminder-style). Axis ranges are pinned across frames so the bars stay comparable frame to frame instead of rescaling. --slider also works on line and scatter, may be split into animated traces with --series, and can accumulate with --slider-cumulative.
qsv viz bar sales_sample.csv --x product_category --y revenue \
-  --agg sum --slider satisfaction -o bar_animated_slider.html
-
lineClosing price over time.
qsv viz line stock_prices.csv --x date --y close -o line.html
-
scatterUnits sold vs revenue.
qsv viz scatter sales_sample.csv --x units_sold --y revenue -o scatter.html
+ --agg sum --slider satisfaction -o bar_animated_slider.html
+
lineClosing price over time.
qsv viz line stock_prices.csv --x date --y close -o line.html
+
scatterUnits sold vs revenue.
qsv viz scatter sales_sample.csv --x units_sold --y revenue -o scatter.html
scatter (bubble)Units vs revenue; marker size = shipping cost, color = profit margin %.
qsv viz scatter sales_sample.csv --x units_sold --y revenue --size shipping_cost \
-  --color profit_margin_pct -o scatter_bubble.html
+ --color profit_margin_pct -o scatter_bubble.html
scatter3dUnits vs revenue vs shipping cost in 3D; marker color = profit margin %.
qsv viz scatter3d sales_sample.csv --x units_sold --y revenue \
-  --z shipping_cost --color profit_margin_pct -o scatter3d.html
-
histogramDistribution of unit price.
qsv viz histogram sales_sample.csv --x unit_price -o histogram.html
-
boxSpread of revenue (Tukey whiskers; points beyond the fences shown as outliers).
qsv viz box sales_sample.csv --y revenue -o box.html
+ --z shipping_cost --color profit_margin_pct -o scatter3d.html
+
histogramDistribution of unit price.
qsv viz histogram sales_sample.csv --x unit_price -o histogram.html
+
boxSpread of revenue (Tukey whiskers; points beyond the fences shown as outliers).
qsv viz box sales_sample.csv --y revenue -o box.html
box (grouped)Revenue spread per region — real Tukey whiskers + every (jittered) point overlaid (--box-points all).
qsv viz box sales_sample.csv --y revenue --x region --box-points all \
-  -o box_grouped.html
-
violinRevenue distribution per region — a KDE density silhouette around an inner quartile box + mean line, revealing shape (modes, shoulders) a box hides. viz smart auto-picks this for columns in the bimodality ambiguity band (--violin auto).
qsv viz violin sales_sample.csv --y revenue --x region -o violin.html
+ -o box_grouped.html
+
violinRevenue distribution per region — a KDE density silhouette around an inner quartile box + mean line, revealing shape (modes, shoulders) a box hides. viz smart auto-picks this for columns in the bimodality ambiguity band (--violin auto).
qsv viz violin sales_sample.csv --y revenue --x region -o violin.html
pie (donut)Revenue share by product category.
qsv viz pie sales_sample.csv --x product_category --y revenue \
-  --donut -o pie_donut.html
-
funnelStage-by-stage drop-off for a signup pipeline encoded as rows (one row per stage per channel, summed per stage). Stages keep the order they first appear in the file, so the data defines the pipeline and nothing is inferred; each band is labelled with its conversion from the previous stage. This is the row-shaped counterpart to the column-shaped pipeline viz smart detects automatically.
qsv viz funnel signup_funnel.csv --x stage --y users -o funnel.html
-
heatmap (correlation)Pearson correlation matrix over numeric columns.
qsv viz heatmap sales_sample.csv -o heatmap_correlation.html
+ --donut -o pie_donut.html
+
funnelStage-by-stage drop-off for a signup pipeline encoded as rows (one row per stage per channel, summed per stage). Stages keep the order they first appear in the file, so the data defines the pipeline and nothing is inferred; each band is labelled with its conversion from the previous stage. This is the row-shaped counterpart to the column-shaped pipeline viz smart detects automatically.
qsv viz funnel signup_funnel.csv --x stage --y users -o funnel.html
+
heatmap (correlation)Pearson correlation matrix over numeric columns.
qsv viz heatmap sales_sample.csv -o heatmap_correlation.html
scatter (correlated pair)The most strongly correlated numeric pair (discount_pct vs profit_margin_pct, r=-0.99). viz smart auto-adds this as a drill-down beside the correlation heatmap.
qsv viz scatter sales_sample.csv --x discount_pct --y profit_margin_pct \
-  -o scatter_correlated_pair.html
+ -o scatter_correlated_pair.html
contour2D density of units sold vs revenue (binned into a 20x20 grid). viz smart uses this instead of the pair scatter for large datasets, where a scatter would overplot.
qsv viz contour sales_sample.csv --x units_sold --y revenue --bins 20 \
-  -o contour.html
+ -o contour.html
heatmap (pivot)Region x category grid of revenue.
qsv viz heatmap sales_sample.csv --x region --y product_category \
-  --z revenue -o heatmap_pivot.html
+ --z revenue -o heatmap_pivot.html
candlestickOHLC price action.
qsv viz candlestick stock_prices.csv --x date --ohlc-open open \
-  --high high --low low --close close -o candlestick.html
+ --high high --low low --close close -o candlestick.html
ohlcOpen-high-low-close bars.
qsv viz ohlc stock_prices.csv --x date --ohlc-open open --high high \
-  --low low --close close -o ohlc.html
+ --low low --close close -o ohlc.html
radarMulti-axis brand comparison (per-axis mean per series).
qsv viz radar product_ratings.csv --cols battery,camera,performance,display,value,design \
-  --series brand -o radar.html
+ --series brand -o radar.html
sankeyWeb session funnel (duplicate edges aggregated).
qsv viz sankey web_flows.csv --source source --target target \
-  --value sessions -o sankey.html
+ --value sessions -o sankey.html
treemapPart-to-whole spend by plan then region, sized by summed monthly_spend. Rounded tiles + white separators come from the treemap-specific marker; non-numeric/negative measure cells are rejected so proportions can't silently misstate.
qsv viz treemap customer_spend.csv --cols plan,region --value monthly_spend \
-  --agg sum -o treemap.html
+ --agg sum -o treemap.html
sunburstThree-level hierarchy (region -> product_category -> payment_method) as concentric rings, sized by row count; inner rings are parents, outer rings their children. Opens at two rings (maxdepth) so labels stay legible instead of crowding a ~100-sector outer ring; click a sector to drill in and the deeper ring's labels grow back. Hover always shows value + percent.
qsv viz sunburst sales_sample.csv --cols region,product_category,payment_method \
-  -o sunburst.html
+ -o sunburst.html
icicleSame three-level hierarchy (region -> product_category -> payment_method) as a rectangular icicle: parents on the left, children fanning right, each rectangle sized by row count. The flat left-to-right layout keeps deep labels readable where a sunburst's outer ring would crowd; click a rectangle to zoom into that branch. Hover shows label + value + percent of parent.
qsv viz icicle sales_sample.csv --cols region,product_category,payment_method \
-  -o icicle.html
+ -o icicle.html
splomScatter-plot matrix of four numeric columns (units_sold, revenue, discount_pct, profit_margin_pct): every pairwise scatter in an N x N grid with shared axes, so correlation structure is legible at a glance. This is a standalone chart command — the viz smart dashboard has no SPLOM panel; it covers the same ground with its correlation heatmap plus the strongest-pair scatter and 3D scatter drill-downs.
qsv viz splom sales_sample.csv --cols units_sold,revenue,discount_pct,profit_margin_pct \
-  -o splom.html
+ -o splom.html
parcatsParallel-categories flow over three categorical columns (region -> product_category -> payment_method): each ribbon is a category combination, sized by how many rows share it, so co-occurrence between the dimensions is visible without implying a part-to-whole nesting. Ribbons are colored by their first-axis category and bundled (like a Sankey), and each axis opens ordered by frequency with a ⇅ category order toggle that flips every axis between frequency and alphabetical order. viz smart auto-adds this panel for 3-4 associated many-to-many categoricals (and suppresses the hierarchy on the same columns); genuine rollup trees still auto-select a treemap/sunburst.
qsv viz parcats sales_sample.csv --cols region,product_category,payment_method \
-  -o parcats.html
+ -o parcats.html
mapEarthquake points on token-free OpenStreetMap tiles; marker color = magnitude, size = depth.
qsv viz map quakes.csv --lat lat --lon lon --color magnitude \
-  --size depth_km -o map.html
+ --size depth_km -o map.html
map (density)DensityMap heatmap of the same points on a light Carto basemap, weighted by magnitude (via --color) so stronger quakes glow hotter — hovering a point shows its magnitude, not just the coordinates.
qsv viz map quakes.csv --lat lat --lon lon --density --color magnitude \
-  --style carto-positron -o map_density.html
+ --style carto-positron -o map_density.html
geoSame earthquakes on an offline natural-earth projection (no tiles, no token); marker color = magnitude. viz smart auto-uses this projection for global-extent coordinates.
qsv viz geo quakes.csv --lat lat --lon lon --color magnitude \
-  --projection natural-earth -o geo.html
+ --projection natural-earth -o geo.html
geo (animated slider)An animated point map: --slider steps through the region column, revealing the world's seismicity continent by continent, each region in its own color via --series. With --slider-cumulative the points accumulate as the animation plays (Play/Pause + a scrub slider). Unlike the MapLibre tile map, scattergeo animates natively, so --slider is supported on viz geo — use it instead of viz map for animated point maps.
qsv viz geo quakes.csv --lat lat --lon lon --slider region --series region \
-  --slider-cumulative --projection natural-earth -o geo_animated_slider.html
+ --slider-cumulative --projection natural-earth -o geo_animated_slider.html
choroplethFilled-region map coloring countries by GDP, matched by ISO-3 code on a token-free projection basemap. Use --location-mode usa-states / country-names / geojson-id for other region keys, --map for a MapLibre tile basemap, or --geocode to derive codes from lat/lon or place names.
qsv viz choropleth country_stats.csv --locations iso3 --value gdp_usd_tn \
-  --color-scale viridis -o choropleth.html
+ --color-scale viridis -o choropleth.html
choropleth (US states)Same chart, --location-mode usa-states: state codes matched to Plotly's built-in US-state geometry on the token-free albers-usa projection (CONUS + Alaska/Hawaii insets) — no GeoJSON needed. States are colored by renewable-electricity share.
qsv viz choropleth us_state_stats.csv --locations state --value renewable_electricity_pct \
-  --location-mode usa-states -o choropleth_us_states.html
+ --location-mode usa-states -o choropleth_us_states.html
choropleth (MapLibre + GeoJSON)--map draws the filled regions on an interactive MapLibre tile basemap (token-free carto-positron) instead of a projection. The regions come from a custom GeoJSON (--geojson local file or URL) matched to the data by --feature-id-key — here the near-rectangular western states, colored by installed wind capacity. The view auto-centers and zooms to the GeoJSON extent (shown full-width so the computed zoom frames the regions as the CLI does — a tile map's zoom is fixed, so a narrow grid cell would crop it).
qsv viz choropleth western_states.csv --locations state --value wind_capacity_gw \
   --geojson western_states.geojson --feature-id-key id --map --style carto-positron \
-  -o choropleth_maplibre_geojson.html
+ -o choropleth_maplibre_geojson.html
smart dashboard (time-series)Auto dashboard for stock_prices: a time-series trend panel (the first numeric column over the date) leads; the strongest-correlated pair drill-down (open vs close) is shown as a static scatter — that relationship is a near-perfect line whose 2-D shape doesn't evolve, so the judicious animation gate withholds the (uninformative) animated version — alongside box-plot summaries of the OHLC columns.
qsv viz smart stock_prices.csv --max-charts 8 -o smart_dashboard_time_series.html
smart dashboard (per-US-state choropleth)`viz smart` reverse-geocodes each point; because every city resolves to a US state, it adds a per-US-state choropleth (cities-per-state, albers-usa) beside the point map, alongside the usual box plots, frequency bars and the strongest-pair scatter. (The point map's spatial extent caption counts the data's bounding-box corners, which spill into neighboring countries and ocean — the choropleth instead resolves each city to its own state.) No flags, no LLM — the state fill is derived purely from the lat/lon columns.
qsv viz smart us_cities.csv -o smart_dashboard_per_us_state_choropleth.html
smart dashboard (--dictionary infer, treemap)Auto dashboard for customer_spend with a describegpt-inferred Data Dictionary (--dictionary infer) guiding panel selection & field labels. Two categorical dimensions (plan, region) form a shallow part-to-whole hierarchy, auto-rendered as a TREEMAP (area = size). Requires a local LLM; the committed HTML is reused on regen.
qsv viz smart customer_spend.csv --dictionary infer -o smart_dashboard_dictionary_infer_treemap.html
@@ -124,9 +125,8 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

--feature-id-key properties.nameBoston 311 (2025) smart visual data dictionary screenshot diff --git a/examples/viz/gen_gallery.py b/examples/viz/gen_gallery.py index 424e336312..86a0ff11a9 100755 --- a/examples/viz/gen_gallery.py +++ b/examples/viz/gen_gallery.py @@ -57,6 +57,7 @@ "smart dashboard (animated geo, world events)": "smart_world_events.html", "smart dashboard (Gapminder bubble, regions growth)": "smart_regions_growth.html", "smart dashboard (--smarter, Gini/Lorenz inequality + log-skew boxes)": "smart_cms_medicare.html", + "smart dashboard (--smarter, zero-inflated capital pipeline)": "smart_cpdb.html", } # Iframe artifacts that depend on a live LLM (`--dictionary infer` calls describegpt against a @@ -476,6 +477,21 @@ "against its largest values, so viz smart draws it on a log axis instead, " "keeping the median and quartiles legible.", True, ["smart", "cms_medicare_providers.csv", "--smarter"]), + ("smart dashboard (--smarter, zero-inflated capital pipeline)", + "NYC Capital Projects Database (12,587 projects, sourced from Checkbook NYC), the " + "dataset this dashboard's inequality work was designed against. Its money columns are both " + "extremely concentrated (Gini 0.93–0.96) and heavily zero-inflated, which the " + "Lorenz panels state outright: flat run = 60% zeros, not small values. That long " + "flat opening run is not a mass of small projects — it is the projects with nothing " + "committed or spent yet, a funding-pipeline stage rather than a have-not population. " + "Every Lorenz panel also carries the unit caveat, because a Gini across units as unlike a " + "subway extension and a playground resurfacing is close to tautological and must not be read " + "as inequity.

Note what is absent: no pipeline funnel. The column names look " + "like planned → committed → spent, but the values are not nested (spent totals " + "2.9× committed — they are independent sums on different bases), so the " + "containment gate declines and says so on stderr rather than drawing a funnel the data does " + "not support.", + True, ["smart", "nyc_capital_projects.csv", "--smarter"]), ("bar", "Revenue by region (aggregated sum).", False, ["bar", "sales_sample.csv", "--x", "region", "--y", "revenue", "--agg", "sum"]), ("bar (animated slider)", diff --git a/examples/viz/nyc_capital_projects.csv b/examples/viz/nyc_capital_projects.csv new file mode 100644 index 0000000000..bfd91bfc59 --- /dev/null +++ b/examples/viz/nyc_capital_projects.csv @@ -0,0 +1,12588 @@ +"maprojid","magencyacro","magencyname","typecategory","totalplannedcommit","commit_total","spent_total" +"038LBCENPH3","BPL","Brooklyn Public Library",,"2800000","0","0" +"039LQMTGRMS","QPL","Queens Borough Public Library",,"60000","0","0" +"850HL82HSS3","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"846P-217PDGT","DPR","Department of Parks and Recreation","Fixed Asset","-19000","0.00","401178.65" +"850HH112CTFS","DDC","Department of Design and Construction","Fixed Asset","3045000","71319.61","406640.19" +"039LQGL-RES","QPL","Queens Borough Public Library",,"1000000","0","0" +"039LQNN_26","QPL","Queens Borough Public Library",,"0","0","0" +"039LQNO-CCTV","QPL","Queens Borough Public Library",,"0","0","0" +"039LQPHRS-23","QPL","Queens Borough Public Library",,"300000","0","0" +"126PV176BLR2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV176BZV2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","1000","2199000","0" +"126PV176COGN","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV187-SI4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","120000","112000","0" +"126PV197-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","65000","0.00","59644.35" +"126PV204AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","295000","0","0" +"126PV204ICOM","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","274000","0","0" +"126PV204-IT2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","462000","0","0" +"126PV204JLC6","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","471000","0","0" +"126PV204JLC7","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","400000","0","0" +"126PV205NBGM","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","150000","0","0" +"125HAM14CRSR","DFTA","Department for the Aging","Fixed Asset","100000","0","0" +"035LRCE12DOT","NYRL","New York Research Libraries",,"0","0","0" +"846P-411C567","DPR","Department of Parks and Recreation","Fixed Asset","704000","0.00","13718953.95" +"035L21FREEZE","NYRL","New York Research Libraries",,"393000","6600","0" +"850AGDJCCCON","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","145865" +"846P-5CLAYST","DPR","Department of Parks and Recreation","Fixed Asset","0","0","47900" +"846P-4FLBAY2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1444669.19" +"068CCRENOV","ACS","Administration for Children's Services","Fixed Asset","50000","0","0" +"035L26-CSWSS","NYRL","New York Research Libraries",,"133000","0","0" +"856PW293125D","DCAS","Department of Citywide Administrative Services","Fixed Asset","67984000","0","0" +"068CSCN007TC","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","250000","0","0" +"068HRC006KCH","ACS","Administration for Children's Services","Lump Sum","16000","0","0" +"042HS035-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","40000","0","0" +"126PV180CLSS","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"035LSYSWIDE","NYRL","New York Research Libraries",,"7332000","0","0" +"856PW293198X","DCAS","Department of Citywide Administrative Services","Fixed Asset","22742000","1711000","0" +"039LQQBH-RES","QPL","Queens Borough Public Library",,"2800000","0","0" +"846P-4VANDOH","DPR","Department of Parks and Recreation","Fixed Asset","8000","0.00","2550294.23" +"850HLQNLIJ04","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"827P-300HRP2","DSNY","Department of Sanitation","Fixed Asset","0","0","0" +"827S136-251V","DSNY","Department of Sanitation","Fixed Asset","-10000","0.02","4831841.26" +"827S136-264M","DSNY","Department of Sanitation","Fixed Asset","250000","1456094.24","5716547.43" +"846P-4VIETNA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2424652.84" +"850LNEA13MHU","DDC","Department of Design and Construction","Fixed Asset","835000","262861.47","4202768.27" +"850LNEA14VNT","DDC","Department of Design and Construction","Fixed Asset","2919000","1550292.30","2222112.10" +"850LNMA12TOT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4000","43.38","295091.78" +"037LN20BXBRS","NYPL","New York Public Library",,"98000","0","0" +"037LN20MNBRS","NYPL","New York Public Library",,"0","0","0" +"037LN20SIBRS","NYPL","New York Public Library",,"7000","0","0" +"037LN23RVDCP","NYPL","New York Public Library",,"1052000","0","0" +"068JJZROSSLB","ACS","Administration for Children's Services","Fixed Asset","100000","0.00","73058.01" +"068LUCILLE","ACS","Administration for Children's Services","Fixed Asset","57000","0","0" +"038LBM11GSSA","BPL","Brooklyn Public Library","Fixed Asset","0","0.00","3447279.11" +"801BNYINFRAW","BNY","Brooklyn Navy Yard","Fixed Asset","0","0.00","32388832.23" +"039LQDBRFFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","67000","12798.47","191356.39" +"827S136-264Q","DSNY","Department of Sanitation","Fixed Asset","-372000","859380.13","2120663.95" +"850LNEA08MH2","DDC","Department of Design and Construction","Fixed Asset","14000","0.00","705469.46" +"037LNSYSBFFE","NYPL","New York Public Library",,"0","0","0" +"037LNSYSWIDE","NYPL","New York Public Library",,"142911000","0","0" +"038LBC19CHEL","BPL","Brooklyn Public Library",,"0","0","0" +"038LBC20BPFE","BPL","Brooklyn Public Library",,"0","15883.75","362651.09" +"038LBC21KHIT","BPL","Brooklyn Public Library",,"0","900","73566" +"042BX027-015","CUNY","City University of New York","Fixed Asset","425000","0.0","28859.8" +"801JAMSTPLZ","SBS","Department of Small Business Services","Fixed Asset","45897000","583921.33","2068856.96" +"827S136-383G","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","459000","2315328.41","6022375.68" +"827S136-424","DSNY","Department of Sanitation","Fixed Asset","53650000","15279383.30","3647803.34" +"827S136-437","DSNY","Department of Sanitation","Fixed Asset","2551000","4176882.74","5756439.19" +"827S136-464A","DSNY","Department of Sanitation","Fixed Asset","-177000","171958.57","3182247.06" +"827S136-464B","DSNY","Department of Sanitation","Fixed Asset","9843000","6852384.64","1975626.62" +"827S136-464E","DSNY","Department of Sanitation","Fixed Asset","450000","0","0" +"038LBENVELOP","BPL","Brooklyn Public Library",,"0","0","0" +"827S186-224","DSNY","Department of Sanitation","Fixed Asset","3155000","11279656.07","199166878.59" +"827S236-335A","DSNY","Department of Sanitation","Fixed Asset","0","0.00","556407.34" +"827SAND26MBS","DSNY","Department of Sanitation",,"4372000","25068.24","1002331.22" +"827SAND44BVR","DSNY","Department of Sanitation","Fixed Asset","6825000","479342.90","1001523.00" +"038LBM18NLOH","BPL","Brooklyn Public Library",,"51472000","0","0" +"038LBM20BHFE","BPL","Brooklyn Public Library",,"0","0.00","531927.48" +"038LBM20CNFE","BPL","Brooklyn Public Library",,"0","0","0" +"038LBM20SSFE","BPL","Brooklyn Public Library",,"0","0","0" +"038LBM22PCOH","BPL","Brooklyn Public Library",,"40046000","0","0" +"038LBM24ERPS","BPL","Brooklyn Public Library",,"0","0","4586329" +"038LBM25HLIF","BPL","Brooklyn Public Library",,"4230000","0","0" +"038LBM26CHOH","BPL","Brooklyn Public Library",,"0","0","0" +"038LBM26DROH","BPL","Brooklyn Public Library",,"0","0","0" +"038LBM26MROH","BPL","Brooklyn Public Library",,"0","0","0" +"038LBSHORTFL","BPL","Brooklyn Public Library",,"57891000","0","0" +"039LQBC-RES","QPL","Queens Borough Public Library",,"1800000","0","0" +"039LQCA19LHS","QPL","Queens Borough Public Library",,"150000","0","0" +"850RED-366","DDC","Department of Design and Construction","Fixed Asset","47087000","34257579.86","141241.93" +"850HL82PCRHL","DDC","Department of Design and Construction","Lump Sum","0","0","299922" +"039LQQV-TECH","QPL","Queens Borough Public Library",,"200000","0","0" +"056SANDCD1","NYPD","Police Department","Fixed Asset","720000","90468.8","405119.2" +"846P-311TJPK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.0","666519.7" +"039LQSE-CCTV","QPL","Queens Borough Public Library",,"0","0","0" +"039LQSHORTFA","QPL","Queens Borough Public Library",,"738000","0","0" +"039LQSTW-RES","QPL","Queens Borough Public Library",,"2800000","0","0" +"039LQSTWSOLR","QPL","Queens Borough Public Library",,"150000","0","0" +"040IDA21COST","DOE","Department of Education",,"82255000","57900000","10600000" +"040OP23COST","DOE","Department of Education",,"1365000","1364000","0" +"040SANDYCOST","DOE","Department of Education",,"52691000","58661572","691044947" +"040SCAQ171","DOE","Department of Education",,"1443000","1443001","0" +"042ACECUN211","CUNY","City University of New York",,"26000","116375.35","3400.65" +"042ACECUN212","CUNY","City University of New York",,"420000","1886970.25","75910.75" +"042ACECUN213","CUNY","City University of New York",,"27000","105701.15","19965.85" +"042ACECUN214","CUNY","City University of New York",,"245000","1107276","31575" +"042ACECUN215","CUNY","City University of New York",,"26000","112599","3250" +"042ACECUN216","CUNY","City University of New York",,"195000","895445.45","11708.55" +"042BX040-017","CUNY","City University of New York",,"7235000","1038232.06","2831956.18" +"801HBPD200KA","SBS","Department of Small Business Services","Fixed Asset","0","0.00","6435161.70" +"042YC001-023","CUNY","City University of New York",,"1500000","1465048","0" +"042ENRGME001","CUNY","City University of New York","Fixed Asset","423000","0","0" +"856PW77X215","DCAS","Department of Citywide Administrative Services","Fixed Asset","2596000","0","0" +"056PO79-BMS","NYPD","Police Department",,"49658000","1","0" +"850SEK002351","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","23602000","62423.98","711696.01" +"816HL82CHELF","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","27000","14834.73","992447.07" +"057F109FLUID","FDNY","Fire Department",,"142000","0","0" +"037LNXA11BXT","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","366661" +"816HL82LICEN","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","3339000","0","3660600" +"850HL82RCHU1","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5602106.35" +"038LBC17DRBR","BPL","Brooklyn Public Library","Fixed Asset","1659000","0","0" +"037LNRA17WNB","NYPL","New York Public Library","Fixed Asset","0","0","0" +"850HLDNMTS59","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","12000","646410","0" +"042BX001-021","CUNY","City University of New York",,"0","0","0" +"042CA004-021","CUNY","City University of New York",,"4613000","3157550","366950" +"816HL82MORHC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","20250000","0","0" +"816HL82CHRHC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","6112000","459504","0" +"856PWCN001","DCAS","Department of Citywide Administrative Services","Fixed Asset","68000","0","0" +"850HLDNPCARE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"816HL82MOSQ","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","206000","0.00","293915.56" +"042CA049-019","CUNY","City University of New York",,"175000","88692.99","2776371.01" +"042CA056-020","CUNY","City University of New York",,"250000","0","0" +"042CC001-021","CUNY","City University of New York",,"3000","101.8","96965.2" +"111PO-D185SI","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","45976.85" +"856PWD78415A","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"057F1-JFKDAS","FDNY","Fire Department",,"0","0","0" +"850HL98HSS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"856CO294BOIL","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","19145.05","364813.93" +"850HLDNAIDSE","DDC","Department of Design and Construction","Lump Sum","0","0","805977" +"850HLDNAPCHA","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"856PWCN900","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","300000","0","0" +"850SE-793","DDC","Department of Design and Construction","Fixed Asset","388000","6442442.08","67197777.09" +"801ROCKBULK","SBS","Department of Small Business Services","Fixed Asset","0","0.00","6540772.73" +"816HL82DATAW","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","0","2574.97","1879305.64" +"111NYPD5RTCC","UK","Unknown","Fixed Asset","0","0.11","21656718.13" +"801BNYINF-SP","BNY","Brooklyn Navy Yard","Fixed Asset","0","0","0" +"057FDNY6EMSC","FDNY","Fire Department",,"24372000","17740000","2260000" +"856CO305REHB","DCAS","Department of Citywide Administrative Services","Fixed Asset","1022000","815402.63","31249038.31" +"057FR109BF14","FDNY","Fire Department",,"0","0","0" +"039LQ122-SAC","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","68747" +"850HL82KNJSW","DDC","Department of Design and Construction","Fixed Asset","0","0","252912" +"801BNYINF-WF","BNY","Brooklyn Navy Yard","Fixed Asset","64524000","0.00","16806642.53" +"111FISA4ADC","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","9246246.03" +"850SE-853","DDC","Department of Design and Construction","Lump Sum","100000","9589126.42","42787934.94" +"856DAVIDCC","DCAS","Department of Citywide Administrative Services","Fixed Asset","750000","0","0" +"856PWD998GLP","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWD998WWC","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"801DTBKWSPK","SBS","Department of Small Business Services","Fixed Asset","619000","1270666.85","16262311.34" +"801EASTPLAZA","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"057SANDHM246","FDNY","Fire Department",,"45000","316710.75","146245.44" +"856E14-0002","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","1489736.86","4274605.05" +"801HARLEMRY","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801HARLESPL","SBS","Department of Small Business Services","Fixed Asset","0","0.00","7250156.63" +"801HLKNCEV","SBS","Department of Small Business Services","Fixed Asset","103000","501431","0" +"801METBIDWAY","SBS","Department of Small Business Services","Fixed Asset","0","0.00","409536.51" +"850HLDNNYM40","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"068TRADESHOP","ACS","Administration for Children's Services",,"665000","0","0" +"068VBGC001","ACS","Administration for Children's Services",,"5000000","0","0" +"068VBGC002","ACS","Administration for Children's Services",,"8300000","0","0" +"068VBGC003","ACS","Administration for Children's Services",,"5000000","0","0" +"850HLPRESPAX","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"801LAMARQUE4","SBS","Department of Small Business Services","Fixed Asset","0","0.00","155440.43" +"801NWBURGFL","SBS","Department of Small Business Services","Fixed Asset","0","0.00","2247666.49" +"126PV112ADA","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV939-SSI","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","57000","28875.60","22121.88" +"126PV196IRLT","DCLA","Department of Cultural Affairs","Fixed Asset","0","0.00","96399.75" +"801PWSAMFIEH","SBS","Department of Small Business Services","Fixed Asset","0","0","1900599" +"801QNSPLGA","SBS","Department of Small Business Services","Fixed Asset","0","0","2435204" +"801REDHOOK","SBS","Department of Small Business Services","Fixed Asset","2526000","4400952.61","17065418.80" +"856PW77MU8EL","DCAS","Department of Citywide Administrative Services","Fixed Asset","29000","206413.45","14198991.63" +"801SAND3705","SBS","Department of Small Business Services","Fixed Asset","2013000","3269872.29","94681464.62" +"801SSSLUMP","SBS","Department of Small Business Services","Lump Sum","974000","0","0" +"856PW310FAN","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","107275.00","177028.85" +"856PW322PLAN","DCAS","Department of Citywide Administrative Services","Fixed Asset","929000","5211066.16","118546892.18" +"827SANDQ14EL","DSNY","Department of Sanitation","Fixed Asset","74000","283394.17","4389694.37" +"806HAM15JFSR","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","86000","0.0","985008.3" +"801BATBEYOND","SBS","Department of Small Business Services","Fixed Asset","1566000","3078816.20","125559362.11" +"801BCTPIER11","SBS","Department of Small Business Services","Fixed Asset","0","61237.65","877082.95" +"072C117CIBS","DOC","Department of Correction",,"200000","0","0" +"819ACEHHC407","HHC","Health and Hospitals Corporation","Fixed Asset","76000","0.00","8915721.73" +"826CSO-GC-SP","DEP","Department of Environmental Protection","Lump Sum","116000","44984.11","1083689.76" +"826GI-NYCHA","DEP","Department of Environmental Protection","Fixed Asset","8000","1843544.22","7092405.09" +"826HP-242-L","DEP","Department of Environmental Protection","Fixed Asset","4600000","3899900","0" +"072C75ESUCP","DOC","Department of Correction",,"0","219732.67","241191.9" +"096HR120AHR8","HRA","Human Resources Administration",,"5300000","0","0" +"096HR120AHRA","HRA","Human Resources Administration",,"3700000","0","0" +"841HWQF031C","DOT","Department of Transportation","ITT, Vehicles, and Equipment","250000","11719.24","85850.76" +"096HR120AZRE","HRA","Human Resources Administration",,"3777000","0","0" +"096HR120BAIT","HRA","Human Resources Administration",,"11000","185026.00","1252821.69" +"841HWQF2002V","DOT","Department of Transportation","ITT, Vehicles, and Equipment","236000","39218.00","1360505.64" +"126PV667QCLS","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"841JAMASTPLZ","DOT","Department of Transportation","Lump Sum","4010000","196188.42","10485502.85" +"801P-500LEMO","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"841TFCPARKLG","DOT","Department of Transportation","Fixed Asset","829000","10226382.97","26285453.58" +"856PW340GEN","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","36000","0","0" +"846P-107PPV1","DPR","Department of Parks and Recreation","Fixed Asset","364000","17355.49","772388.78" +"801ROCKOUT","SBS","Department of Small Business Services","Fixed Asset","0","0.00","3784521.88" +"801ROOSEDOCK","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801SANDSMC","SBS","Department of Small Business Services","Fixed Asset","14974000","5326820.72","12578112.37" +"801SAND6701","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","3227000","666223.79","13370145.13" +"801SCHOOLSA","SBS","Department of Small Business Services","Lump Sum","2076000","0","0" +"846P-102HNT2","DPR","Department of Parks and Recreation","Fixed Asset","330000","54732.7","83267.3" +"850PV467SRA1","DDC","Department of Design and Construction","Fixed Asset","0","0","6372000" +"850PV655QCFM","DDC","Department of Design and Construction","Fixed Asset","0","16462.70","3532987.67" +"850PW3171C","DDC","Department of Design and Construction","Fixed Asset","26552000","0","9000" +"846P-1KNGSBR","DPR","Department of Parks and Recreation","Fixed Asset","31000","113624.93","1184870.16" +"111CITY6STAG","UK","Unknown",,"1738000",, +"841W125STLG","DOT","Department of Transportation","Fixed Asset","0","0.0","1653911.6" +"856PW77115CH","DCAS","Department of Citywide Administrative Services","Fixed Asset","3731000","0","0" +"111CJRI3MDA3","UK","Unknown",,"7241000","0.00","387412.98" +"111CJRI3QDA2","UK","Unknown",,"135000","0","341613" +"111CJRI3SNP4","UK","Unknown",,"965000","0","0" +"111CJRI5RLTY","UK","Unknown",,"13500000","0","0" +"111CJRI5TGLS","UK","Unknown",,"3400000","0","0" +"856PW77207EL","DCAS","Department of Citywide Administrative Services","Fixed Asset","9831000","0","0" +"111DOR6AKAMA","UK","Unknown",,"472000","0","471614" +"816HL82DHEHR","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0.00","4242983.97" +"81913200573","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81926201051","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","29000","0","0" +"846P-301BURL","DPR","Department of Parks and Recreation","Fixed Asset","424000","0.00","10143819.73" +"126PV467YARF","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"056POD50ELGE","NYPD","Police Department","ITT, Vehicles, and Equipment","691000","29274.25","45757.25" +"111MOCJ6CONN","UK","Unknown",,"4120000","0","0" +"841C5586","DOT","Department of Transportation","ITT, Vehicles, and Equipment","12074000","412791.80","1754314.15" +"841C5588","DOT","Department of Transportation","ITT, Vehicles, and Equipment","8050000","0","0" +"841HB1070HR","DOT","Department of Transportation","Fixed Asset","0","220637.80","14095368.52" +"111PO163-DAS","UK","Unknown",,"49456000","1.08","46903377.46" +"111PO185-42","UK","Unknown",,"0","0","497406" +"111PO185-5C","UK","Unknown",,"0","0","108500" +"111PO187PC10","UK","Unknown",,"0","0","0" +"801SANDBNYWF","BNY","Brooklyn Navy Yard",,"92000","279398.7","0" +"042HC036-020","CUNY","City University of New York",,"0","0","0" +"850HL82JHMC","DDC","Department of Design and Construction","Fixed Asset","0","0.0","1364200.3" +"850BED-784","DDC","Department of Design and Construction","Lump Sum","247000","5671546.67","32897577.15" +"042JJ001-024","CUNY","City University of New York",,"125000","0","0" +"042JJ001-025","CUNY","City University of New York",,"240000","0","0" +"042LM021-012","CUNY","City University of New York",,"80000","402361.00","1475954.07" +"111PO-D185B5","UK","Unknown",,"0","0.0","43092.6" +"111PO-DRONE","UK","Unknown",,"150000","0","0" +"850HL82STMAR","DDC","Department of Design and Construction",,"0","0","0" +"042KG037-015","CUNY","City University of New York",,"7500000","0","0" +"850HL99NYHQ","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HL99NYUDC","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HL82AIDSC","DDC","Department of Design and Construction","Lump Sum","0","0","58052" +"126PV018-RTN","DCLA","Department of Cultural Affairs",,"0","0","0" +"126PV01WOAP","DCLA","Department of Cultural Affairs",,"250000","0","0" +"850BED-776","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","7907000","32494058.48","64679940.67" +"850HLQNMTS03","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","348000","0","0" +"850HLQNPLANN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"806RAMALG","HPD","Housing Preservation and Development","Lump Sum","1000000","0","0" +"846P-311TURF","DPR","Department of Parks and Recreation","Fixed Asset","0","16549.50","2761136.71" +"846P-311WITE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3745456.91" +"072C75GRVRFW","DOC","Department of Correction","Fixed Asset","0","260678.31","656256.69" +"126PV205LOAD","DCLA","Department of Cultural Affairs",,"325000","325000","0" +"126PV205PAIR","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","300000","0","0" +"126PV205TRM3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2000000","1828000","0" +"126PV205VEH3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","1000","0","320068" +"126PV222-AU1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","23000","0.00","223988.52" +"126PV222JIT2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","11000","0","83296" +"126PV235-PH1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV235VEH1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","230000","0","0" +"126PV236VEH2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","230000","0","0" +"126PV236VEHS","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","108000","621818","0" +"126PV241-IT2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV250LGT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","55000","0","0" +"126PV256MTC6","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","364000","0","0" +"126PV256-RET","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","37000","0","0" +"126PV262BCM1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","157000","0","0" +"126PV264-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","725000","0","0" +"126PV264BAM2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","1300000","0","0" +"126PV266MB-1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","536000","0","0" +"126PV274PROJ","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","227000","178377.55","47887.76" +"126PV274WALL","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","207746" +"126PV279NCC1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","252000","0","0" +"126PV290SIGN","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","950000","0","0" +"126PV291-NM4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV291QIT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","102000","0","0" +"126PV330-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","112000","0","0" +"850MED-597","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","14986000","2000.00","172343.95" +"042LM018-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.00","42734.44" +"850HL82SIUH","DDC","Department of Design and Construction","Fixed Asset","0","0.00","4286657.79" +"126PV219-HLD","DCLA","Department of Cultural Affairs",,"0","0","0" +"850HLDN22EMR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850MED-616","DDC","Department of Design and Construction","Fixed Asset","0","45863.18","349982.29" +"850HLDN24MR2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDN28LIJ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDN41REP","DDC","Department of Design and Construction","Lump Sum","0","0","292682" +"816HL82EHRHC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","5051000","77719.75","941838.68" +"801SIWHEEL","SBS","Department of Small Business Services",,"1000000","0","0" +"801SKYPORT","SBS","Department of Small Business Services","Fixed Asset","3637000","778086.85","1584106.80" +"801SOLAR2","SBS","Department of Small Business Services","Lump Sum","3286000","125579.71","15569997.29" +"806HAM06MHEL","HPD","Housing Preservation and Development","Fixed Asset","267000","12568.21","2217084.58" +"126PV341CAR2","DCLA","Department of Cultural Affairs",,"4511000","0","0" +"126PV341-HLD","DCLA","Department of Cultural Affairs",,"0","0","0" +"126PV341-RES","DCLA","Department of Cultural Affairs",,"4132000","0","0" +"126PV364HOLD","DCLA","Department of Cultural Affairs",,"0","0","0" +"126PV429-0F2","DCLA","Department of Cultural Affairs",,"3263000","0","0" +"126PV330PH2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","74000","0","0" +"126PV333AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","143000","0","0" +"126PV333PRG4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","143000","0","0" +"126PV345-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","62000","0","0" +"126PV464-PAV","DCLA","Department of Cultural Affairs",,"1600000","0","0" +"126PV467DBCD","DCLA","Department of Cultural Affairs",,"839000","0","0" +"126PV467-IT4","DCLA","Department of Cultural Affairs",,"0","0","0" +"126PV467PCT2","DCLA","Department of Cultural Affairs",,"0","0","0" +"126PV717-IT1","DCLA","Department of Cultural Affairs",,"0","0","0" +"126PV767RTF5","DCLA","Department of Cultural Affairs",,"148000","0","0" +"126PV364AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","1100000","0","0" +"801BAMNSITEA","SBS","Department of Small Business Services",,"187000","0.00","2199121.86" +"801AGDELMCOR","SBS","Department of Small Business Services",,"510000","0","0" +"801BATPLUGIN","SBS","Department of Small Business Services",,"0","0","0" +"841HBX156","DOT","Department of Transportation","Fixed Asset","60055000","3336371.17","1848212.92" +"072C75NICA/C","DOC","Department of Correction","Fixed Asset","0","161200.28","8402047.90" +"801FOODBANK6","SBS","Department of Small Business Services",,"500000","0","0" +"850HLKNBROKE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3000","0.00","503462.84" +"801BOATROCK","SBS","Department of Small Business Services",,"0","0","982550" +"816HL82HITIN","DOHMH","Department of Health and Mental Hygiene","Lump Sum","65000","0.00","2157858.93" +"801CONEYWEST","SBS","Department of Small Business Services",,"48435000","1354822.73","121606569.01" +"801BRONXWORK","SBS","Department of Small Business Services",,"0","0.00","490351.25" +"801YANKDEMO","SBS","Department of Small Business Services","Fixed Asset","40000","0.00","23396909.69" +"801BUSHTCAFE","SBS","Department of Small Business Services",,"13683000","58113.73","258304.68" +"801CAROUSEL","SBS","Department of Small Business Services",,"0","0.00","2034375.84" +"801EFLATVILL","SBS","Department of Small Business Services",,"3000000","0","0" +"801FLATREV","SBS","Department of Small Business Services",,"0","0","52549998" +"056PO79BMAHM","NYPD","Police Department","Fixed Asset","1000000","0","0" +"841HWCOINFAC","DOT","Department of Transportation","Fixed Asset","6731000","0.00","63381.64" +"841HWD10111","DOT","Department of Transportation","Lump Sum","500000","0","0" +"841HWD104-08","DOT","Department of Transportation",,"200000","0","0" +"801FFMDRAIN","SBS","Department of Small Business Services",,"600000","0","0" +"801FORESTAVE","SBS","Department of Small Business Services",,"0","0.00","4687783.88" +"801HLEDEN2","SBS","Department of Small Business Services",,"0","0.00","1756387.72" +"801GROCERY","SBS","Department of Small Business Services",,"70000000","0","0" +"801HLNYACADM","SBS","Department of Small Business Services",,"0","0","0" +"801HOMEPORT2","SBS","Department of Small Business Services",,"74429000","61575239.90","43828602.98" +"846P-2CPITEN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3656991.60" +"056SANDCD4","NYPD","Police Department","Fixed Asset","575000","0","0" +"801HIFNSW","SBS","Department of Small Business Services",,"0","0","0" +"072C75NICADA","DOC","Department of Correction","Lump Sum","0","17120.00","163342.44" +"801HWQWILLET","SBS","Department of Small Business Services",,"0","0","0" +"801JAMAVE1","SBS","Department of Small Business Services",,"20000","0.00","2604420.99" +"801KIPDOME","SBS","Department of Small Business Services",,"0","0.0","651247.2" +"801LAMARQUET","SBS","Department of Small Business Services",,"0","0.00","1959643.53" +"801PVMOCADA","SBS","Department of Small Business Services","Fixed Asset","1000","133508.33","10375737.70" +"841HBM1027","DOT","Department of Transportation","Fixed Asset","2298000","16500025.17","144888805.95" +"801PVN288FVC","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","3268292" +"81927201201","HHC","Health and Hospitals Corporation","Fixed Asset","273000","0","0" +"801PWDKBB&GC","SBS","Department of Small Business Services","Fixed Asset","21000","171280.4","671646.6" +"81975201502","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","96000","241272.21","2558498.68" +"819ACEHHC408","HHC","Health and Hospitals Corporation","Fixed Asset","447000","0.00","19960592.95" +"819GOUV/MJR","HHC","Health and Hospitals Corporation","Fixed Asset","1481000","151611.98","241748055.36" +"850HWP2021LM","DDC","Department of Design and Construction",,"9009000","154642.6","2034725.4" +"126PV921-SHD","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"801LIFESCIEN","SBS","Department of Small Business Services",,"259900000","0","0" +"850HLDNMTS03","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","205853" +"850HRMNALTVA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"801PUBLICPLA","SBS","Department of Small Business Services",,"90000","0.00","1578915.63" +"801PWDDAVI2","SBS","Department of Small Business Services",,"719000","0","0" +"801PWQCLUB","SBS","Department of Small Business Services",,"0","147847.33","5693809.81" +"801RISALTMAR","SBS","Department of Small Business Services",,"84000","1635.00","4543097.53" +"850HLDNMOUNS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","60000","0" +"850HLDNSINAH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","364000","0","0" +"042YC025-008","CUNY","City University of New York","Fixed Asset","0","15383.74","3312226.14" +"806HAM21MHEL","HPD","Housing Preservation and Development","Fixed Asset","117000","910803.96","1434051.61" +"801SAND1110","SBS","Department of Small Business Services",,"0","0","0" +"801PIER6PILE","SBS","Department of Small Business Services","Fixed Asset","4000","46132.39","1775339.20" +"841BRX2110","DOT","Department of Transportation","Fixed Asset","20530000","410992.98","965133.87" +"841HBQ49AV","DOT","Department of Transportation","Fixed Asset","98281000","9245095.35","3416766.37" +"841HBQ8019","DOT","Department of Transportation","Fixed Asset","64215000","1430457.08","931106.76" +"846P-312JJPG","DPR","Department of Parks and Recreation","Fixed Asset","55000","185047.37","3330112.89" +"801TRIANGLE","SBS","Department of Small Business Services",,"0","41234.66","9813765.34" +"801SBMTOSW","SBS","Department of Small Business Services",,"106491000","0","0" +"056PO-Q109","NYPD","Police Department","Fixed Asset","50000","0","0" +"126PV176-BLR","DCLA","Department of Cultural Affairs","Fixed Asset","10810000","0","0" +"801PWD9NICK","SBS","Department of Small Business Services","Lump Sum","31000","0","1218750" +"801PWD9QYWHA","SBS","Department of Small Business Services","Fixed Asset","0","0","667710" +"850SANDBROAD","DDC","Department of Design and Construction","Fixed Asset","0","0.00","301366.56" +"81913201101","HHC","Health and Hospitals Corporation","Fixed Asset","170000","0.00","3229725.76" +"801PWDB&GCMQ","SBS","Department of Small Business Services","Fixed Asset","3333000","0","0" +"81913201121","HHC","Health and Hospitals Corporation","Fixed Asset","65000","0","0" +"850SANDBOMB","DDC","Department of Design and Construction","Fixed Asset","4253000","9717542.96","20078818.84" +"801SIOUTLET","SBS","Department of Small Business Services",,"300000","0","11500000" +"801SPARCCUNY","SBS","Department of Small Business Services",,"512110000","23975114.81","24024884.19" +"801STFRANCI2","SBS","Department of Small Business Services",,"1359000","0","0" +"801PWDBHSHSO","SBS","Department of Small Business Services","Fixed Asset","0","0","6565000" +"801WLBKWSMM","SBS","Department of Small Business Services",,"2000000","0","0" +"801PIER79DOT","SBS","Department of Small Business Services","Fixed Asset","0","50507.33","1728869.64" +"81913201240","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.0","1759928.2" +"801WLWCLBWF","SBS","Department of Small Business Services",,"0","0","0" +"826SE-861A","DEP","Department of Environmental Protection","Lump Sum","2000000","0","0" +"856PWD308CB3","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","50000","0","0" +"8063280BRDWY","HPD","Housing Preservation and Development",,"0","0.00","3626275.05" +"850SE-414A","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"801PWDFHOUSE","SBS","Department of Small Business Services","Fixed Asset","358000","0","0" +"801PIER90","SBS","Department of Small Business Services","Fixed Asset","-161000","0.00","1941564.69" +"81913201301","HHC","Health and Hospitals Corporation","Fixed Asset","4157000","1234952.06","588588.94" +"801AGDSNAP2","SBS","Department of Small Business Services","Lump Sum","0","138169.46","2625205.54" +"806FTGHILL","HPD","Housing Preservation and Development",,"500000","0","0" +"806HAM06BOBK","HPD","Housing Preservation and Development",,"2210000","14842.21","4260928.76" +"850HWP2021RC","DDC","Department of Design and Construction",,"7247000","939844.81","1406809.43" +"850HWP2021TA","DDC","Department of Design and Construction",,"5795000","554694.2","1722959.8" +"850HWP21KQC","DDC","Department of Design and Construction",,"6593000","841621.9","1253428.1" +"806HAM17MASC","HPD","Housing Preservation and Development",,"55000","0.00","645978.88" +"801BAT4LAN","SBS","Department of Small Business Services","Fixed Asset","7866000","3696.63","6667859.05" +"801PIER92RH","SBS","Department of Small Business Services","Fixed Asset","0","702203.23","17130395.98" +"801PIER94RH","SBS","Department of Small Business Services","Fixed Asset","0","129.59","1097654.91" +"072C75VLAUND","DOC","Department of Correction","ITT, Vehicles, and Equipment","28000","1021440.20","693590.66" +"806HAM21MMMP","HPD","Housing Preservation and Development",,"2580000","3471102.63","8242573.31" +"806HAM22GOGR","HPD","Housing Preservation and Development",,"64965000","134357329.48","14229311.52" +"850HWP21KRC","DDC","Department of Design and Construction",,"26459000","326306.83","1999493.17" +"850HWP21MXQC","DDC","Department of Design and Construction",,"8151000","670325","1218699" +"126PV373SCI1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","108000","0","0" +"126PV375AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","220000","0","0" +"126PV409SYM5","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","7000","66.09","67789.48" +"126PV409SYM6","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","138000","0","0" +"126PV421-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","36000","0","0" +"126PV448BXN1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","517000","0","0" +"126PV464FILM","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","8000","8101.48","200049.82" +"126PV464RI5","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","163000","240.24","160737.46" +"126PV464SKID","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","120000","0","0" +"126PV464-VH2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","50000","0","0" +"126PV466VEH1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","100000","0","0" +"126PV467-BUS","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","517000","0","0" +"126PV467CMS4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","205000","0.00","166913.84" +"126PV467ELEV","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467ENVL","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467-EQ1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","250000","0","0" +"126PV467HVBS","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467-IT5","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","214000" +"126PV467-NET","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467TELE","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467-VEH","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467VEH1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","4000","0","155582" +"126PV467WIL1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","100000","0","0" +"126PV475-SND","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","902000","0","0" +"806HAM23VURD","HPD","Housing Preservation and Development",,"144245000","79901899.69","21915631.44" +"806HDC-HPD","HPD","Housing Preservation and Development",,"39885000","0","272784400" +"806HMFIRST25","HPD","Housing Preservation and Development",,"3385000","0","4892274" +"806HMFIRST26","HPD","Housing Preservation and Development",,"23108000","0","0" +"806HMFIRST27","HPD","Housing Preservation and Development",,"18000000","0","0" +"042HS033-007","CUNY","City University of New York","Fixed Asset","150000","1830334.25","19665.75" +"042HS039-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","130000","0.00","257185.68" +"801BATLUMP","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"806LACONIA","HPD","Housing Preservation and Development",,"250000","0","0" +"801AHGREEN","SBS","Department of Small Business Services","Fixed Asset","3071000","2946244.41","39284248.92" +"8011680LEXSP","SBS","Department of Small Business Services","Fixed Asset","0","0.00","368963.41" +"80134STHELI","SBS","Department of Small Business Services","Fixed Asset","53372000","2877845.00","5959444.83" +"80168201101","SBS","Department of Small Business Services","Fixed Asset","0","0.00","122326477.04" +"80168201102","SBS","Department of Small Business Services","Fixed Asset","0","0.00","127604373.89" +"801ALTFUELS","SBS","Department of Small Business Services","Fixed Asset","551000","0","0" +"8018890PHA3","SBS","Department of Small Business Services","Fixed Asset","1121000","234643.94","8328500.76" +"125AGPRESVEH","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","0","0","41888" +"125AGSNAPVEH","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","126000","0","337135" +"806N2797ATLN","HPD","Housing Preservation and Development",,"1750000","0","0" +"806NJAMAICA","HPD","Housing Preservation and Development",,"1000000","0","0" +"806NLORETO","HPD","Housing Preservation and Development",,"1026000","0","0" +"806RBRYANT","HPD","Housing Preservation and Development",,"500000","0","0" +"806RABRAHAM3","HPD","Housing Preservation and Development",,"500000","0","0" +"806RALLENAME","HPD","Housing Preservation and Development",,"1850000","0","0" +"806RANDER15","HPD","Housing Preservation and Development",,"250000","0","0" +"806RBEND","HPD","Housing Preservation and Development",,"775000","0","5000000" +"806RFINLAY","HPD","Housing Preservation and Development",,"120000","0","927000" +"806RBEREAN","HPD","Housing Preservation and Development",,"1000000","0","0" +"806RHUGHES","HPD","Housing Preservation and Development",,"50000","0","0" +"846P-206RHBF","DPR","Department of Parks and Recreation","Fixed Asset","812000","1338431.86","18447527.12" +"806RCALBC","HPD","Housing Preservation and Development",,"750000","0","0" +"806RPS186","HPD","Housing Preservation and Development",,"750000","0","0" +"806SNRBERGND","HPD","Housing Preservation and Development",,"6500000","0","0" +"806SNRFULTN","HPD","Housing Preservation and Development",,"6500000","0","0" +"806SNRKINGSB","HPD","Housing Preservation and Development",,"13000000","0","0" +"806SNRMORRS","HPD","Housing Preservation and Development",,"13000000","0","0" +"806SOCEAN","HPD","Housing Preservation and Development",,"3750000","0","0" +"806SRAMON","HPD","Housing Preservation and Development",,"500000","0","0" +"806SRANDALL","HPD","Housing Preservation and Development",,"1500000","0","0" +"806SOSIDE","HPD","Housing Preservation and Development",,"2406000","0","3094341" +"806WEST143","HPD","Housing Preservation and Development",,"511000","0","0" +"841HWR299B","DOT","Department of Transportation","Fixed Asset","2803000","0.00","1645898.82" +"806SROGERSPL","HPD","Housing Preservation and Development",,"1000000","0","0" +"806SSHARENYC","HPD","Housing Preservation and Development",,"2400000","0","0" +"806STDF1220","HPD","Housing Preservation and Development",,"1000000","0","0" +"806SURBANCEN","HPD","Housing Preservation and Development",,"3500000","0","0" +"816HL82EASTH","DOHMH","Department of Health and Mental Hygiene",,"600000","0","0" +"858DATACENTR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","10121000","472335.86","1962514.14" +"8018THSTREET","SBS","Department of Small Business Services","Fixed Asset","429000","0","356640" +"816HL82PCREP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","22095000","1738187.25","22550084.84" +"816HL82ACCV","DOHMH","Department of Health and Mental Hygiene",,"434000","0.0","571528.3" +"816HL82SFORE","DOHMH","Department of Health and Mental Hygiene",,"15000000","0","0" +"801GOVISWLL2","TGI","Trust for Governors Island","Fixed Asset","4875000","0","0" +"801PWDKIPS","SBS","Department of Small Business Services","Fixed Asset","0","0.00","462122.37" +"801PWDKIPS2","SBS","Department of Small Business Services","Fixed Asset","46000","495675.28","1296374.72" +"126PV088-LGT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2000","985.63","67789.89" +"816HLPCI1","DOHMH","Department of Health and Mental Hygiene","Lump Sum","44000","0","0" +"81911201001","HHC","Health and Hospitals Corporation",,"0","78583.88","3080844.85" +"81902201528","HHC","Health and Hospitals Corporation",,"36663000","8490490.11","110060524.64" +"126PV704HSA3","DCLA","Department of Cultural Affairs","Lump Sum","2813000","0","0" +"846NDF-HLND","DPR","Department of Parks and Recreation","Fixed Asset","0","100000.00","2416451.52" +"81902201623","HHC","Health and Hospitals Corporation",,"0","0.00","11969689.25" +"056PO163-90","NYPD","Police Department","ITT, Vehicles, and Equipment","0","0","0" +"81902202121","HHC","Health and Hospitals Corporation",,"-34000","341100.00","2649513.76" +"81902202221","HHC","Health and Hospitals Corporation",,"4907000","235041.60","17268899.30" +"81902202222","HHC","Health and Hospitals Corporation",,"25719000","0","0" +"81902202241","HHC","Health and Hospitals Corporation",,"0","321513.14","1660060.82" +"81902202401","HHC","Health and Hospitals Corporation",,"14798000","0","0" +"81902202403","HHC","Health and Hospitals Corporation",,"19000000","0","0" +"81902202404","HHC","Health and Hospitals Corporation",,"0","0","0" +"81902202405","HHC","Health and Hospitals Corporation",,"3000000","0","0" +"81902202406","HHC","Health and Hospitals Corporation",,"6000000","0","0" +"81902202436","HHC","Health and Hospitals Corporation",,"5000000","0","0" +"81902202447","HHC","Health and Hospitals Corporation",,"1000","0","2325744" +"81910202505","HHC","Health and Hospitals Corporation",,"949000","377598.20","571055.46" +"81910202601","HHC","Health and Hospitals Corporation",,"9447000","0","0" +"81911202141","HHC","Health and Hospitals Corporation",,"0","520.00","2966509.87" +"81911202204","HHC","Health and Hospitals Corporation",,"1659000","271250.23","3255205.16" +"81911202206","HHC","Health and Hospitals Corporation",,"34352000","15204354.54","199539533.03" +"827S136-449D","DSNY","Department of Sanitation",,"351000","713762.35","3237.65" +"801ERIVERSPS","SBS","Department of Small Business Services","Fixed Asset","0","0.00","8697801.91" +"126PV476ISC4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","65000","0","0" +"126PV490SHC1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","694000","0","0" +"81911202245","HHC","Health and Hospitals Corporation",,"0","0.0","2213337.3" +"81911202342","HHC","Health and Hospitals Corporation",,"22000","0","806196" +"806HAM08RUHI","HPD","Housing Preservation and Development","Lump Sum","0","0.00","4875142.27" +"806HAM08VLAD","HPD","Housing Preservation and Development","Fixed Asset","1000","24406.88","301142.47" +"81911202406","HHC","Health and Hospitals Corporation",,"361000","455227.38","204478.26" +"81911202445","HHC","Health and Hospitals Corporation",,"3000000","0","0" +"81911202608","HHC","Health and Hospitals Corporation",,"18000000","0","0" +"81912201903","HHC","Health and Hospitals Corporation",,"2000","0.00","40458.88" +"81912202101","HHC","Health and Hospitals Corporation",,"3354000","849381.2","96159.8" +"81912202201","HHC","Health and Hospitals Corporation",,"505000","248934.24","1745263.76" +"81912202441","HHC","Health and Hospitals Corporation",,"1000","119030","0" +"81913202140","HHC","Health and Hospitals Corporation",,"1000","0","2743648" +"841BRC270C","DOT","Department of Transportation",,"60000","0.00","734055081.35" +"042CA200MC04","CUNY","City University of New York","Fixed Asset","1000","194370.05","2648893.95" +"82626-STAB20","DEP","Department of Environmental Protection","Fixed Asset","0","11956348.48","189227845.79" +"826BB-226-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826BB-59","DEP","Department of Environmental Protection","Fixed Asset","-427000","0.00","287488200.56" +"826BB-61","DEP","Department of Environmental Protection","Fixed Asset","1750000","632719.84","13842890.37" +"819SAND2602","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","11000.00","368298.91" +"126PV423COMP","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","179446" +"826CS-NC-EKE","DEP","Department of Environmental Protection","Fixed Asset","11687000","3295982.72","51778119.42" +"850HWQ1196","DDC","Department of Design and Construction",,"7913000","364774.96","688785.04" +"850HWR005B1","DDC","Department of Design and Construction",,"0","877859.51","223895.90" +"850HWR005B2","DDC","Department of Design and Construction",,"22432000","0","0" +"850HWR1160","DDC","Department of Design and Construction",,"21867000","6571.72","171880.33" +"126PV653HSS2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV657LGT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","322000","228432.68","0" +"126PV683WTP4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","264000","4744.56","256694.8" +"81913202248","HHC","Health and Hospitals Corporation",,"99000","0.00","100770.96" +"81913202301","HHC","Health and Hospitals Corporation",,"8270000","178424.46","667272.54" +"81913202321","HHC","Health and Hospitals Corporation",,"0","0","2928450" +"846P-100BRH1","DPR","Department of Parks and Recreation","Fixed Asset","77000","22720.40","694758.22" +"81913202403","HHC","Health and Hospitals Corporation",,"1500000","0","0" +"81913202444","HHC","Health and Hospitals Corporation",,"1000","39930.00","472741.25" +"846P-102CEME","DPR","Department of Parks and Recreation","Fixed Asset","234000","30169.27","10111315.39" +"846P-100CDAR","DPR","Department of Parks and Recreation","Fixed Asset","172000","1980.02","1219463.55" +"801WHITEHALL","SBS","Department of Small Business Services","Fixed Asset","1235000","1450302.65","190407980.87" +"801WILLETINF","SBS","Department of Small Business Services","Fixed Asset","0","325000.00","51938524.87" +"81924202344","HHC","Health and Hospitals Corporation",,"0","0.00","79858.02" +"81924202345","HHC","Health and Hospitals Corporation",,"44000","1287426.65","164375.66" +"806HAM16CRCC","HPD","Housing Preservation and Development","Fixed Asset","368000","0","0" +"806HAM16WRSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","0","0" +"806HAM17HRPL","HPD","Housing Preservation and Development","Fixed Asset","0","12475.68","1264358.45" +"806HAM17CRGR","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","436610.93" +"856PW310COOL","DCAS","Department of Citywide Administrative Services","Fixed Asset","402000","0.0","5481.1" +"846P-3ANCH02","DPR","Department of Parks and Recreation","Fixed Asset","0","64352.00","11753989.23" +"81925202140","HHC","Health and Hospitals Corporation",,"0","2986937.38","253577.80" +"81925202141","HHC","Health and Hospitals Corporation",,"0","0.00","245285.28" +"81925202145","HHC","Health and Hospitals Corporation",,"0","0.00","433326.12" +"81925202403","HHC","Health and Hospitals Corporation",,"10000000","0","0" +"81925202405","HHC","Health and Hospitals Corporation",,"35000000","0","0" +"81925202407","HHC","Health and Hospitals Corporation",,"1765000","11125","33375" +"81925202443","HHC","Health and Hospitals Corporation",,"1000","0","131095" +"81926201940","HHC","Health and Hospitals Corporation",,"10000","0","66000" +"126PV694-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.0","94685.2" +"126PV740-AVI","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV741-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","219000","0.00","193154.09" +"126PV767RTF4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","298000","0","0" +"126PV767-VAN","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2000","0","43265" +"126PV772-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","1000","0","147457" +"126PV829HS04","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","311000","0","0" +"126PV831-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","1000","0","65131" +"126PV853WIRE","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2000","0","92413" +"126PV921SPK1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","80000","0","0" +"126PV927DFIT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV933PIA2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","314000","0","313572" +"126PV947-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","41783.05" +"806HAM17WSCR","HPD","Housing Preservation and Development","Fixed Asset","140000","0","0" +"806N1020CAR","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806N1828VYSE","HPD","Housing Preservation and Development",,"500000","0","0" +"806N4275PARK","HPD","Housing Preservation and Development","Fixed Asset","202000","0","298382" +"806NCROSS","HPD","Housing Preservation and Development",,"1650000","0","227000" +"81926202045","HHC","Health and Hospitals Corporation",,"0","0","47000" +"81929202105","HHC","Health and Hospitals Corporation",,"39000","0","0" +"801BKBIOTE3","SBS","Department of Small Business Services","Lump Sum","29000","0.00","13230147.11" +"81937202003","HHC","Health and Hospitals Corporation",,"14145000","1826298.74","9146689.79" +"801BKCRUISE","SBS","Department of Small Business Services","Fixed Asset","1200000","0","0" +"801BNYINF-BD","BNY","Brooklyn Navy Yard","Fixed Asset","372618000","0","2365583" +"841TFD503-07","DOT","Department of Transportation","Fixed Asset","60000","60000","0" +"801GOVISLND2","TGI","Trust for Governors Island","Fixed Asset","1527000","0","0" +"806MHANYSH","HPD","Housing Preservation and Development",,"340000","0","0" +"841HBK1023","DOT","Department of Transportation","Fixed Asset","1306000","15979243.41","308654814.36" +"81912201601","HHC","Health and Hospitals Corporation","Fixed Asset","1000","0.00","485167.46" +"81926201402","HHC","Health and Hospitals Corporation","Fixed Asset","36000","0.00","929340.49" +"819SAND2605","HHC","Health and Hospitals Corporation",,"19425000","153275.92","72091657.99" +"819SANDCOFW","HHC","Health and Hospitals Corporation",,"114517000","4679839.36","2432287.94" +"801HLSAMARIT","SBS","Department of Small Business Services","Fixed Asset","98000","937807","0" +"801HUNTLUMP","SBS","Department of Small Business Services","Lump Sum","10320000","0","0" +"801P-2GPWBOX","SBS","Department of Small Business Services","Fixed Asset","16957000","16004895.09","2788081.91" +"801P-2GPWNB","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","1737000","0.00","19453744.09" +"826BWS-SOGR","DEP","Department of Environmental Protection",,"0","0","0" +"81925201262","HHC","Health and Hospitals Corporation","Fixed Asset","0","78015.94","7626675.52" +"81925201401","HHC","Health and Hospitals Corporation","Fixed Asset","1246000","0.00","1951.85" +"81926201101","HHC","Health and Hospitals Corporation","Fixed Asset","2465000","0.00","20678215.97" +"81926201102","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","3114014.96" +"81926201641","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.0","189281.9" +"826CAT-475","DEP","Department of Environmental Protection",,"28191000","2276506.74","3390296.18" +"850PV467-ATC","DDC","Department of Design and Construction","Fixed Asset","0","0","983408" +"801CSGFEC","SBS","Department of Small Business Services","Fixed Asset","3386000","0","0" +"846P-3BENNSF","DPR","Department of Parks and Recreation","Fixed Asset","240000","284376.81","1192364.28" +"806HAM16AMUP","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"826GI-TIBBET","DEP","Department of Environmental Protection",,"144891000","14395781.20","1890541.09" +"826HED598","DEP","Department of Environmental Protection",,"1494000","0","0" +"126PV949AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","25000","0","166658" +"126PV949-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","82137.36" +"126PV958-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","140000","0","0" +"126PV961-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","201000","0","0" +"126PV962EQU1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","15000","0.00","70391.06" +"801PWDGOD","SBS","Department of Small Business Services","Fixed Asset","0","0.00","7684774.25" +"81927201702","HHC","Health and Hospitals Corporation","Fixed Asset","936000","11831.38","77468.62" +"81929201610","HHC","Health and Hospitals Corporation","Lump Sum","5346000","2722383.48","13789000.10" +"81929201611","HHC","Health and Hospitals Corporation","Lump Sum","216000","0.00","840851.58" +"846P-2RHBALL","DPR","Department of Parks and Recreation","Fixed Asset","690000","691545.59","15477252.17" +"826HVR-400","DEP","Department of Environmental Protection",,"66000000","0","0" +"826HVR-500","DEP","Department of Environmental Protection",,"20049000","1591316.14","5159708.44" +"826JAMREZONE","DEP","Department of Environmental Protection",,"315000000","0","0" +"826JPSCOMPEH","DEP","Department of Environmental Protection",,"6000000","0","0" +"126PV962-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","45000","0","0" +"126PV962LIVE","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","68000","0","0" +"126PV962TNK3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","60000","0","0" +"126PV963AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","2806.38","143897.51" +"126PV985-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV989-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","148000","0","0" +"826MED677","DEP","Department of Environmental Protection",,"20376000","0","0" +"801PWDJBOD2","SBS","Department of Small Business Services",,"0","0.00","597.31" +"126PV144-FAC","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"826PW-EMSN","DEP","Department of Environmental Protection",,"37715000","0","0" +"801YWHA92","SBS","Department of Small Business Services","Fixed Asset","630000","0","0" +"801PV815HSG","SBS","Department of Small Business Services",,"303000","0","0" +"81929201640","HHC","Health and Hospitals Corporation","Fixed Asset","413000","26918.63","2059710.36" +"81929201742","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","9955.69","505979.17" +"126PV278-MAD","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV290-N42","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","7000","325922.49","397689.51" +"81933201505","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","17000","0","3337842" +"81933201602","HHC","Health and Hospitals Corporation","Fixed Asset","145000","728549.58","1931144.40" +"81933201610","HHC","Health and Hospitals Corporation","Fixed Asset","341000","54580.11","3484624.25" +"81933201740","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","448681" +"826RED391A","DEP","Department of Environmental Protection",,"31476000","0","0" +"826REG-24D-L","DEP","Department of Environmental Protection",,"50000","440561.57","10124354.50" +"826SEK20087","DEP","Department of Environmental Protection",,"126000000","0","0" +"126PV991VEH1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","54000","0","0" +"126PV993-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","15000","75.40","137572.13" +"126PV994-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","93000","0","0" +"126PV994FLU3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","71000","0","0" +"126PV994-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","74000","0","0" +"826SEQ200601","DEP","Department of Environmental Protection",,"6414000","0","0" +"846P-3BOTWAT","DPR","Department of Parks and Recreation","Fixed Asset","0","23399.42","339437.33" +"826WPSOGR","DEP","Department of Environmental Protection",,"217322000","0","0" +"826WSRRF-102","DEP","Department of Environmental Protection",,"109242000","0","0" +"827S129SIEQP","DSNY","Department of Sanitation",,"783000","0","0" +"126PV430WNET","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV467APTR","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"827SANDBK11G","DSNY","Department of Sanitation",,"0","2119.07","19554.95" +"801GOVISWTR2","TGI","Trust for Governors Island","Fixed Asset","17292000","746350.88","640687.12" +"801GREENPNT","SBS","Department of Small Business Services","Fixed Asset","407000","0.00","11232633.85" +"841HBCITYWIM","DOT","Department of Transportation",,"4500000","0","0" +"801GREENPTM","SBS","Department of Small Business Services","Fixed Asset","0","0.00","584804.87" +"846P-3BPPLGD","DPR","Department of Parks and Recreation","Fixed Asset","0","29880.17","17660031.04" +"846P-3BWWAT1","DPR","Department of Parks and Recreation",,"1266000","291827.36","294111.82" +"827SANDYRL25","DSNY","Department of Sanitation",,"844000","0","0" +"841HBQ1203","DOT","Department of Transportation","Fixed Asset","9217000","14153816.84","146850482.34" +"841HBK548","DOT","Department of Transportation",,"100000","29529.61","1893884.21" +"841HBKA24308","DOT","Department of Transportation",,"0","0","0" +"841HBM1165","DOT","Department of Transportation",,"8105000","35948071.23","133141753.30" +"841HBGATES","DOT","Department of Transportation","Fixed Asset","217000","1330506.8","832045.2" +"826HP-238-L","DEP","Department of Environmental Protection","Fixed Asset","30331000","74630846.09","321362723.56" +"826HP-239-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","317523000","24410586.12","11536924.48" +"826HP-240-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826HP-241-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"126PV995-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","24000","1315.01","113978.55" +"841HBX1190","DOT","Department of Transportation",,"9943000","51977249.41","26983045.22" +"841HBX1215","DOT","Department of Transportation",,"56000","3088374.94","19909024.62" +"801HRDN889","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801HRFIAO002","SBS","Department of Small Business Services","Lump Sum","0","921032","0" +"801HTPRODUC2","SBS","Department of Small Business Services","Fixed Asset","0","27831.39","7020465.44" +"801P-213CNTR","SBS","Department of Small Business Services","Fixed Asset","0","0","16100000" +"801PWDSEPHYC","SBS","Department of Small Business Services","Fixed Asset","251000","0","0" +"819CIH1","HHC","Health and Hospitals Corporation","Lump Sum","0","0","37912777" +"850PV467BHPE","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5038829.84" +"841HWK002397","DOT","Department of Transportation",,"55000000","0","0" +"841HWK00503","DOT","Department of Transportation",,"2000000","0","0" +"841TF18-2017","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841TF18-2020","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWPLZ016Q","DOT","Department of Transportation",,"15000000","0","0" +"801PWM249LEE","SBS","Department of Small Business Services","Fixed Asset","250000","0","60000" +"801P-213CONS","SBS","Department of Small Business Services","Fixed Asset","101000","0","37600817" +"801P-213EQUP","SBS","Department of Small Business Services","Fixed Asset","1000","0","6498733" +"801MOOREST","SBS","Department of Small Business Services","Fixed Asset","0","0.00","537104.02" +"801NEWKIRK","SBS","Department of Small Business Services","Fixed Asset","0","6518.54","456481.46" +"841SEEDHWX03","DOT","Department of Transportation",,"42000000","0","0" +"846P-104DRUN","DPR","Department of Parks and Recreation","Fixed Asset","130000","0","135000" +"841SEEDHWX05","DOT","Department of Transportation",,"34000000","0","0" +"841TF50309","DOT","Department of Transportation",,"29000","0","0" +"841TF50310","DOT","Department of Transportation",,"36000","0","0" +"841TF50312","DOT","Department of Transportation",,"660000","0","0" +"841TFCWSBST","DOT","Department of Transportation",,"1872000","351939.41","1332677.59" +"801LIGHTHOUS","SBS","Department of Small Business Services","Fixed Asset","28000","0.00","7607766.85" +"801PWMNEW4","SBS","Department of Small Business Services","Fixed Asset","1011000","0","0" +"039LQGLFFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","65000","0.00","181903.24" +"038LBK16HLRF","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"856PW326OEM3","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"042OSW01ME25","CUNY","City University of New York",,"670000","0","0" +"856PWD99813","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0.00","417741.20" +"846SANDY3-20","DPR","Department of Parks and Recreation","Fixed Asset","139000","0.00","563960.07" +"042BX022-009","CUNY","City University of New York","Fixed Asset","0","5341.21","952983.79" +"039LQQWFFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","6000","0.00","1488113.95" +"042HU022-009","CUNY","City University of New York","Fixed Asset","36000","3798.70","570304.62" +"042LM058-995","CUNY","City University of New York","Fixed Asset","0","0.0","128515.3" +"856PW326ZM09","DCAS","Department of Citywide Administrative Services",,"0","132216.66","409022.97" +"850CO278FA3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","81360000","6179555.02","3427236.80" +"850LNEA13TNK","DDC","Department of Design and Construction","Fixed Asset","0","21544.12","4056173.76" +"850PV262-AUD","DDC","Department of Design and Construction","Lump Sum","959000","162693.54","8979761.23" +"071HH112ETEU","DHS","Department of Homeless Services","Fixed Asset","2400000","29315.29","170684.71" +"071HH112GDFC","DHS","Department of Homeless Services","Fixed Asset","7734000","16154.77","143595.23" +"850LNEA13STG","DDC","Department of Design and Construction","Fixed Asset","1000","8539.61","6146905.50" +"850LNEAL15RT","DDC","Department of Design and Construction","Fixed Asset","0","0.00","1597240.43" +"846P-4ANCH01","DPR","Department of Parks and Recreation","Fixed Asset","23000","173028.05","3319312.06" +"801AGD-KOSH1","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","6006000","1486157.43","4519469.57" +"801BATLOGIST","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","0" +"801BEDFRDAVE","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","320000","0","98000" +"057F204MSUTK","FDNY","Fire Department","Lump Sum","0","0","0" +"846P-3RVSDHP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","245260.42" +"846P-3CPIAAP","DPR","Department of Parks and Recreation","Fixed Asset","1623000","921813.17","4423576.83" +"042ST009-006","CUNY","City University of New York","Fixed Asset","0","1339.50","164683.19" +"042HU023-011","CUNY","City University of New York","Fixed Asset","0","0.00","3330630.97" +"856CO278TOIL","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"126PV834GSMT","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"846P-312FPTH","DPR","Department of Parks and Recreation","Fixed Asset","1082000","0","0" +"846P-1CRACKA","DPR","Department of Parks and Recreation",,"4000","0.0","70855.7" +"850SANBROAD2","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850LNEM12MLB","DDC","Department of Design and Construction","Fixed Asset","609000","81312.92","1738728.32" +"042YC062-020","CUNY","City University of New York",,"978000","853714","0" +"056PO208-CAD","NYPD","Police Department",,"0","465834.44","64557307.81" +"056PO208ICAD","NYPD","Police Department",,"9662000","0.00","12414789.56" +"042CC026-013","CUNY","City University of New York","Fixed Asset","6096000","0","0" +"801SSSPIER16","SBS","Department of Small Business Services","Fixed Asset","0","0.00","1633725.35" +"056SANDCD10","NYPD","Police Department",,"604000","26588.88","117295.50" +"056SANDCD2","NYPD","Police Department",,"139000","23674.20","77584.00" +"056PO79RNSA","NYPD","Police Department",,"3800000","0","0" +"042BA017-015","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0","74396" +"042BX041-017","CUNY","City University of New York","Fixed Asset","5000","0.00","24840.56" +"850HLDNPLAND","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"125AGDAMICO","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","50000","0","0" +"856CO276EXT2","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO278ELV","DCAS","Department of Citywide Administrative Services","Fixed Asset","25513000","0","0" +"856CO293201A","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.00","1751106.99" +"801BEDSTURP","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","5000","0.00","7289543.01" +"801BMTCRANE","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","15883000","156901.44","8408758.06" +"856CO293ELEC","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","434024.90","19230400.70" +"042JJ025-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","350000","0","0" +"042JJ026-017","CUNY","City University of New York","Fixed Asset","33000","377.50","242114.08" +"850CSDNCHILD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","145000","0","0" +"042CA045-015","CUNY","City University of New York","Fixed Asset","0","0","437140" +"856PW77GLDEX","DCAS","Department of Citywide Administrative Services","Fixed Asset","1000","7159.79","1641995.78" +"850CJCREN","DDC","Department of Design and Construction","Fixed Asset","868000","5663624.14","58747454.41" +"850CO283TOIL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4520000","9857153.70","3575589.50" +"057F109HAZ16","FDNY","Fire Department",,"2170000","0","1676977" +"850CO80ROOF2","DDC","Department of Design and Construction","Fixed Asset","65000","309817.08","15247333.50" +"057F109-RM","FDNY","Fire Department",,"61804000","0","0" +"057F109-RM22","FDNY","Fire Department",,"30000","4685665.57","17595891.63" +"057F109-RM23","FDNY","Fire Department",,"851000","28226979.33","15256101" +"042LM009-003","CUNY","City University of New York","Fixed Asset","23000","0.00","102179.20" +"042CC027-014","CUNY","City University of New York","Fixed Asset","0","0","0" +"856PW326DOF4","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","2970966.82","13344999.66" +"856PW326DOF5","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","6849.36","15599815.46" +"806RCASAM","HPD","Housing Preservation and Development","Fixed Asset","250000","0","0" +"856CO293EV","DCAS","Department of Citywide Administrative Services","Fixed Asset","8083000","48223847.34","3901152.66" +"850HL82CHNWH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000000","0","0" +"111NYPD5DATA","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","22165718.36" +"856PW80ELEC","DCAS","Department of Citywide Administrative Services","Fixed Asset","14300000","0","0" +"042MC038-017","CUNY","City University of New York","Fixed Asset","1000","54287.00","209094.00" +"850HLDNAPICH","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"856CO296EV","DCAS","Department of Citywide Administrative Services","Fixed Asset","24573000","879406.32","704933.68" +"850HLDNLONGS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMAIMD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMAIMO","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLDNMAIMS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMAM44","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"057F204RANDL","FDNY","Fire Department",,"188008000","0","0" +"850HLDNMAM67","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"057F204TRAN1","FDNY","Fire Department",,"22005000","733749.75","524489.22" +"856PWD5BA2","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO296FA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PWD78SSCT","DCAS","Department of Citywide Administrative Services","Fixed Asset","200000","0","0" +"850HLKNNYBC","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"856CO300415A","DCAS","Department of Citywide Administrative Services","Fixed Asset","100000","0.00","9364156.07" +"850HRDNOPPOR","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"057F212BFPPI","FDNY","Fire Department",,"722000","0","0" +"850PWD9WILL","DDC","Department of Design and Construction","Lump Sum","2000000","0","0" +"850HH115BWFA","DDC","Department of Design and Construction","Fixed Asset","192000","79297.64","1606187.89" +"057F212ROLL2","FDNY","Fire Department",,"0","0","0" +"057F212SCHED","FDNY","Fire Department",,"2103000","0","0" +"057FD109BFU8","FDNY","Fire Department",,"0","0.00","44226.77" +"057FD109CERE","FDNY","Fire Department",,"5000","0.00","114493.61" +"057FD109FMVN","FDNY","Fire Department",,"150000","0","0" +"057FD109VANS","FDNY","Fire Department",,"60000","0","0" +"042YC001-010","CUNY","City University of New York","ITT, Vehicles, and Equipment","448000","0","0" +"856CO300FIRE","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","16744000","0","0" +"042YC027-008","CUNY","City University of New York","Fixed Asset","199000","0","0" +"856CO304HEA2","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO304HEA5","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"846P-2BEREQ2","DPR","Department of Parks and Recreation",,"0","0.00","1024589.58" +"042YC054-017","CUNY","City University of New York","Fixed Asset","640000","0","0" +"856CO301FA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"846P-2BQGRN","DPR","Department of Parks and Recreation",,"0","0","0" +"850BED-778A","DDC","Department of Design and Construction","Fixed Asset","1363000","2489889.33","13348722.58" +"056NDF-PENN","NYPD","Police Department","Fixed Asset","0","6000.00","9414619.94" +"806HAM15ODPA","HPD","Housing Preservation and Development","Fixed Asset","100000","0","0" +"057FK109ATVS","FDNY","Fire Department",,"160000","0","0" +"057FK19EMS39","FDNY","Fire Department",,"323000","0","0" +"057FQ109BLWR","FDNY","Fire Department",,"53000","0","0" +"057FQ109LOAD","FDNY","Fire Department",,"258000","235980.44","0" +"850HLDN16LIJ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDN19FHH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDN21AMB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","185365" +"850HH112SWFA","DDC","Department of Design and Construction","Fixed Asset","877000","685992.18","1621347.35" +"068ACSWIFI2","ACS","Administration for Children's Services",,"1392000","0","0" +"068DYNAMICS","ACS","Administration for Children's Services",,"5607000","40","4841524" +"068FIREWALLP","ACS","Administration for Children's Services",,"0","0","0" +"801P-3E103CG","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"071HH105CARF","DHS","Department of Homeless Services",,"3102000","0","0" +"071HH105CEQR","DHS","Department of Homeless Services",,"4342000","3282863.72","0" +"126PV196IRAU","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","43962.01" +"071HH112FWBA","DHS","Department of Homeless Services",,"3072000","375828.66","596563.34" +"071HH105JRHO","DHS","Department of Homeless Services",,"2300000","0","0" +"111PO187-PH2","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","35722.72" +"806HAM13BRPG","HPD","Housing Preservation and Development","Fixed Asset","42000","0.00","408487.66" +"806HAM15SHGC","HPD","Housing Preservation and Development","Fixed Asset","0","0.0","559526.8" +"071HH112BOFW","DHS","Department of Homeless Services",,"3529000","10250.00","168381.17" +"126PV262-SEC","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","94447" +"806FAC08","HPD","Housing Preservation and Development","Lump Sum","310000","0","2375000" +"806FARMBLVD1","HPD","Housing Preservation and Development","Lump Sum","44000","0","0" +"806GATEWAY","HPD","Housing Preservation and Development","Fixed Asset","9527000","0","58305769" +"846P-312FTSR","DPR","Department of Parks and Recreation","Fixed Asset","0","61822.63","1543828.10" +"071HH115JEXT","DHS","Department of Homeless Services",,"3596000","0","0" +"071HH115JCFA","DHS","Department of Homeless Services",,"300000","0","0" +"806HAM13BXVA","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","0","3318648" +"071HH-MRBU","DHS","Department of Homeless Services",,"67561000","0","0" +"071HHNC006","DHS","Department of Homeless Services",,"200000","0","0" +"072C110ARMIS","DOC","Department of Correction",,"1813000","0.00","1441652.25" +"072C110GENOC","DOC","Department of Correction",,"3909000","2915500","0" +"806SRL1AIDS","HPD","Housing Preservation and Development","Fixed Asset","900000","0","290669" +"81913201602","HHC","Health and Hospitals Corporation","Fixed Asset","357000","2092546.33","11644099.21" +"81913201603","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3017000","4482217.47","15943734.73" +"072C117CSTNE","DOC","Department of Correction",,"412000","412061.33","0" +"81937201301","HHC","Health and Hospitals Corporation","Fixed Asset","1360000","990080.97","7025930.25" +"856PW324IMS","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","4085000","0","0" +"801FOODBANK7","SBS","Department of Small Business Services","Fixed Asset","13000","0","0" +"072C117CYBER","DOC","Department of Correction",,"473000","182870","0" +"801FOUNTAINH","SBS","Department of Small Business Services","Fixed Asset","0","0.00","732377.87" +"126PV345-PRT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","105000","0.00","37191.54" +"856PW325STA3","DCAS","Department of Citywide Administrative Services","Fixed Asset","100000","130226.55","4077951.60" +"819ACEHHC401","HHC","Health and Hospitals Corporation","Fixed Asset","274000","0.00","9188217.02" +"072C117FACE","DOC","Department of Correction",,"728000","0","0" +"072C117GOPC","DOC","Department of Correction",,"243000","0","0" +"819ACEHHC403","HHC","Health and Hospitals Corporation","Fixed Asset","0","201.86","10681207.14" +"826SF-BNR-CI","DEP","Department of Environmental Protection","Fixed Asset","21000000","2650433.14","63173322.62" +"072C117IBANK","DOC","Department of Correction",,"2200000","0","0" +"826TI-167-L","DEP","Department of Environmental Protection","Fixed Asset","0","925691.43","4913663.48" +"125AGCBURDEN","DFTA","Department for the Aging","Fixed Asset","400000","0","0" +"072C117INFOR","DOC","Department of Correction",,"1453000","0.00","1489086.86" +"850PWDBRIDGE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","284878" +"850PWDBXPARE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","300000","0","0" +"056PO79PA13","NYPD","Police Department","Fixed Asset","16382000","606972.95","345079.5" +"806HAM15ICNB","HPD","Housing Preservation and Development","Fixed Asset","0","11890.76","1779155.85" +"072C117MULE","DOC","Department of Correction",,"1650000","1000844.75","0" +"806HAM15RFGR","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"072C117OMNI","DOC","Department of Correction",,"574000","183000","0" +"072C117PALRM","DOC","Department of Correction",,"3060000","2869496.13","0" +"072C117PSUPP","DOC","Department of Correction",,"382000","0","0" +"072C117RHOS","DOC","Department of Correction",,"1758000","0","0" +"072C117SAN","DOC","Department of Correction",,"15530000","14990.80","5511766.20" +"072C117UPTV","DOC","Department of Correction",,"1000","206334","306150" +"072C117VINE","DOC","Department of Correction",,"441000","390276","0" +"072C117AUDIT","DOC","Department of Correction","Lump Sum","1025000","66525.62","1567735.26" +"846P-307RIDS","DPR","Department of Parks and Recreation",,"0","0","0" +"819ACEHHC406","HHC","Health and Hospitals Corporation","Fixed Asset","0","11684.99","4153378.12" +"826R-151-L","DEP","Department of Environmental Protection","Fixed Asset","63400000","0.00","24633.16" +"841BRC231F","DOT","Department of Transportation","Fixed Asset","15134000","40973248.98","371549751.52" +"841BRX287S","DOT","Department of Transportation","Lump Sum","0","3895423.79","67305668.54" +"856PW326ZM03","DCAS","Department of Citywide Administrative Services","Fixed Asset","226000","0","0" +"856PW340CABL","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","80000","0","155420" +"841HWPLZ015Q","DOT","Department of Transportation","Fixed Asset","8717000","0","0" +"850LQD122GL2","DDC","Department of Design and Construction","Fixed Asset","0","25029.69","9878925.35" +"850LQD122-WN","DDC","Department of Design and Construction","Fixed Asset","0","181238.06","2160311.4" +"850P-213CNTR","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5077449.36" +"096HR110CAOD","HRA","Human Resources Administration",,"0","14690.00","0" +"096HR110ONCS","HRA","Human Resources Administration",,"367000","8237.60","1223340.96" +"042HS054-017","CUNY","City University of New York","Fixed Asset","15000","461987.48","7171351.52" +"801BPMCBUA","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","2000000","0","0" +"801CLEANYC","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","1953000" +"801CODETVHCL","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","6000","0.00","44381.22" +"801COMHEALNT","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","1000000","0","0" +"042YC022-007","CUNY","City University of New York","Fixed Asset","411000","0","0" +"126PVN814DIA","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"846P-3GTACQM","DPR","Department of Parks and Recreation",,"447000","0","3100" +"846P-3HRPCW1","DPR","Department of Parks and Recreation",,"0","0","0" +"042YC028-008","CUNY","City University of New York","Fixed Asset","145000","0","0" +"846P-3HRPGRD","DPR","Department of Parks and Recreation",,"0","0.00","35260.84" +"126PV5763RD","DCLA","Department of Cultural Affairs","Fixed Asset","0","28862.57","857095.43" +"126PV464GLYN","DCLA","Department of Cultural Affairs","Fixed Asset","515000","0","0" +"841HWMM009","DOT","Department of Transportation","Fixed Asset","133000","67850","190740" +"096HR120CAO2","HRA","Human Resources Administration",,"4114000","0","0" +"096HR120CAPO","HRA","Human Resources Administration",,"2782000","0","0" +"841HWQ788","DOT","Department of Transportation","Fixed Asset","27453000","0.00","125041.01" +"841HWQMASPET","DOT","Department of Transportation","Fixed Asset","94000000","0","0" +"096HR120CEQ3","HRA","Human Resources Administration",,"20556000","16027928.73","0" +"850LQSUADA","DDC","Department of Design and Construction","Fixed Asset","200000","0.00","514714.56" +"096HR120COLO","HRA","Human Resources Administration",,"120000000","2180.76","7821794.82" +"096HR120CUR2","HRA","Human Resources Administration",,"7730000","1749571.3","0" +"096HR120CYBE","HRA","Human Resources Administration",,"14574000","2425.77","5874938.23" +"096HR120FF13","HRA","Human Resources Administration",,"0","365480.07","14861569.31" +"096HR120INFO","HRA","Human Resources Administration",,"747000","0","0" +"096HR120OMNY","HRA","Human Resources Administration",,"0","60810.00","2234079.00" +"096HR120OPTN","HRA","Human Resources Administration",,"23000","11640.00","2669694.38" +"096HR120PSEC","HRA","Human Resources Administration",,"2002000","0","0" +"096HR120VRTS","HRA","Human Resources Administration",,"1162000","0","0" +"096HR258AVEB","HRA","Human Resources Administration",,"1438000","0","0" +"850PV669-NPC","DDC","Department of Design and Construction","Fixed Asset","3461000","10306792.44","14640454.21" +"850PV678-BCA","DDC","Department of Design and Construction","Lump Sum","521000","453116.42","6907847.46" +"111BIC4SALEF","UK","Unknown",,"0","19799.28","970617.95" +"111BIC6LPTP","UK","Unknown",,"195000","0","0" +"850PW3172L","DDC","Department of Design and Construction","Fixed Asset","14304000","292610.53","697453.91" +"850PW317WOR","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850PW322X7","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"111CCN6PADV","UK","Unknown",,"165000","0","0" +"111CITY5NGCH","UK","Unknown",,"5000000","0","0" +"111CITY6DRON","UK","Unknown",,"66368000","0","0" +"856PW357EXTR","DCAS","Department of Citywide Administrative Services","Fixed Asset","570000","111560.92","30829832.23" +"856PW77207TU","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"056PO79BMAII","NYPD","Police Department","Fixed Asset","2415000","0","0" +"846P-1FERRY8","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","12298482.24" +"846P-1PELBRV","DPR","Department of Parks and Recreation","Fixed Asset","741000","50429.91","3266082.51" +"846P-1PELSHO","DPR","Department of Parks and Recreation","Fixed Asset","0","99027.10","3123571.54" +"850PW77417DA","DDC","Department of Design and Construction","Fixed Asset","1833000","784375.00","9041889.34" +"850PW77DCA","DDC","Department of Design and Construction","Fixed Asset","0","12898.43","4552368.19" +"111DCA6CRMU","UK","Unknown",,"2458000","0","0" +"850PW77GLDWN","DDC","Department of Design and Construction","Fixed Asset","264000","0","0" +"850S136-419L","DDC","Department of Design and Construction","Fixed Asset","200000","22623.29","5030205.57" +"111DDC5ACPL","UK","Unknown",,"3500000","3474880.28","0" +"111DOB4NOWP5","UK","Unknown",,"0","6236712.78","3609799.22" +"111DOB5NOWP6","UK","Unknown",,"7032000","0","0" +"111DOBXNOWP3","UK","Unknown",,"-1297000","3816999.32","18410496.05" +"111DOF2ACCT","UK","Unknown",,"579000","0.0","1546376.4" +"111DOF2CYBER","UK","Unknown",,"0","0","0" +"111DOF2PTSDR","UK","Unknown",,"250000","0","0" +"111DOF2PTSFC","UK","Unknown",,"1289000","455100","1738075" +"111DOF3PLATE","UK","Unknown",,"585000","13770","1731735" +"111DOIT6MELA","UK","Unknown",,"277762000","0.00","276520359.25" +"111DOIT6PALO","UK","Unknown",,"38667000","0.0","38667099.1" +"111DOP5NGFW","UK","Unknown",,"1068000","1067121","0" +"801CWFSBARGE","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","16556000","2413851.59","104176851.08" +"846P-3HBCGRD","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"850PWDHISP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","102000","0","0" +"827SANDBX12G","DSNY","Department of Sanitation","Fixed Asset","2633000","2189638.83","468995.58" +"827SANDMAN3G","DSNY","Department of Sanitation","Fixed Asset","3652000","0","0" +"111OATH2LMS","UK","Unknown",,"310000","0","0" +"111OATH2PCSU","UK","Unknown",,"150000","0","84451" +"111OATH2SUMF","UK","Unknown",,"162000","0","0" +"111OMB5LPTP","UK","Unknown",,"292000","0","270009" +"111OMB5PARSL","UK","Unknown",,"418000","0","0" +"111OMB6CGDYN","UK","Unknown",,"482000","0","0" +"111OMB6GPUVD","UK","Unknown",,"118000","0","0" +"111OMWBE4CHT","UK","Unknown",,"855000","0","0" +"111OTI6EMGAS","UK","Unknown",,"0","0","0" +"111PO111-17","UK","Unknown",,"6000000","0.00","1348981.53" +"111PO111-2D","UK","Unknown",,"21150000","0","24985" +"846P-4HCOVPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2217011.69" +"850PV236SGD2","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5964400.07" +"846P-4AQAFRG","DPR","Department of Parks and Recreation",,"0","0.00","98646.43" +"846P-4BWIDEF","DPR","Department of Parks and Recreation",,"0","325.00","1693059.60" +"801CWFSFERRY","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","6000000" +"801CWFSFERY2","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","19000","0.00","155630014.05" +"801SANDG1HP","SBS","Department of Small Business Services","Fixed Asset","3137000","5112894.24","19735931.77" +"801SANDG3BAT","SBS","Department of Small Business Services","Fixed Asset","20254000","340325.20","1002662.15" +"841TFK50312","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","0","221529" +"111PO163DCLM","UK","Unknown",,"0","1627.5","11193093.5" +"111PO163-DOM","UK","Unknown",,"3966000","42856.86","3922716.97" +"111PO163-LPR","UK","Unknown",,"50000","1718246.35","11509515.65" +"111PO163LTOP","UK","Unknown",,"515000","514008","0" +"111PO163MYAP","UK","Unknown",,"1630000","0","0" +"111PO163-UPS","UK","Unknown",,"719000","0","0" +"111PO185-10A","UK","Unknown",,"1347000","0.00","1724788.99" +"111PO185-15C","UK","Unknown",,"8816000","0.00","5949885.50" +"111PO185-3E","UK","Unknown",,"477000","0.00","1002706.55" +"806HANACORSR","HPD","Housing Preservation and Development","Fixed Asset","600000","0","3600000" +"042ST026-013","CUNY","City University of New York","Fixed Asset","0","0","0" +"042BX032-015","CUNY","City University of New York","Fixed Asset","0","0.00","185392.96" +"806HHC112PRE","HPD","Housing Preservation and Development","Fixed Asset","783000","0","0" +"038LBC11RGFE","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0.00","196321.02" +"801SANDHOME","SBS","Department of Small Business Services",,"2175000","0","0" +"846P-210PTRK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1303260.84" +"111PO187-25","UK","Unknown",,"234000","0","93716" +"111PO187-36","UK","Unknown",,"182000","0","257000" +"111PO187-77","UK","Unknown",,"156000","0","0" +"111PO187LCM2","UK","Unknown",,"726000","153558.30","976983.36" +"111PO187PR19","UK","Unknown",,"590000","0.00","40595.87" +"111PO187PR20","UK","Unknown",,"600000","0.0","777694.8" +"111PO46-6A","UK","Unknown",,"46381000","833310.69","290047974.16" +"111PO-D185B3","UK","Unknown",,"0","0.0","43092.6" +"072C75GRVCHV","DOC","Department of Correction","Fixed Asset","0","731875.88","285263.85" +"111PO-DSAFE","UK","Unknown",,"600000","0","0" +"111PU16PROJ1","UK","Unknown",,"703326000","0","0" +"042HS046-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","18000","0.00","19532.87" +"856PWQ77R213","DCAS","Department of Citywide Administrative Services","Fixed Asset","40000","0","0" +"856PWR077MUR","DCAS","Department of Citywide Administrative Services","Fixed Asset","50000","0","0" +"826CI-119-L","DEP","Department of Environmental Protection","Fixed Asset","13955000","24434000.21","134673191.05" +"801PV264FULT","SBS","Department of Small Business Services",,"0","0.00","1489852.75" +"850BED-780","DDC","Department of Design and Construction","Lump Sum","2180000","0","0" +"850BED-794","DDC","Department of Design and Construction","Fixed Asset","2702000","11144175.49","44011186.08" +"850BED-796","DDC","Department of Design and Construction","Fixed Asset","605000","196476.53","13717806.10" +"039LQHBW/D","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"846P-5FRESHN","DPR","Department of Parks and Recreation","Lump Sum","765000","121273.52","3371201.86" +"126PV467BHT2","DCLA","Department of Cultural Affairs","Fixed Asset","1392000","0","0" +"846P-501CRPL","DPR","Department of Parks and Recreation","Fixed Asset","1182000","161290.21","3143785.55" +"850BED-802","DDC","Department of Design and Construction","Fixed Asset","1562000","3793162.89","13300015.83" +"039LQMAITEQP","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","26000","0","0" +"039LQMAROOF","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"801PV264CINE","SBS","Department of Small Business Services","Fixed Asset","7000","27489.25","28502270.22" +"856CO283SG","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"850HLDNWILLM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850BED-805","DDC","Department of Design and Construction","Lump Sum","1494000","2016136.46","12793432.49" +"111TD18RTOVE","UK","Unknown",,"0","0.00","21772102.49" +"111TLC3CONEC","UK","Unknown",,"8877000","2615588.55","4853138.78" +"125AGAPHIVEH","DFTA","Department for the Aging",,"0","0","0" +"850HLQNSAINT","DDC","Department of Design and Construction","Fixed Asset","135000","1039008","0" +"850SEQ002700","DDC","Department of Design and Construction","Lump Sum","8644000","22468.60","17230.04" +"846P-1CPIHNT","DPR","Department of Parks and Recreation","Fixed Asset","0","584724.59","3615580.84" +"846P-6NCRC15","DPR","Department of Parks and Recreation",,"0","0.00","29540.16" +"846P-6PNYR34","DPR","Department of Parks and Recreation",,"0","0.00","359113.13" +"846P-6REQ1","DPR","Department of Parks and Recreation",,"0","0","0" +"806HAM19HHTV","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","158000","68057.42","1173659.47" +"801PV-STGINT","SBS","Department of Small Business Services","Fixed Asset","1000","45215.00","5171744.87" +"856PW325ELC3","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","168690.38","29800146.41" +"850HH115UNFA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","45000","580499.60","912524.63" +"850HHNC002","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"126PV022-BOL","DCLA","Department of Cultural Affairs",,"263000","0","0" +"126PV05YTM22","DCLA","Department of Cultural Affairs",,"64000","0","0" +"850MED-607","DDC","Department of Design and Construction","Fixed Asset","7542000","15761079.29","41199577.40" +"841HBMA22934","DOT","Department of Transportation","Fixed Asset","51906000","1071874.36","1806995.65" +"846P-312HBRC","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","116000","0","0" +"846P-312IHPB","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1110419.65" +"846P-312INNC","DPR","Department of Parks and Recreation","Fixed Asset","224000","411197.90","3114201.16" +"126PV279CCU1","DCLA","Department of Cultural Affairs",,"500000","0","0" +"039LQ122-CMC","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","54466" +"826HP-3R","DEP","Department of Environmental Protection","Fixed Asset","15000","0.00","51446717.60" +"846P-202FTGN","DPR","Department of Parks and Recreation","Fixed Asset","0","11883.70","1970177.31" +"850E16-0002","DDC","Department of Design and Construction","Fixed Asset","648000","727219.15","6524623.41" +"850E16-0003","DDC","Department of Design and Construction","Fixed Asset","593000","2405961.48","4756209.11" +"801PIER79REH","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","60000","345088.8","259459.2" +"801PV256-LED","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","1497561" +"801PWD998NPW","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","10000","0.00","245389.45" +"801PWDCOMPUP","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","1000000","0","0" +"801PWKNSBH","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","1924878" +"057SANDHM265","FDNY","Fire Department",,"1728000","0.00","199411.01" +"057SANDHM266","FDNY","Fire Department",,"850000","0.00","100058.52" +"846SANDY4-12","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","484294.46" +"801PWMNLGBTF","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","125000","124545","0" +"801HOMPORTDV","SBS","Department of Small Business Services","Fixed Asset","0","123259.41","32255067.75" +"071HH115JAEX","DHS","Department of Homeless Services","Fixed Asset","3000000","143237.92","106762.08" +"846P-3R5422A","DPR","Department of Parks and Recreation","Fixed Asset","52515000","2972449.66","424910.33" +"850AGDNRIVER","DDC","Department of Design and Construction",,"0","0","0" +"850AGDNHHOME","DDC","Department of Design and Construction",,"0","0","909631" +"81948201516","HHC","Health and Hospitals Corporation","Fixed Asset","975000","7265.37","42034.63" +"81948201542","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","23000","0.0","388831.8" +"81948201602","HHC","Health and Hospitals Corporation","Lump Sum","119000","76587.16","7959013.55" +"81948201610","HHC","Health and Hospitals Corporation","Fixed Asset","182000","0.00","3968657.94" +"81967200901","HHC","Health and Hospitals Corporation","Fixed Asset","296000","0","3802" +"81967201070","HHC","Health and Hospitals Corporation","Fixed Asset","32000","0","28407362" +"81968201161","HHC","Health and Hospitals Corporation","Fixed Asset","29000","16488.24","11676650.31" +"841HBBA07692","DOT","Department of Transportation",,"31061000","0","0" +"846P-3CBHVAC","DPR","Department of Parks and Recreation","Fixed Asset","3231000","2763520.48","31468.16" +"841EBIKENYCH","DOT","Department of Transportation",,"32800000","0","0" +"841EMIDTWNRZ","DOT","Department of Transportation",,"6625000","0","0" +"125AGHAMVEH","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","54000","0","0" +"801PWDL&GCCW","SBS","Department of Small Business Services","Lump Sum","0","1030000","0" +"841HBBA26654","DOT","Department of Transportation",,"260682000","0","0" +"841HBBA66671","DOT","Department of Transportation",,"104273000","0","0" +"846P-101STMH","DPR","Department of Parks and Recreation","Fixed Asset","-1000","4740.00","2376237.39" +"846P-112LACE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5395331.55" +"850PV467HECK","DDC","Department of Design and Construction","Fixed Asset","1501000","414578.24","5341193.21" +"850CC253B","DDC","Department of Design and Construction",,"100000","340167.52","16412203.44" +"850BED-828","DDC","Department of Design and Construction",,"11230000","150332.83","342007.17" +"850BED833","DDC","Department of Design and Construction",,"258000","1629746.20","1425739.24" +"850C75EWNIC","DDC","Department of Design and Construction",,"0","436175.86","21138086.43" +"850CHINATWN","DDC","Department of Design and Construction",,"380000","0","0" +"801PWNIACOMM","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","1120000","0","0" +"801SANDR2BRG","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","16157000","467498.31","1705566.69" +"816HL82A003A","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","0","0.00","28962757.35" +"801SLIPEBARG","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","6029000","0","0" +"801WLWFSWUG","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","750000","0","0" +"846SANDY3-12","DPR","Department of Parks and Recreation","Fixed Asset","242000","0.00","2414287.59" +"039LQLHCCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","133163.58" +"846P-3RIVJOA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","858371.33" +"850S136-438","DDC","Department of Design and Construction","Fixed Asset","300000","830206.13","23286682.90" +"850F175FZONE","DDC","Department of Design and Construction",,"125000","0.00","249579.86" +"850GRAM1","DDC","Department of Design and Construction",,"250000",, +"850EDNSOLAR1","DDC","Department of Design and Construction","Lump Sum","189000","0","0" +"826HP-STAB","DEP","Department of Environmental Protection","Fixed Asset","5000","1358827.01","526765495.45" +"826JA-179-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10948000","19381364.47","30592031.42" +"039LQD122MV1","QPL","Queens Borough Public Library","Fixed Asset","100000","0","0" +"111HL82DMZDH","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","2822952.49" +"850PW293QBLV","DDC","Department of Design and Construction","Fixed Asset","775000","880174.57","11983428.04" +"850HEBHRIVER","DDC","Department of Design and Construction",,"350000","0","0" +"850HED580","DDC","Department of Design and Construction",,"177000","11040477.75","505298.00" +"850HED-581","DDC","Department of Design and Construction",,"4893000","17449549.49","1969971.98" +"850HED582","DDC","Department of Design and Construction",,"3000","157204.51","7610.79" +"850HED584","DDC","Department of Design and Construction",,"30758000","1534687","0" +"826JA-183-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826NEWCREEK","DEP","Department of Environmental Protection","Fixed Asset","2513000","6186308.97","67092622.34" +"826NR-111-L","DEP","Department of Environmental Protection","Fixed Asset","157486000","162148496.91","724505.82" +"826NR-115-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","173550000","8310136.10","4302505.40" +"826NR-117-L","DEP","Department of Environmental Protection","Fixed Asset","74430000","11321020.32","20300.68" +"826NR-99-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826NR-COGEN","DEP","Department of Environmental Protection","Fixed Asset","15388000","14206172.05","339593537.18" +"846P-3RIVRMP","DPR","Department of Parks and Recreation","Fixed Asset","1573000","1401764.13","461284.25" +"806HAM18COSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","0","0" +"81975200902","HHC","Health and Hospitals Corporation","Fixed Asset","869000","82870.00","3958462.16" +"850HL82VILCN","DDC","Department of Design and Construction",,"0","0.00","1377887.76" +"846SANDY5-05","DPR","Department of Parks and Recreation","Fixed Asset","551000","0.00","385993.31" +"850HHMNPRHQ","DDC","Department of Design and Construction",,"2000","0.00","87540.48" +"850HHRESNICK","DDC","Department of Design and Construction",,"123000","0","0" +"850HHDNPRHQ","DDC","Department of Design and Construction","Lump Sum","0","0","871682" +"056POD106COM","NYPD","Police Department","Fixed Asset","75000","0","0" +"826OB-133-L","DEP","Department of Environmental Protection","Fixed Asset","11646000","60436623.74","29663351.53" +"826OB-134-L","DEP","Department of Environmental Protection","Fixed Asset","7031000","67699479.11","19777531.89" +"801HUDSONGUI","SBS","Department of Small Business Services","Fixed Asset","895000","1175610","0" +"81913201540","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","54653.99" +"819ACEHHC409","HHC","Health and Hospitals Corporation","Fixed Asset","225000","2686730.28","10132189.21" +"826BB-215-L","DEP","Department of Environmental Protection","Fixed Asset","4213000","25797458.06","48022258.95" +"826BB-216-L","DEP","Department of Environmental Protection","Fixed Asset","13270000","114338537.22","30881712.50" +"82626W-148-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10445000","0","0" +"82626W-149","DEP","Department of Environmental Protection","Fixed Asset","350000","1124054.19","8269701.89" +"826CRO-518","DEP","Department of Environmental Protection","Fixed Asset","0","351.09","6308048" +"126PV409SYM4","DCLA","Department of Cultural Affairs","Fixed Asset","15564000","0","0" +"126PV412TST","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"826CS-GC-SFS","DEP","Department of Environmental Protection","Fixed Asset","678004000","334312836.76","836529133.23" +"801HRDN842A","SBS","Department of Small Business Services","Fixed Asset","1000000","0","0" +"841HWARCHES","DOT","Department of Transportation",,"51000000","0","0" +"841HWBUSPAD8","DOT","Department of Transportation",,"6798000","0","0" +"841HWCPDLOC2","DOT","Department of Transportation",,"0","0","0" +"841HWCRCWLK","DOT","Department of Transportation",,"132309000","0","0" +"841HWD10223","DOT","Department of Transportation",,"0","0","0" +"841HWD10323","DOT","Department of Transportation",,"320000","0","450365" +"841HW6101","DOT","Department of Transportation","Fixed Asset","0","192238.19","381874.98" +"096HRCNBDST","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","1070000","0","0" +"856WD77STAR","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","350000","0","0" +"039LQHOQVTEC","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","530000","0","0" +"039LQLARSCAR","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","35000","0","0" +"039LQLASEC","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","97000","0","0" +"826OB-135-L","DEP","Department of Environmental Protection","Fixed Asset","95435000","15747275.14","2020533.06" +"826OB-136-L","DEP","Department of Environmental Protection","Fixed Asset","41687000","6786007.35","4399583.65" +"826OH-88-L","DEP","Department of Environmental Protection","Fixed Asset","420176000","0.00","410303.86" +"826OH-91-L","DEP","Department of Environmental Protection","Fixed Asset","12015000","3129607.96","64704966.01" +"806HAM18CSLF","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","6256.75","2679854.89" +"806HAM18DIGV","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","150000","0","0" +"057F204RAND9","FDNY","Fire Department","Lump Sum","220000","0.00","220231.86" +"801HUNTMEAT2","SBS","Department of Small Business Services","Fixed Asset","72345000","10574686.87","23512517.32" +"816HL82BEDHC","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","5000000","0","0" +"816HL82BRNHC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","5230000","755304.93","0" +"850PWDTOURSO","DDC","Department of Design and Construction",,"298000","0","0" +"071HH105BEAV","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","55452000","0","0" +"042LM019-011","CUNY","City University of New York","Fixed Asset","39000","0.00","809985.58" +"042LM027-015","CUNY","City University of New York","Fixed Asset","0","0","1495884" +"846P-5FRESH9","DPR","Department of Parks and Recreation","Fixed Asset","845000","1755928.43","30943444.18" +"850HRQN89WNK","DDC","Department of Design and Construction",,"0","0","0" +"850HRQNCHQB","DDC","Department of Design and Construction",,"180000","0","0" +"850HWCRCK1","DDC","Department of Design and Construction",,"848000","0","0" +"846P-6ORCAST","DPR","Department of Parks and Recreation","Fixed Asset","406000","561636.41","2154963.69" +"850HWK002394","DDC","Department of Design and Construction",,"993000","0","0" +"850HWK20072","DDC","Department of Design and Construction",,"5468000","0","0" +"850PWMLWHLS","DDC","Department of Design and Construction",,"125000","0","0" +"801SAND1101","SBS","Department of Small Business Services",,"0","32824.46","3099436.52" +"801SANDCD14","SBS","Department of Small Business Services","Fixed Asset","106000","0.01","85260.88" +"801HUNTSFISH","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","17429000","2948159.48","6216400.42" +"841HWKFRH","DOT","Department of Transportation",,"3901000","0","0" +"841HWKMETWF2","DOT","Department of Transportation",,"6005000","0","0" +"841HWM2027","DOT","Department of Transportation",,"1025000","0","0" +"841HWM300","DOT","Department of Transportation",,"0","0","0" +"841HWMF128HR","DOT","Department of Transportation",,"1669000","136753.35","617359.29" +"801P-2GPWB08","SBS","Department of Small Business Services","Fixed Asset","85000","14011.60","10332118.56" +"846P-3CPI3AP","DPR","Department of Parks and Recreation","Fixed Asset","0","22137.14","5939182.42" +"841HWQ1192","DOT","Department of Transportation",,"1500000","0","0" +"841HWQ1202","DOT","Department of Transportation",,"90118000","0","0" +"841HWQ1208","DOT","Department of Transportation",,"10000000","0","0" +"841HWQ1212","DOT","Department of Transportation",,"17085000","0","0" +"841HWQ1217","DOT","Department of Transportation",,"30000000","0","0" +"841HWQ631B2","DOT","Department of Transportation",,"57607000","0","0" +"841HWQ985A","DOT","Department of Transportation",,"4000000","0","0" +"841HWQEDGM1","DOT","Department of Transportation",,"30071000","0","0" +"841HWQFFRTN","DOT","Department of Transportation",,"24000","0.00","306422.91" +"841HWQJA11CM","DOT","Department of Transportation",,"15970000","0","0" +"841HWR500","DOT","Department of Transportation",,"1100000","0","0" +"841HWR705","DOT","Department of Transportation",,"7678000","0","0" +"841HWRAP07","DOT","Department of Transportation",,"66784000","0.00","114714374.41" +"042HS034-007","CUNY","City University of New York","Fixed Asset","250000","0","0" +"826CSO-FC-DF","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","104825000","11342034.94","13535101.52" +"042HS053-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","40000","0","0" +"042CC008-005","CUNY","City University of New York","Lump Sum","0","1076.56","1393052.92" +"826EASTSIDRS","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"057F212LEGAL","FDNY","Fire Department","Lump Sum","474000","502050.00","701100.67" +"801HUNTSPTRR","SBS","Department of Small Business Services","Fixed Asset","0","0.00","14699369.79" +"801HWM1685","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"841SEEDHWX06","DOT","Department of Transportation",,"15000000","0","0" +"846P-104CAGS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","131759.91" +"841TD19-9911","DOT","Department of Transportation",,"0","0","0" +"841TF01TPM21","DOT","Department of Transportation",,"0","1046454.32","19721221.80" +"841TF01TPM23","DOT","Department of Transportation",,"30001000","5709512.96","27761108.18" +"850EDKNBSHGR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2000","0.0","294303.8" +"827S136-431","DSNY","Department of Sanitation","Fixed Asset","285233000","62660.73","737339.27" +"827S136-432","DSNY","Department of Sanitation","Fixed Asset","0","40646.12","337293.49" +"850MED644","DDC","Department of Design and Construction",,"81527000","1703212.50","0" +"841TFD503-17","DOT","Department of Transportation","Fixed Asset","2000","0","59742" +"841HWMWTCA10","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841TF50313","DOT","Department of Transportation",,"156000","0.00","217259.00" +"841TF50316","DOT","Department of Transportation",,"200000","0","0" +"801HWXP2010","SBS","Department of Small Business Services","Fixed Asset","218000","12343.39","6103083.92" +"841TFD503M31","DOT","Department of Transportation",,"410000","14244","39767" +"841TFD503M34","DOT","Department of Transportation",,"80000","0","0" +"841TFD503M36","DOT","Department of Transportation",,"75000","0","0" +"841TFLGAVEU","DOT","Department of Transportation",,"508000","0","0" +"841TFLUMP","DOT","Department of Transportation",,"114939000","0","0" +"841TFMARKLMP","DOT","Department of Transportation",,"139961000","0","0" +"841TFPEDCDW3","DOT","Department of Transportation",,"129000","241110","3783880" +"841HWPLZ010M","DOT","Department of Transportation","Fixed Asset","3348000","0.0","33100.7" +"801QWESTC","SBS","Department of Small Business Services",,"21234000","31523.76","83670760.27" +"81913201740","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","36000","0","89945" +"801JAMSUTPHI","SBS","Department of Small Business Services","Fixed Asset","2000","2.00","15218183.55" +"801JULIABREN","SBS","Department of Small Business Services","Fixed Asset","0","40936.67","135822.65" +"801JULIABURG","SBS","Department of Small Business Services",,"10300000","0","0" +"846P-1ANCR01","DPR","Department of Parks and Recreation","Fixed Asset","0","15592.52","3106113.76" +"850PWDUWSOEM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-104GPPV","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3834503.05" +"850LQD122HO1","DDC","Department of Design and Construction","Fixed Asset","2924000","4946386.16","4482965.54" +"81920201501","HHC","Health and Hospitals Corporation","Fixed Asset","92000","0","0" +"846IDA21-10","DPR","Department of Parks and Recreation",,"155000","0","0" +"816HL82BUSHC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","4200000","711054.13","0" +"850PWC005WEB","DDC","Department of Design and Construction",,"2941000","64609.36","613594.24" +"826OH-92-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","7145000","30357878.28","3780608.20" +"826PR-132-L","DEP","Department of Environmental Protection","Fixed Asset","69100000","24822.06","1519832.80" +"850PWD3OYMK1","DDC","Department of Design and Construction",,"1000","0","0" +"850PWDNMJEFC","DDC","Department of Design and Construction",,"0","0","0" +"126PV490CPSD","DCLA","Department of Cultural Affairs",,"12487000","0","0" +"806HAM11CPGP","HPD","Housing Preservation and Development","Fixed Asset","49000","0.0","511982.5" +"806HAM02USCC","HPD","Housing Preservation and Development","Lump Sum","764000","111723.04","2349173.37" +"801STFRANCIS","SBS","Department of Small Business Services",,"0","0","0" +"801MCTROOF2","SBS","Department of Small Business Services","Fixed Asset","0","28019.36","513320.21" +"801MOOREROOF","SBS","Department of Small Business Services","Fixed Asset","2406000","1858007.46","179962.54" +"846P-3CPIBBJ","DPR","Department of Parks and Recreation","Fixed Asset","0","20050.55","1775002.01" +"850PWXNMERCY","DDC","Department of Design and Construction",,"0","0.00","286424.82" +"801SANDMARC9","SBS","Department of Small Business Services","Fixed Asset","12000","0.00","2025072.46" +"801SANDYNYA","SBS","Department of Small Business Services","Fixed Asset","53410000","45784689.12","168737064.00" +"126PV501ATTC","DCLA","Department of Cultural Affairs","Fixed Asset","3242000","0","0" +"846P-3CPIBN9","DPR","Department of Parks and Recreation","Fixed Asset","0","351229.14","8458834.37" +"846P-3CPIDOE","DPR","Department of Parks and Recreation","Fixed Asset","740000","1536355.26","2341431.74" +"846P-3CPIFGC","DPR","Department of Parks and Recreation","Fixed Asset","-33000","256796.26","3986671.89" +"846P-3CPIFJP","DPR","Department of Parks and Recreation","Fixed Asset","0","608550.38","5138195.30" +"846P-3CPIHLP","DPR","Department of Parks and Recreation","Fixed Asset","1861000","2244981.74","10174811.93" +"846P-3CPIHPR","DPR","Department of Parks and Recreation","Lump Sum","6013000","460685.87","43967.02" +"846P-3CPIHRP","DPR","Department of Parks and Recreation","Lump Sum","7692000","150641.69","551654.88" +"846P-3CPIJWJ","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5128160.19" +"846P-3CPINSP","DPR","Department of Parks and Recreation","Fixed Asset","9632000","0.0","67998.3" +"846P-3CPIPGI","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2821985.97" +"846P-3CPIPMP","DPR","Department of Parks and Recreation","Fixed Asset","7246000","246715.78","270411.48" +"846P-3CPIRNP","DPR","Department of Parks and Recreation","Fixed Asset","5436000","35082.48","314850.46" +"846P-3CPISNS","DPR","Department of Parks and Recreation","Fixed Asset","6966000","0.00","305980.33" +"846P-3CPISUR","DPR","Department of Parks and Recreation","Fixed Asset","0","487862.57","3400925.11" +"846P-3CRHVAC","DPR","Department of Parks and Recreation","Fixed Asset","5097000","41313.4","13686.6" +"846P-3CSPBOL","DPR","Department of Parks and Recreation","Fixed Asset","107000","288400.80","1015989.25" +"846P-3CYPGCS","DPR","Department of Parks and Recreation","Fixed Asset","2842000","0","416000" +"846P-3DAGHAM","DPR","Department of Parks and Recreation","Fixed Asset","417000","404002.45","2148324.22" +"846P-3DDOKPL","DPR","Department of Parks and Recreation","Fixed Asset","-214000","0.00","1154284.19" +"846P-3DIRVPK","DPR","Department of Parks and Recreation","Fixed Asset","25855000","13368995.22","1677072.21" +"801SANDTGIEL","TGI","Trust for Governors Island","Fixed Asset","2055000","548.84","5327973.88" +"801SANDY4-03","SBS","Department of Small Business Services",,"0","0.00","316683185.24" +"806HAM07VYSE","HPD","Housing Preservation and Development","Fixed Asset","810000","36772.54","2697411.06" +"806RARVNOR","HPD","Housing Preservation and Development","Fixed Asset","1260000","0","0" +"126PVDCLAEMR","DCLA","Department of Cultural Affairs",,"2241000","0","0" +"126PVUKELES","DCLA","Department of Cultural Affairs",,"0","0","0" +"801181STBID","SBS","Department of Small Business Services",,"78000","0","147150" +"80125202301","SBS","Department of Small Business Services",,"14250000","0","0" +"801AVENUEJ","SBS","Department of Small Business Services",,"5000","0.0","1494318.7" +"801BATANCHOR","SBS","Department of Small Business Services",,"0","0","0" +"846P-3FCSADA","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3922000","0","628000" +"846P-3GERCTE","DPR","Department of Parks and Recreation","Fixed Asset","30000","46611.16","425388.84" +"846P-3GRST01","DPR","Department of Parks and Recreation","Fixed Asset","-5000","30267.92","69003.19" +"846P-3HELIP2","DPR","Department of Parks and Recreation","Fixed Asset","0","425626.11","4625039.12" +"846P-3HMFISH","DPR","Department of Parks and Recreation","Fixed Asset","44000","155469.92","632316.53" +"846P-3LMDCCH","DPR","Department of Parks and Recreation","Fixed Asset","129000","437319.93","2736951.51" +"846P-3PAVRSP","DPR","Department of Parks and Recreation","Fixed Asset","145000","151338.78","748661.22" +"846P-3PAVTMK","DPR","Department of Parks and Recreation","Fixed Asset","-732000","36628.65","652190.75" +"850PWNYUSKIR","DDC","Department of Design and Construction",,"311000","0","0" +"042BY011-005","CUNY","City University of New York","Fixed Asset","9000","0.00","221702.72" +"042BY025-012","CUNY","City University of New York","Lump Sum","100000","0","0" +"856ACSWLM","DCAS","Department of Citywide Administrative Services",,"0","0.00","4528780.07" +"856CO294BACK","DCAS","Department of Citywide Administrative Services",,"886000","0.00","1857040.89" +"856AG1RAND","DCAS","Department of Citywide Administrative Services",,"0","452755.74","1607243.26" +"850HLDNFLUSH","DDC","Department of Design and Construction","Fixed Asset","292000","0","259000" +"856CO309SIMP","DCAS","Department of Citywide Administrative Services",,"0","1.00","32049442.58" +"850HLDNHCARE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"042LM022-013","CUNY","City University of New York","Lump Sum","28000","0.00","867244.20" +"850HLDNHEBEQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","940155.54" +"850HLDNHOSPT","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"801SBMTAUTO","SBS","Department of Small Business Services",,"1597000","0.00","68057800.64" +"806HAM12MCPL","HPD","Housing Preservation and Development","Fixed Asset","40000","25736.31","143443.12" +"801CATHEDRAL","SBS","Department of Small Business Services",,"1500000","0","0" +"801CCCS-SBX","SBS","Department of Small Business Services",,"1192000","0","0" +"801CHATHAMSQ","SBS","Department of Small Business Services",,"54525000","3969624.09","1405893.00" +"801COMMSOLU","SBS","Department of Small Business Services",,"0","0","999375" +"801CSFRANCIS","SBS","Department of Small Business Services",,"2769000","0","0" +"801CWFSHOMEP","SBS","Department of Small Business Services",,"28000","453493.49","54473583.07" +"801P-301BATW","SBS","Department of Small Business Services","Fixed Asset","575000","95657.99","5410329.66" +"856PUCAFOPM","DCAS","Department of Citywide Administrative Services",,"941000","0","0" +"856PW077QBHH","DCAS","Department of Citywide Administrative Services",,"3000000","0","0" +"801SEAVIEW","SBS","Department of Small Business Services","Lump Sum","3387000","385049.93","44878364.52" +"856PW326DAQ3","DCAS","Department of Citywide Administrative Services",,"0","485877.62","2055046.09" +"126PV612-SPR","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"846P-3PWBJRP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5318842.65" +"850PV501BOIL","DDC","Department of Design and Construction","Fixed Asset","552000","173061.91","3659582.99" +"801FOODBANK","SBS","Department of Small Business Services",,"10000","0.00","399732.68" +"850PV520HIST","DDC","Department of Design and Construction","Fixed Asset","1910000","857575.77","4212209.83" +"801FREIGHTDS","SBS","Department of Small Business Services",,"24600000","0","0" +"801FREIGHTHP","SBS","Department of Small Business Services",,"0","0","0" +"801FREIGHTSP","SBS","Department of Small Business Services",,"3953000","0","0" +"801FUTURE5TH","SBS","Department of Small Business Services",,"355588000","0","0" +"801GK26W5-05","SBS","Department of Small Business Services",,"0","11955385.72","145888130.93" +"801GRANDAVEE","SBS","Department of Small Business Services",,"0","0","0" +"801GREATKILL","SBS","Department of Small Business Services",,"0","0.00","1158421.72" +"126PV101MJH2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","232156" +"856PW77CHA01","DCAS","Department of Citywide Administrative Services",,"133771000","9533633.23","36610639.77" +"850LQQ122-DL","DDC","Department of Design and Construction","Fixed Asset","250000","179987.14","1849890.10" +"042NY012-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"126PV127-DP","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","143864" +"846P-207SNST","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1493890.70" +"846P-208SJRC","DPR","Department of Parks and Recreation","Fixed Asset","6000","105275.19","1155414.44" +"850LQFLELV","DDC","Department of Design and Construction","Fixed Asset","492000","369234.07","10523172.70" +"850LQHIROOF","DDC","Department of Design and Construction","Fixed Asset","242000","58312.27","3461812.97" +"850LQLAROOF","DDC","Department of Design and Construction","Fixed Asset","258000","20751.24","2484137.01" +"850LQOZROOF","DDC","Department of Design and Construction","Fixed Asset","70000","158.91","1504868.47" +"850LQQ122-BL","DDC","Department of Design and Construction","Fixed Asset","0","23265.52","1002475.12" +"850HLDNMOUNQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","2305624" +"856PWRDACE","DCAS","Department of Citywide Administrative Services",,"9000","0.00","39510.63" +"856SOLARPQL1","DCAS","Department of Citywide Administrative Services",,"805000","1012195.01","2328449.99" +"850CSCN500NS","DDC","Department of Design and Construction","Fixed Asset","437000","0.0","2141913.5" +"826PR-139-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","59300000","6510360.51","1948405.49" +"850QED-1049","DDC","Department of Design and Construction",,"7137000","0","128000" +"850RED390","DDC","Department of Design and Construction",,"4926000","0","0" +"850RED-392","DDC","Department of Design and Construction",,"9358000","0","0" +"042CA036-014","CUNY","City University of New York","Fixed Asset","511000","1489563.07","2436.93" +"850CSDNNCC62","DDC","Department of Design and Construction","Fixed Asset","67000","0","0" +"037LNXA13WIF","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0.0","109822.2" +"042HS048-013","CUNY","City University of New York","Fixed Asset","77000","0.00","99572.97" +"826PS-276","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","23895000","62146227.38","68852512.76" +"826PS-277","DEP","Department of Environmental Protection","Fixed Asset","4473000","33418333.10","19727103.65" +"826PS-280","DEP","Department of Environmental Protection","Lump Sum","0","0.00","398918.09" +"039LQITILS","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1094000","0","0" +"039LQJH-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1458000","0","0" +"042BA030-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","1950000","0","0" +"042BX001-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","2000000","0","0" +"042GR026-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","487000","0","0" +"042GR027-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","1050000","0","0" +"042GR028-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","850000","0","0" +"042GR029-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","125000","0","0" +"042GU027-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","8000","4842.84","267372.16" +"042HC026-011","CUNY","City University of New York","ITT, Vehicles, and Equipment","2000","298311","0" +"042HC999-000","CUNY","City University of New York","ITT, Vehicles, and Equipment","1274000","1163150","0" +"042HS001-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","400000","0","0" +"042HS059-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","500000","0","0" +"042HU001-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","125000","0","0" +"042HU001-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","350000","0","0" +"042LM034-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","368000","0","0" +"042LM037-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","2115000","0","0" +"042LM038-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","145000","0","0" +"042MC002-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","2500000","0","0" +"042ME010-004","CUNY","City University of New York","ITT, Vehicles, and Equipment","3000","0.00","104671.82" +"042ME013-003","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","128486.68" +"042ST001-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","500000","0","0" +"042ST005-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","3000000","521522","0" +"042ST016-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","99897.62" +"042YC001-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042YC020-007","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","1178000" +"042YC030-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"057F109MHRVH","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109MRTU2","FDNY","Fire Department","ITT, Vehicles, and Equipment","1689000","1688824","0" +"057FQ109TRAN","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057FQ175G260","FDNY","Fire Department","ITT, Vehicles, and Equipment","65000","535692.59","369417.97" +"071HHCN007","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","542000","0","0" +"071HR109ASAR","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","4747000","0.00","2650795.49" +"071PWNC001","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","50000","0","0" +"072C101-SEC","DOC","Department of Correction","ITT, Vehicles, and Equipment","150000","0","0" +"072C110ASANA","DOC","Department of Correction","ITT, Vehicles, and Equipment","265000","0","0" +"072C75GENREP","DOC","Department of Correction","ITT, Vehicles, and Equipment","1076000","240628.00","464690.85" +"072C75-METH","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","413800.00","919048.61" +"096HRKCAMBA","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","2200000","0","0" +"111BBJ6BRIFU","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111BIC1NETWK","UK","Unknown","ITT, Vehicles, and Equipment","9000","0.00","335434.07" +"111DANY5WIRE","UK","Unknown","ITT, Vehicles, and Equipment","800000","0","0" +"111DCA6HRWTR","UK","Unknown","ITT, Vehicles, and Equipment","2573000","0","0" +"111KBP5COMP","UK","Unknown","ITT, Vehicles, and Equipment","204000","0","0" +"111KCDA5AWDR","UK","Unknown","ITT, Vehicles, and Equipment","134000","0","2044998" +"111PO163LNWN","UK","Unknown","ITT, Vehicles, and Equipment","2000","48125.00","42827860.59" +"111PO163-MTA","UK","Unknown","ITT, Vehicles, and Equipment","1215000","1214244.2","0" +"111PO163NET1","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","31178642.81" +"111PO187MSPT","UK","Unknown","ITT, Vehicles, and Equipment","200000","0","509145" +"111PO187-MT2","UK","Unknown","ITT, Vehicles, and Equipment","0","641720.00","505629.36" +"111PO-DARG20","UK","Unknown","ITT, Vehicles, and Equipment","274000","428157.80","3323106.45" +"111PO-DARG21","UK","Unknown","ITT, Vehicles, and Equipment","258000","126855.54","3357924.31" +"111XBP7COMP","UK","Unknown","ITT, Vehicles, and Equipment","58000","4850.72","283637.57" +"111XDA9VOIP","UK","Unknown","ITT, Vehicles, and Equipment","0","25400.00","1406200.77" +"125AG-2CWC","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","703000","0.00","2519848.80" +"125AG-2CWCR","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","1703000","0.00","487226.35" +"125AG-2GMS","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","1460000","0.00","696428.45" +"125AGCBCOV","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","98000","0","0" +"126PV065LGT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","84000","70000","0" +"126PV066BAC2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","230000","0","0" +"126PV07GCLA1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","268000","0","0" +"126PV07GCLA2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","251000","0","0" +"126PV088-AUD","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","250000","0","0" +"126PV08EBSM1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","134000","0","0" +"126PV101MJH3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","10000","0.0","240354.8" +"126PV113WTS","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","83000","0","67750" +"126PV1324KED","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","17000","0.0","229603.1" +"126PV307-LGT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","6000","0","149774" +"126PV309JZM1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","185000","0","0" +"126PV329AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","307000","306378","0" +"126PV329AUTO","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","179000","168612","0" +"126PV329-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","303000","262839","0" +"126PV329CNC1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","72000","65181","0" +"126PV329-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV329VID1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","99000","98038","0" +"126PV789AUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV789-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","595000","0","0" +"126PV789-KIO","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV789THF4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","491000","0","0" +"126PV791LGT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","165000","0","0" +"126PV814DIA1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","70000","0","0" +"801GRAFNYC","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0","1443456" +"801HLMNCHNHR","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","500000","0","0" +"801HLQSINICU","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","5000000","0","0" +"801HPAOU2EV","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","15000000","0","0" +"801HPCMFRIDG","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","950000","0","0" +"801MSLMCMNET","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","3233000","0","0" +"801NYCFBARGE","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","15581000","1464724.88","57416855.02" +"801NYCFEMISS","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","20215000","0","0" +"801NYCFTVM","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","3094000","0","0" +"801NYCFVAPEX","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","180000","0","54384872" +"801P79MBR","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","226000","95287.55","348232.45" +"806HAM18JFBC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","16000","13904.58","470910.58" +"806HAM18PKTV","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","128872.44","2611517.3" +"806HAM18POMO","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","3000","0.00","346728.78" +"806HAM18SOCC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","42000","0","0" +"806HAM18SVCC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","42000","0","0" +"806HAM19AHSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","15000","11000.00","74173.40" +"806HAM19BHSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","4000","60000.00","435857.56" +"806HAM19CASC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","14971.48","186294.47" +"806HAM19DGV2","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","160000","0","0" +"806HAM19ECSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","32275.61","209974.87" +"801P-2CPIHCR","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","4530000","0","0" +"806HAM19SBCU","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","22000","0.00","78242.19" +"806HAM19UNSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","26000","155508.99","1024617.01" +"806HAM20BHCC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","7000","31509.32","160853.68" +"806HAM20BHCS","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","125000","95618.44","1278823.56" +"806HAM20GHLC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","127000","128427.79","0" +"806HAM20HCAM","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","0.0","463942.0" +"806HAM20LCSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","11000","24130.82","165733.18" +"806HAM20MCIE","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","181000","15287.48","2309559.69" +"806HAM20MLPC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","18000","0.00","281239.45" +"806HAM20SEED","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","73000","358547.51","449204.49" +"806HAM20VDCC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","64000","0","0" +"806HAM21MCCT","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","100000","0","0" +"806HAM21MHTV","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","14000","28991.76","605873.24" +"806HAM21WMCI","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","59841.86","704967.14" +"806HAM22BCAM","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","126598.26","598402.74" +"806HAM22DCAM","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","7000","14437.46","478511.54" +"806HAM22LCAM","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","13000","0","217416" +"806HAM22LMTU","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","150000","0","0" +"806HAM22MHIL","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","30000","66693.52","903293.48" +"806HAM22MUIL","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","1000000","0","0" +"806HAM22PHIL","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","29000","560932.18","1909529.82" +"806HAM22SJCA","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","13000","453508.8","1083579.2" +"806HAM23BRSE","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","280000","0","0" +"841SANDHB001","DOT","Department of Transportation","Fixed Asset","-4363000","1184727.30","70737781.55" +"806HAM23DHSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","22000","277055","0" +"806HAM23GHSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","1000","62255.75","612744.25" +"806HAM25OBSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","300000","0","0" +"042CC012-008","CUNY","City University of New York","Fixed Asset","0","0","0" +"042HS047-013","CUNY","City University of New York","Fixed Asset","50000","0.00","837539.28" +"806HAM25OTIV","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","273000","273000","0" +"841HWBUSPAD","DOT","Department of Transportation","ITT, Vehicles, and Equipment","123000","0","0" +"042HS050-014","CUNY","City University of New York","Fixed Asset","1487000","3003086.93","4913.07" +"806HPDMOBILE","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","2000","0.00","413568.83" +"850HL82RCHD1","DDC","Department of Design and Construction","Fixed Asset","0","0","654634" +"801RE25-004","SBS","Department of Small Business Services","Fixed Asset","0","0.00","2726989.95" +"826PS-284","DEP","Department of Environmental Protection","Fixed Asset","10572000","16876211.55","20453054.16" +"826PS-285","DEP","Department of Environmental Protection","Fixed Asset","24666000","533342.53","26881630.97" +"826PS-286","DEP","Department of Environmental Protection","Fixed Asset","28680000","19490.31","440509.69" +"826PS-287","DEP","Department of Environmental Protection","Fixed Asset","86089000","4810898.24","1027268.60" +"826PS-288","DEP","Department of Environmental Protection","Fixed Asset","10400000","25595065.36","3779177.13" +"81919202401","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5233000","1668248.14","38398361.04" +"801SANDCD15","SBS","Department of Small Business Services","Fixed Asset","835000","12529.92","172810.08" +"806HAM17LGPL","HPD","Housing Preservation and Development","Fixed Asset","37000","0.00","312724.06" +"806TS-CSRHCS","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","1605000","138529.6","1037807" +"806TS-CYBSEC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","7000","0","180976" +"806TS-DTRDSA","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","7092000","616353.14","4523810.54" +"806TS-HPMS","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","27288000","7484632.15","3494771.86" +"806TS-S72NYC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","0","87000","696000" +"816CMEAMTS-1","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","514000","0","0" +"846P-2BKEQP1","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.0","45600.8" +"816CMEGENESP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","3995000","0.00","1507223.71" +"816CMEHISTO","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","1115000","134310.00","810129.13" +"816CMEHPLC","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","75000","12218.28","459633.72" +"816CMEITNET","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","6260000","0.00","6297530.17" +"816CMEITPC","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","2000000","0.00","3682140.08" +"816CMEITVOIP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","39000","0.00","297185.12" +"816CMELIMS","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","754000","40816.84","5438261.07" +"816CMEPMCTS","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","45000","1339478.42","1918663.33" +"816CMEPRINTR","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","600000","3155.10","381881.34" +"846P-400ZO21","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","102857" +"816CMESECURE","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","20802000","374400","0" +"816CMESEQNCE","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","300000","0.00","648128.74" +"816CMESVHW","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","2000000","0","0" +"816CMEUVISCM","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","2000000","0","0" +"846P-6CWEQVH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","31392000","0","0" +"850SEQ200519","DDC","Department of Design and Construction",,"83326000","650562.69","1469663.25" +"816HL82ACDAT","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","4000","0.00","45654.82" +"816HL82ADMVC","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","0","0.00","1121780.43" +"816HL82BMSUP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","1382000","0","0" +"042HU028-015","CUNY","City University of New York","Fixed Asset","300000","0","0" +"8067AVC24","HPD","Housing Preservation and Development","Lump Sum","151000","611565.16","572334.84" +"850HLMTSIN","DDC","Department of Design and Construction","Fixed Asset","0","0","209400" +"801WATERSIDE","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"826PS-291","DEP","Department of Environmental Protection","Fixed Asset","10410000","33009689.00","4584718.89" +"826PS-292","DEP","Department of Environmental Protection","Fixed Asset","11700000","54988901.71","7665520.76" +"856ACEDOS251","DCAS","Department of Citywide Administrative Services",,"971000","195379.61","0" +"856ACEFIT241","DCAS","Department of Citywide Administrative Services",,"57000","953291","0" +"856APIDSNY01","DCAS","Department of Citywide Administrative Services",,"0","0","0" +"856APINYPD01","DCAS","Department of Citywide Administrative Services",,"2246000","0","0" +"856C114ACADY","DCAS","Department of Citywide Administrative Services",,"2031000","0","0" +"816HL82CIRLT","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","1798000","19443.58","89887.19" +"801SUNSETWIF","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","35000","0","0" +"816HL82MRTEH","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","40000","0","0" +"816HL82NETRP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","71096000","0.00","22632966.30" +"816HL82PSHOP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","1000000","0","0" +"816HL82VOIP1","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","402000","64285.90","4206234.22" +"81902201322","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","17039000","6317682.04","317930036.92" +"81902201527","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","-6000","2932435.19","194983035.54" +"81902201721","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2758000","21544.56","28361887.71" +"81902202101","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","53000","243607.07","3257237.53" +"801SAND1102","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0.00","3106702.71" +"81902202223","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","14865006.52" +"806BULGER","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"850MED-610","DDC","Department of Design and Construction","Fixed Asset","55000","18605221.15","10421682.04" +"856EO26-0020","DCAS","Department of Citywide Administrative Services",,"27000","291105","0" +"856EO26-0022","DCAS","Department of Citywide Administrative Services",,"32000","439820","0" +"856EO26-0023","DCAS","Department of Citywide Administrative Services",,"21000","299393.81","0" +"81902202402","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","4873000","0","0" +"801SAND1105","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","587255.30","7373378.84" +"826PS-296","DEP","Department of Environmental Protection","Fixed Asset","8561000","7572908.05","9378908.17" +"850HH112AAFS","DDC","Department of Design and Construction","Fixed Asset","402000","12895.34","538803.66" +"856EO26-0056","DCAS","Department of Citywide Administrative Services",,"15000","201865","0" +"856EO26-0058","DCAS","Department of Citywide Administrative Services",,"22000","34258.23","64054.77" +"856EO26-0059","DCAS","Department of Citywide Administrative Services",,"10000","41744.29","82193.71" +"856EO26-0061","DCAS","Department of Citywide Administrative Services",,"16000","167499","0" +"856EO26-0064","DCAS","Department of Citywide Administrative Services",,"24000","325884","0" +"856EO26-0065","DCAS","Department of Citywide Administrative Services",,"9000","118298","0" +"856EO26-0067","DCAS","Department of Citywide Administrative Services",,"14000","41631.06","147215.94" +"856EO26-0068","DCAS","Department of Citywide Administrative Services",,"16000","213451","0" +"856EO26-0074","DCAS","Department of Citywide Administrative Services",,"26000","366619","0" +"856EO26-0075","DCAS","Department of Citywide Administrative Services",,"21000","49327.84","236737.16" +"856EO26-0076","DCAS","Department of Citywide Administrative Services",,"28000","375782","0" +"856EO26-0079","DCAS","Department of Citywide Administrative Services",,"10000","708063","0" +"856EO26-0082","DCAS","Department of Citywide Administrative Services",,"6000","70716","0" +"856EO26-0094","DCAS","Department of Citywide Administrative Services",,"204000","2907554.06","0" +"856HWKFVAR","DCAS","Department of Citywide Administrative Services",,"1329000","5117875.47","3466764.42" +"856HWQFHUB","DCAS","Department of Citywide Administrative Services",,"18018000","9112129","0" +"856PW19325A","DCAS","Department of Citywide Administrative Services",,"39505000","762264.82","1566936.18" +"856PW195WATP","DCAS","Department of Citywide Administrative Services",,"3526000","740104.08","21424.96" +"856PW266WORT","DCAS","Department of Citywide Administrative Services",,"8584000","0","0" +"856PW324ASTR","DCAS","Department of Citywide Administrative Services",,"2422000","0","0" +"856PW324BXDA","DCAS","Department of Citywide Administrative Services",,"1500000","0","0" +"856PW0308OMB","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0.0","1250060.5" +"856PW326TLCQ","DCAS","Department of Citywide Administrative Services",,"0","0.00","5741111.20" +"856PW77117SA","DCAS","Department of Citywide Administrative Services",,"40000","0","0" +"8067AVC25","HPD","Housing Preservation and Development","Lump Sum","403000","1345810","0" +"042HU017-003","CUNY","City University of New York","Fixed Asset","0","0","531700" +"850HLDNCATHL","DDC","Department of Design and Construction",,"0","0","0" +"042HU021-008","CUNY","City University of New York","Fixed Asset","0","0.00","1252470.63" +"850HL82MSINA","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLQNJEWSH","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLDNCATHO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HWMWTCA7D","DDC","Department of Design and Construction","Fixed Asset","0","0.00","2992823.44" +"850HL82NYHCQ","DDC","Department of Design and Construction","Fixed Asset","0","0","717458" +"826PS-297","DEP","Department of Environmental Protection","Fixed Asset","21288000","0","0" +"850HH112CWFR","DDC","Department of Design and Construction","Fixed Asset","618000","21788.75","2555804.15" +"856PW326TLQ3","DCAS","Department of Citywide Administrative Services",,"0","0","0" +"856PW326MET1","DCAS","Department of Citywide Administrative Services",,"0","0.00","62935.95" +"856PW326OMBP","DCAS","Department of Citywide Administrative Services",,"0","0.00","360375.68" +"856PW326RAK","DCAS","Department of Citywide Administrative Services",,"0","259605.72","3146645.16" +"826TOSC1","DEP","Department of Environmental Protection","Lump Sum","545000","1257611.36","8378946.01" +"856PW326RAM","DCAS","Department of Citywide Administrative Services",,"0","448204.24","2710036.47" +"856PW326RAQ","DCAS","Department of Citywide Administrative Services",,"4500000","0","0" +"856PW326RAR","DCAS","Department of Citywide Administrative Services",,"2144000","9418.76","270389.45" +"856PW326ZR02","DCAS","Department of Citywide Administrative Services",,"0","0","0" +"856PW340ELEC","DCAS","Department of Citywide Administrative Services",,"1804000","0.00","104084.13" +"856PW340EMAC","DCAS","Department of Citywide Administrative Services",,"6030000","0.00","11478893.89" +"856PW77136A","DCAS","Department of Citywide Administrative Services",,"8190000","129903","230739" +"856PW77198HV","DCAS","Department of Citywide Administrative Services",,"26090000","0","0" +"856PW77SIDA","DCAS","Department of Citywide Administrative Services",,"9000","10805.86","564807.40" +"81902202426","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2415000","368372.85","2046553.65" +"841TFD503M24","DOT","Department of Transportation","Fixed Asset","8000","197.00","581111.48" +"806BVIEW","HPD","Housing Preservation and Development","Fixed Asset","300000","0","1020000" +"81902202428","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","8000000","0","0" +"81902202434","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","14180000","3544770","10634310" +"81902202437","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5790000","0","0" +"81902202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12204000","0","0" +"846P-6517CBF","DPR","Department of Parks and Recreation","Lump Sum","368685000","0","0" +"81902202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2250000","0","0" +"81902202443","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12756000","725558.27","12918405.09" +"81902202445","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81902202446","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","176000","0","0" +"81902202448","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","30110000","0","0" +"81903202512","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","515000","514277.22","0" +"801P-3HILIN3","SBS","Department of Small Business Services","Fixed Asset","1000","1284825.57","9545406.33" +"801PIER35-36","SBS","Department of Small Business Services","Fixed Asset","0","0.00","15310662.77" +"850SEQ200586","DDC","Department of Design and Construction","Fixed Asset","2211000","5696423.09","40194229.75" +"81903202611","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","931000","0","0" +"81911201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2000","0.00","447605.49" +"81911201942","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","36000","0","933800" +"81911202001","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","236528" +"81918201515","HHC","Health and Hospitals Corporation","Lump Sum","27000","20956.47","454956.35" +"801PIER38","SBS","Department of Small Business Services","Fixed Asset","24000","12090.00","3088931.36" +"841TFD503X21","DOT","Department of Transportation","Fixed Asset","127000","7055","66129" +"81911202042","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","60000","0","0" +"81911202140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","570000","0","0" +"806HAM08HSST","HPD","Housing Preservation and Development","Fixed Asset","0","14653.12","2084025.89" +"846P-209MAST","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","679000","0.00","2430098.43" +"846P-1ORCHM2","DPR","Department of Parks and Recreation",,"419000","67101.11","83226.47" +"81911202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","242000","0.00","815415.08" +"81911202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","74000","0","426000" +"81911202345","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","117844.0","840186.1" +"81911202402","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2819000","175785.98","254791.02" +"81911202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","50000","0","0" +"806BONNER","HPD","Housing Preservation and Development","Lump Sum","750000","0","0" +"850PWKNFRONT","DDC","Department of Design and Construction","Lump Sum","0","0","45340" +"856PW77417SW","DCAS","Department of Citywide Administrative Services","Fixed Asset","5244000","316282.60","88900.78" +"856PW77417TU","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","4840000","0","0" +"126PV767RTF2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2000","0","54986" +"81911202444","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","67000","0","1933000" +"856PW77OEM1","DCAS","Department of Citywide Administrative Services","Fixed Asset","2750000","0","0" +"856PW77SANIT","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","46065.65","7787614.76" +"856PW77SECAM","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","389000","0.00","108967.51" +"850PVLAMANEX","DDC","Department of Design and Construction","Fixed Asset","0","0.00","145903.78" +"846NDF-CLNE","DPR","Department of Parks and Recreation","Fixed Asset","0","7315.64","4424462.53" +"846P-101MAR2","DPR","Department of Parks and Recreation","Fixed Asset","0","20870.00","3203581.45" +"846P-101MBRO","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1361156.28" +"846P-104AMEN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1227656.41" +"846P-104HPRM","DPR","Department of Parks and Recreation","Fixed Asset","12439000","241026.19","710510.58" +"850P109STARA","DDC","Department of Design and Construction","Fixed Asset","474000","150126.95","5777995.58" +"850PO79MOU1","DDC","Department of Design and Construction","Fixed Asset","10000","0.00","329026.33" +"850PVDTA-PH2","DDC","Department of Design and Construction","Fixed Asset","975000","98093.06","2895831.06" +"846P-1CRO42A","DPR","Department of Parks and Recreation","Fixed Asset","0","70765.00","659732.84" +"850PWXNMERCC","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"81911202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"8067AVC26","HPD","Housing Preservation and Development","Lump Sum","8000","0","0" +"057F1-GCT09","FDNY","Fire Department",,"1636000","240300.21","1268459.79" +"071HH112HMBL","DHS","Department of Homeless Services","Fixed Asset","5499000","3875.1","151124.9" +"856PW77CONED","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","145000","0.00","13705808.99" +"81911202602","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","183000","0","0" +"856PW77DAK01","DCAS","Department of Citywide Administrative Services","Fixed Asset","37000","0.00","406999.63" +"846P-1CPIP52","DPR","Department of Parks and Recreation","Fixed Asset","-225000","0.00","4498673.23" +"846P-1CROT14","DPR","Department of Parks and Recreation","Fixed Asset","0","148480.94","1768283.75" +"850HWXF2000B","DDC","Department of Design and Construction","Fixed Asset","1265000","1409804.98","9772989.24" +"850LBC16MPHC","DDC","Department of Design and Construction","Fixed Asset","425000","663266.61","6062569.31" +"850PW77LYA","DDC","Department of Design and Construction","Fixed Asset","6090000","3633914.71","62726661.71" +"071HH112AUBR","DHS","Department of Homeless Services","Fixed Asset","8000","10610.19","4820179.71" +"071HH112BARS","DHS","Department of Homeless Services","Fixed Asset","5850000","226303.26","423696.74" +"81911202613","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","150000","0","0" +"071HH112FWFR","DHS","Department of Homeless Services","Fixed Asset","4546000","580000","205000" +"071HH112PAFL","DHS","Department of Homeless Services","Fixed Asset","1350000","0","52500" +"071HH112PJBP","DHS","Department of Homeless Services","Fixed Asset","146000","0.00","154276.76" +"071HH112PJRR","DHS","Department of Homeless Services","Fixed Asset","3401000","419652.38","5387030.99" +"071HH112PREK","DHS","Department of Homeless Services","Fixed Asset","1500000","0","0" +"071HH112THFC","DHS","Department of Homeless Services","Fixed Asset","1960000","3600","76400" +"850LNCA10YRK","DDC","Department of Design and Construction","Fixed Asset","1000","200.07","691618.08" +"81912201702","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","10000","2255.68","94333.54" +"81912201750","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","45000","0","135327" +"846P-1CROT68","DPR","Department of Parks and Recreation","Fixed Asset","0","42113.56","3057706.28" +"816HL82FINPL","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","4812000","0.00","1388138.07" +"8067AVC27","HPD","Housing Preservation and Development","Lump Sum","6105000","0","0" +"126PV894-JRM","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"850HWD10501A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","605163.13","4259091.75" +"126PVMMDG6","DCLA","Department of Cultural Affairs","Fixed Asset","2632000","0","0" +"850HWHARPER","DDC","Department of Design and Construction","Fixed Asset","107220000","27315330.10","11571424.20" +"071HH115UNEU","DHS","Department of Homeless Services","Fixed Asset","1350000","0.00","944821.43" +"071HHCN002","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","3000000","0","0" +"850LNCA15EDW","DDC","Department of Design and Construction","Fixed Asset","0","35880.06","523650.61" +"850LNCL15CAS","DDC","Department of Design and Construction","Fixed Asset","2873000","13355129.36","3189815.59" +"856PW266TOIL","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","19798000","0","0" +"846P-200884L","DPR","Department of Parks and Recreation","Fixed Asset","194000","0.00","78906.93" +"856PW193MOME","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"042YC055-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","2000000","0","0" +"801FLATCATVN","SBS","Department of Small Business Services","Fixed Asset","0","0.00","583378.85" +"042HU007-004","CUNY","City University of New York","Fixed Asset","0","7834.00","785921.09" +"81912201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","520356" +"81912201943","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","46000","0.0","401264.1" +"81912202001","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","51050" +"81912202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","10000","401400","0" +"81912202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81913201340","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","400535.92" +"81913201750","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","118000","0","0" +"81913201902","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","174737" +"841TFK50308","DOT","Department of Transportation","Fixed Asset","1000","0.0","60673.7" +"042BX054-098","CUNY","City University of New York","Fixed Asset","0","0.00","70947.31" +"042LM029016","CUNY","City University of New York","Fixed Asset","0","0","0" +"826PS-298","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"042LM020-011","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","150000" +"042LM017-009","CUNY","City University of New York","Fixed Asset","1000","0","1462974" +"846P-300EAST","DPR","Department of Parks and Recreation","Fixed Asset","0","3331450.07","3616088.99" +"801HIGHLINE","SBS","Department of Small Business Services","Fixed Asset","791000","162189.02","81157253.39" +"846P-307BTWP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","819822.20" +"846P-2BWCC05","DPR","Department of Parks and Recreation",,"58000","63023.06","587278.45" +"846P-2BWK11I","DPR","Department of Parks and Recreation",,"0","40168.22","888614.56" +"826PS-304","DEP","Department of Environmental Protection","Fixed Asset","11884000","5204401","570000" +"8067AVC28","HPD","Housing Preservation and Development","Lump Sum","6349000","0","0" +"846P-307AMNH","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","838003.06" +"846P-307ANEX","DPR","Department of Parks and Recreation","Fixed Asset","0","342551.90","15323961.86" +"846P-307RPLL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3169723.21" +"846P-1CHARLG","DPR","Department of Parks and Recreation","Fixed Asset","0","212580.29","1470158.64" +"850LNCM12NDP","DDC","Department of Design and Construction","Fixed Asset","2000","1967.32","328998.69" +"846P-2FRTHAM","DPR","Department of Parks and Recreation",,"0","0","0" +"816HL82EVER2","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","1727000","118728.00","14065049.25" +"850SEN002170","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"856PW193FANS","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","47089.9","107530.1" +"850PWDNTHJBI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","136744.52" +"826PS-313","DEP","Department of Environmental Protection","Fixed Asset","5351000","3223918.68","22269871.33" +"801HOURCHI1","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"81913202141","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","1133117" +"126PV860-JMM","DCLA","Department of Cultural Affairs","Fixed Asset","3391000","0","0" +"856STGESPLND","DCAS","Department of Citywide Administrative Services","Fixed Asset","800000","42420.00","3277703.42" +"801SUNNYARCH","SBS","Department of Small Business Services","Fixed Asset","123000","76815.01","521642.99" +"850P-407BHI3","DDC","Department of Design and Construction","Fixed Asset","6419000","209280.68","1339306.68" +"850P-413QCF1","DDC","Department of Design and Construction","Fixed Asset","3049000","7391441.74","2635851.63" +"850PWDFORT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","2819960" +"801PV467M125","SBS","Department of Small Business Services","Fixed Asset","2927000","0.00","601916.07" +"850SANDELEC5","DDC","Department of Design and Construction","Fixed Asset","0","42491.17","4079671.90" +"850SANDRENO","DDC","Department of Design and Construction","Fixed Asset","0","103278.69","13330281.02" +"850SANDSTPCP","DDC","Department of Design and Construction","Fixed Asset","138000","515212.35","12909777.15" +"042HU036-017","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042HU029-015","CUNY","City University of New York","Fixed Asset","375000","0","0" +"042HU035-016","CUNY","City University of New York","Fixed Asset","612000","0","0" +"850PWKNFRANS","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"826PS-316","DEP","Department of Environmental Protection","Fixed Asset","49197000","0","500000" +"826PS-317","DEP","Department of Environmental Protection","Fixed Asset","6206000","11013804.68","13818109.05" +"826PS-321","DEP","Department of Environmental Protection","Fixed Asset","25700000","43453358.44","5125446.47" +"850HH112HMFA","DDC","Department of Design and Construction","Fixed Asset","0","8365.43","66507.91" +"8067AVC29","HPD","Housing Preservation and Development","Lump Sum","6603000","0","0" +"856PW77ZK07","DCAS","Department of Citywide Administrative Services",,"520000","0","0" +"856PWD05CYBR","DCAS","Department of Citywide Administrative Services",,"92000","0.0","3629757.9" +"856PWD05SFHZ","DCAS","Department of Citywide Administrative Services",,"13000","6448.31","1585786.31" +"856PWD5BAG","DCAS","Department of Citywide Administrative Services",,"0","36892.57","177091.43" +"81913202142","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","17000","13300.00","783620.65" +"81913202144","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","254444.38","0" +"801HPRAILSBG","SBS","Department of Small Business Services",,"0","124058.23","2800304.70" +"801HLRNRUMC2","SBS","Department of Small Business Services",,"8500000","0","0" +"801HLWLCRENO","SBS","Department of Small Business Services",,"500000","0","0" +"801HPPRINGLE","SBS","Department of Small Business Services",,"1000000","0","0" +"042ME027-011","CUNY","City University of New York","Fixed Asset","219000","0.00","4244368.74" +"850HLDNMOUNT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","1687040.74" +"801LMCRFIDI","SBS","Department of Small Business Services",,"201121000","12523687.44","6355747.22" +"850HRDNCITYH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","76208" +"850HRDNOPORT","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HRMNAFRIC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"826R-156-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","92095000","7493140.93","964742.07" +"826RH-73-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826RH-80-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"81913202146","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.0","343350.9" +"81913202244","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.0","341270.5" +"81913202245","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","38000","0.00","129898.57" +"042ME030-013","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0","1700118" +"81913202246","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","15000","0","95401" +"850PWKNSEPHA","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"81913202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","208000","175920","0" +"81913202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"057F212911VA","FDNY","Fire Department","ITT, Vehicles, and Equipment","9992000","0.01","2190499.35" +"81929202102","HHC","Health and Hospitals Corporation","Fixed Asset","70000","0","0" +"841HWD10324","DOT","Department of Transportation","Lump Sum","300000","0","0" +"841HWD10328","DOT","Department of Transportation","Fixed Asset","400000","0","0" +"126PV219MCCE","DCLA","Department of Cultural Affairs","Fixed Asset","108000","13005.95","901301.05" +"126PV230-SEA","DCLA","Department of Cultural Affairs","Fixed Asset","29404000","0","0" +"071HHNC001","DHS","Department of Homeless Services","Fixed Asset","400000","0","0" +"126PV667-QC2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"8067AVC33","HPD","Housing Preservation and Development","Lump Sum","7649000","0","0" +"846P-3PDHBRC","DPR","Department of Parks and Recreation","Fixed Asset","27816000","25722274.99","29333130.78" +"846P-3PEDB81","DPR","Department of Parks and Recreation","Fixed Asset","0","165430.88","92174.64" +"846P-3PGRGYM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","389545.63" +"850HWRF05R","DDC","Department of Design and Construction","Fixed Asset","14862000","10154527.26","2277872.46" +"071HLCN014","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","0","0","0" +"81913202501","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","10000","0.00","1489618.53" +"846P-301DELU","DPR","Department of Parks and Recreation",,"0","0.00","2805217.36" +"846P-301BNEW","DPR","Department of Parks and Recreation",,"310000","0","0" +"801PWDYM&WHF","SBS","Department of Small Business Services","Lump Sum","721000","0","0" +"801PWK291","SBS","Department of Small Business Services","Fixed Asset","0","0.00","4663816.65" +"801PWKNTH","SBS","Department of Small Business Services","Fixed Asset","6242000","0","0" +"850AGDNJACOB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","63315" +"850AGDNMETRA","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850AGDNMETRC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850AGDNMETRO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850AGDNMETRY","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-4BRNKHF","DPR","Department of Parks and Recreation","Fixed Asset","216000","0","103850" +"126PV236BCSG","DCLA","Department of Cultural Affairs","Fixed Asset","5306000","0","0" +"126PV214-EST","DCLA","Department of Cultural Affairs","Fixed Asset","2450000","0","0" +"126PV236AUDI","DCLA","Department of Cultural Affairs","Lump Sum","5489000","0","0" +"846P-5CHARLE","DPR","Department of Parks and Recreation","Fixed Asset","48000","61495.72","2497156.15" +"826DEL-428","DEP","Department of Environmental Protection","Fixed Asset","-53000","0.0","579913.8" +"846P-303KIML","DPR","Department of Parks and Recreation",,"428000","840462.07","242601.93" +"850PV234CSV1","DDC","Department of Design and Construction","Lump Sum","3329000","3191707.04","10016882.93" +"042YC043-013","CUNY","City University of New York","Fixed Asset","0","147985","0" +"846P-5CPIDMT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5873391.25" +"850LNEM14WKF","DDC","Department of Design and Construction","Fixed Asset","0","1300.00","1134573.29" +"850LNEMA08WS","DDC","Department of Design and Construction","Fixed Asset","3000","119980.27","9360150.74" +"850LNXEA08BA","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"126PV293-EXT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","5000","0.00","193295.63" +"042CC022-012","CUNY","City University of New York","Fixed Asset","322000","0.00","2077999.99" +"826SIBB2-OAK","DEP","Department of Environmental Protection","Fixed Asset","3198000","155808.09","12086442.68" +"042QC004-013","CUNY","City University of New York","Fixed Asset","16000","5070000.0","236768.6" +"850CSDNJEWSH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"039LQSUNCCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","77141.58" +"042YC029-009","CUNY","City University of New York","Fixed Asset","0","0.00","2337698.23" +"801PASSSHIP","SBS","Department of Small Business Services","Fixed Asset","443000","304893.80","89056020.49" +"81913202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000000","0","0" +"846P-308STCP","DPR","Department of Parks and Recreation",,"10244000","147156.87","858291.59" +"846P-3PHILSQ","DPR","Department of Parks and Recreation","Fixed Asset","20265000","692924.57","705985.90" +"826TI-168-L","DEP","Department of Environmental Protection","Fixed Asset","13808000","34518345.56","28061384.93" +"826TI-169-L","DEP","Department of Environmental Protection","Fixed Asset","16477000","39041999.48","30937396.87" +"826TI-170-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826TI-5","DEP","Department of Environmental Protection","Lump Sum","6048000","648354.60","13470341.70" +"826WI-279-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","86500000","0.00","847306.78" +"826WI-281-L","DEP","Department of Environmental Protection","Fixed Asset","5700000","821160.96","144024328.05" +"826WI-282-L","DEP","Department of Environmental Protection","Fixed Asset","0","0.00","11571.87" +"856PWXBP78","DCAS","Department of Citywide Administrative Services",,"4000","17812.24","53539.71" +"826WI-284-L","DEP","Department of Environmental Protection","Fixed Asset","40171000","51775728.05","110718274.20" +"806HAM16HPBR","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","1000000","0","0" +"042QC018-008","CUNY","City University of New York","Fixed Asset","62000","0","0" +"856RE25LL","DCAS","Department of Citywide Administrative Services",,"1522000","0","0" +"856SANDCAFOP","DCAS","Department of Citywide Administrative Services",,"0","0","0" +"042QC047-013","CUNY","City University of New York","Fixed Asset","227000","0","0" +"042QC051-014","CUNY","City University of New York","Fixed Asset","0","9000.00","920370.83" +"856SCAELK250","DCAS","Department of Citywide Administrative Services",,"62000000","0","0" +"856SCASJVPV1","DCAS","Department of Citywide Administrative Services",,"6372000","0","0" +"856SCASJVPV2","DCAS","Department of Citywide Administrative Services",,"252000","0","0" +"856SOLARDB1","DCAS","Department of Citywide Administrative Services",,"25559000","15196379.03","0" +"856SANDCRM","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"850HLDNBARNA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","254400" +"850HLDNBLD12","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","165000","165000","0" +"850HLDNCHPIT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNCOMUT","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLDNCORNL","DDC","Department of Design and Construction",,"0","0","271140" +"850HLDNEGVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","48000","0","0" +"846P-4CPIBOW","DPR","Department of Parks and Recreation","Fixed Asset","-710000","0.00","5244175.22" +"801LS-CCNY1","SBS","Department of Small Business Services",,"15000000","0","0" +"801LS-GOTHAM","SBS","Department of Small Business Services",,"45000000","0","0" +"801LS-MSINAI","SBS","Department of Small Business Services",,"11600000","11476859.05","123140.95" +"801LS-PRI","SBS","Department of Small Business Services",,"0","0","0" +"801MCTINSHOR","SBS","Department of Small Business Services",,"0","0","0" +"801NONTRADEM","SBS","Department of Small Business Services",,"979000","0","0" +"801NYCFHP2","SBS","Department of Small Business Services",,"52429000","35768704.10","37283811.56" +"850HLDNESIDE","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"806HAM15MOGD","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806HAM15SJBC","HPD","Housing Preservation and Development","Fixed Asset","50000","0","0" +"035L19TECHUP","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","0","0","0" +"042QC039-011","CUNY","City University of New York","Fixed Asset","50000","0","0" +"035L20RTECH","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","0","0","0" +"035L23LPAFAS","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","3002000","0","0" +"035LR24NETWK","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","244000","171780.28","2954532.17" +"035LR24PCPR","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","718000","338731.39","962268.61" +"035LR25CCTV","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","3026000","209443.33","0" +"035LR26_WIFI","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","538000","0","0" +"035LRCA14LPA","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","0","0","0" +"035LRM16SIPS","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","0","0","0" +"035LRMA11NEQ","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","0","0","228008" +"035LTECHCC","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","0","0","0" +"035LTECHMAY","NYRL","New York Research Libraries","ITT, Vehicles, and Equipment","132000","0","0" +"037LN18SECUR","NYPL","New York Public Library","ITT, Vehicles, and Equipment","6000","0.00","651235.09" +"037LN18TSHVA","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"841HWQ1199","DOT","Department of Transportation","Fixed Asset","5289000","0","0" +"042QC054-015","CUNY","City University of New York","Fixed Asset","1000","48193.45","3050473.13" +"037LN19WIFI","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0.00","388722.63" +"037LN20PCPR","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","11972.04","6044831.46" +"042QC061-016","CUNY","City University of New York","Lump Sum","1500000","0","0" +"037LN20PHONE","NYPL","New York Public Library","ITT, Vehicles, and Equipment","6000","0.00","796666.43" +"037LN20TECH","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LN23TRKS","NYPL","New York Public Library","ITT, Vehicles, and Equipment","8000","0.00","1141090.64" +"042QC065-017","CUNY","City University of New York","Fixed Asset","839000","0","161175" +"042QC066-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","1754000","0","245500" +"846NDF-GGPRK","DPR","Department of Parks and Recreation","Fixed Asset","18720000","0","0" +"042QC040-011","CUNY","City University of New York","Fixed Asset","0","19422.99","3133195.71" +"037LN24FLEET","NYPL","New York Public Library","ITT, Vehicles, and Equipment","-55000","0","153606" +"042QC061-017","CUNY","City University of New York","Fixed Asset","1326000","0","0" +"037LN24NETWK","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","16317.00","3299032.08" +"037LN24PCPR","NYPL","New York Public Library","ITT, Vehicles, and Equipment","1240000","916467.34","5992532.66" +"846P-110BFPG","DPR","Department of Parks and Recreation","Fixed Asset","3072000","15261.51","129389.39" +"042YC023-007","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","177419.91" +"042YC019-006","CUNY","City University of New York","Fixed Asset","0","0","66055" +"846P-3AIDSLC","DPR","Department of Parks and Recreation",,"0","0","0" +"846P-3BWSP10","DPR","Department of Parks and Recreation",,"0","0.00","1821138.31" +"846P-3CENCCA","DPR","Department of Parks and Recreation",,"1983000","104224.4","1980263.6" +"846P-3CPI23D","DPR","Department of Parks and Recreation",,"80000","378868.83","140091.62" +"037LN25CCTV","NYPL","New York Public Library","ITT, Vehicles, and Equipment","1764000","77336.95","0" +"037LN25CNNCT","NYPL","New York Public Library","ITT, Vehicles, and Equipment","865000","200000","0" +"037LN26ITCC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","950000","0","0" +"801HILINEM&O","SBS","Department of Small Business Services","Fixed Asset","157000","34383.69","18659979.96" +"042CC025-013","CUNY","City University of New York","Lump Sum","0","0","0" +"042CC032-015","CUNY","City University of New York","Fixed Asset","200000","0","0" +"037LN26ITHG","NYPL","New York Public Library","ITT, Vehicles, and Equipment","150000","0","0" +"037LN26ITMBP","NYPL","New York Public Library","ITT, Vehicles, and Equipment","453000","0","0" +"037LN26ITME","NYPL","New York Public Library","ITT, Vehicles, and Equipment","100000","0","0" +"037LN26ITSD","NYPL","New York Public Library","ITT, Vehicles, and Equipment","100000","0","0" +"037LN26ITXBP","NYPL","New York Public Library","ITT, Vehicles, and Equipment","340000","0","0" +"037LN26_WIFI","NYPL","New York Public Library","ITT, Vehicles, and Equipment","707000","0","0" +"042QB179-098","CUNY","City University of New York","Fixed Asset","10000","0.0","42517.2" +"042MC029-012","CUNY","City University of New York","Fixed Asset","400000","0.00","998670.65" +"072C-101WEST","DOC","Department of Correction","Fixed Asset","498000","1513800.38","14381951.92" +"037LNBERHVAC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","1500000","0","0" +"846P-200PERG","DPR","Department of Parks and Recreation","Fixed Asset","781000","38141.45","123080.35" +"042YC049-014","CUNY","City University of New York","ITT, Vehicles, and Equipment","200000","149000","0" +"037LNCA10FWT","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","40302" +"126PVN042PH2","DCLA","Department of Cultural Affairs","Fixed Asset","1953000","0","0" +"039LQQVSCKIN","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","385000","0","0" +"037LNCA14SIS","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0.00","81554.88" +"037LNCD02TEC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"042MC202-006","CUNY","City University of New York","Lump Sum","0","0.00","9979705.69" +"037LNCD04TEC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNCD05TEC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNCD11TEC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNCM11TKL","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0.00","689420.56" +"037LNHPTECH1","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNMUHTECH","NYPL","New York Public Library","ITT, Vehicles, and Equipment","5000","0","0" +"037LNSYS-SEC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNTECHBBP","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNTECHCC","NYPL","New York Public Library","ITT, Vehicles, and Equipment","2979000","0","0" +"037LNTECHMAY","NYPL","New York Public Library","ITT, Vehicles, and Equipment","147000","0","0" +"037LNTECHMBP","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNTECHSBP","NYPL","New York Public Library","ITT, Vehicles, and Equipment","457000","0","0" +"037LNVARTECH","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNVEHCLES","NYPL","New York Public Library","ITT, Vehicles, and Equipment","42000","0","0" +"038LBC10SWIT","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0.0","3237968.3" +"038LBC15PBGF","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0","0" +"038LBC19CIPB","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0","0" +"038LBC24CYLT","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","31000","0","68603" +"846P-108RIVE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","157559.23" +"801NYSE","SBS","Department of Small Business Services",,"125000","0.03","24114965.71" +"801P-200PPE1","SBS","Department of Small Business Services",,"17479000","2173114.19","152809.42" +"801P-3ERE22J","SBS","Department of Small Business Services",,"269881000","8160307.25","16549759.87" +"801PENISUPH1","SBS","Department of Small Business Services",,"2500000","0","0" +"038LBC24NLFE","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","200000","0","0" +"038LBC26ARLT","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","85000","0","0" +"038LBK19SWPC","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0.0","1380979.8" +"038LBK26WWIT","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","835000","0","0" +"038LBM22STPC","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0.00","1137783.11" +"038LBM22VOIP","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0","0" +"038LBM24NETW","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0","0" +"038LBM25SWHW","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","225000","0.00","39514.69" +"038LBM25SWPR","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","415000","392818.38","0" +"038LBM25SWST","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","117000","26550","0" +"038LBM26PCUP","BPL","Brooklyn Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQ122-SC1","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","786000","0.00","10011306.76" +"039LQAS-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","607000","0","0" +"039LQAUB-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","52000","0","0" +"042QB031-007","CUNY","City University of New York","Fixed Asset","166000","7109168.90","10274484.75" +"042YC006-010","CUNY","City University of New York","Fixed Asset","0","0","129440" +"846P-3CPI3AL","DPR","Department of Parks and Recreation",,"0","826877.19","8983725.63" +"826JA-STAB","DEP","Department of Environmental Protection","Lump Sum","550000","4719169.96","519714788.23" +"039LQBP-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","530000","0","0" +"039LQBW-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","20000","0","0" +"039LQBW-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1000000","0","0" +"039LQC122INF","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","35000","0.00","1870224.27" +"039LQCA20BRT","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQCA20BUS","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","54000","0","246401" +"039LQCA20C26","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","450000","0","0" +"039LQCA20C27","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","200000","0","0" +"039LQCA20LOT","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","78000","0","0" +"039LQCCTV-25","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1819000","0","0" +"039LQCM19DAR","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","9000","0","266380" +"039LQCM19SCA","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","172000","0.00","445942.28" +"039LQCOR-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1140000","0","0" +"039LQCS-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","66000","0","0" +"039LQD122-E1","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","1221878.99" +"039LQD122ITS","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","164000","0.00","4485012.04" +"039LQD122MLA","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","146000","0","454402" +"039LQD122OTS","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","261000","0","0" +"039LQD122TEC","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","2885546.14" +"039LQD122TEL","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","184000","0.00","272210.45" +"039LQD122VEN","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","247000","0","736747" +"039LQDL-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1000000","0","0" +"039LQFHITECH","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","50000","0","0" +"039LQFLEET","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1000000","0","0" +"039LQG-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQHB-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQHO-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","750000","0","0" +"039LQITDCHEC","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","57000","0.00","1923155.87" +"039LQITDDESK","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","287000","38708.60","2274825.40" +"039LQITDNETU","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","3743000","0","0" +"039LQITFY15","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1315000","0","0" +"039LQKRONOS","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","762779.07" +"039LQLA-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","733000","0","0" +"039LQLERENOV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","21900000","0","0" +"039LQLR-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQM19CETV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","505000","0","0" +"039LQM19FLTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQM19GDTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQM19LITV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","112000","0","0" +"039LQM19QVTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQMA-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQMAS-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","930000","0","0" +"039LQMCGCCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQMV-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQNFPTECH","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","40000","0","0" +"039LQQV-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","600000","0","0" +"039LQRD-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQRG-TECH","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQRH-TECH","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQRO-CCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQRP-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1480000","0","0" +"039LQRS-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","750000","0","0" +"039LQRWDTECH","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","94000","0","0" +"039LQSA-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","800000","0","0" +"039LQSH-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","600000","0","0" +"039LQSJ-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","750000","0","0" +"039LQSOP-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","1350000","0","0" +"039LQWN-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","500000","0","0" +"039LQWS-FFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","750000","0","0" +"039LQWSTTECH","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","44000","0","0" +"039SANDEQUIP","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","447759.31" +"042ACECUN231","CUNY","City University of New York","ITT, Vehicles, and Equipment","931000","11145826","222570" +"042ACECUN232","CUNY","City University of New York","ITT, Vehicles, and Equipment","59000","7842090","98550" +"042ACECUN233","CUNY","City University of New York","ITT, Vehicles, and Equipment","1425000","16760155","241705" +"042ACECUN234","CUNY","City University of New York","ITT, Vehicles, and Equipment","1073000","12712339.93","214524.07" +"042ACECUN801","CUNY","City University of New York","ITT, Vehicles, and Equipment","1317000","4310246.45","2874225.55" +"042ACECUN901","CUNY","City University of New York","ITT, Vehicles, and Equipment","361000","3847639.06","899058.94" +"042BA002-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042BA004-003","CUNY","City University of New York","ITT, Vehicles, and Equipment","9000","0","140054" +"042BA009-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.0","319380.8" +"042BA013-013","CUNY","City University of New York","ITT, Vehicles, and Equipment","157000","0.00","411815.64" +"042BA018-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","92000","0.00","444755.16" +"8067AVC34","HPD","Housing Preservation and Development","Lump Sum","7901000","0","0" +"042BA020-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","150000","0","0" +"042BA023-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","515000","0","0" +"042BA028-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","700000","0","0" +"042BA029-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","500000","0","0" +"042BA029-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","1064000","92.88","830847.12" +"042BY001-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","500000","0","0" +"042BY001-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","1500000","0","0" +"042BY002-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","50000","0","0" +"042BY035-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","38000","0","0" +"042BY067-005","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","119496.62","0" +"042BY068-005","CUNY","City University of New York","ITT, Vehicles, and Equipment","87000","85811","36770" +"042CA001QC26","CUNY","City University of New York","ITT, Vehicles, and Equipment","3994000","3472733","0" +"042CA002-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042CA002-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","1442000","0","0" +"042CA013-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","776126.00","1210090.05" +"042CA015-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","42686.63","26519.43" +"042CA025BX01","CUNY","City University of New York","ITT, Vehicles, and Equipment","3230000","3081429","0" +"042CA025QB01","CUNY","City University of New York","ITT, Vehicles, and Equipment","459000","458510","0" +"042CA026-011","CUNY","City University of New York","ITT, Vehicles, and Equipment","821000","0","0" +"042CA028-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","462374" +"042CA044-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042CA048-015","CUNY","City University of New York","ITT, Vehicles, and Equipment","8000","0.0","141226.9" +"042CA053-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","165000","0","0" +"042CA053-O16","CUNY","City University of New York","ITT, Vehicles, and Equipment","8000","4.00","1169447.75" +"042CA055-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042CA200HS03","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.00","176420.39" +"042CA200HS05","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.00","186073.68" +"042CA201LG02","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042CA207-006","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"8067AVC35","HPD","Housing Preservation and Development","Lump Sum","8162000","0","0" +"042CA91CIS26","CUNY","City University of New York","ITT, Vehicles, and Equipment","4105000","0","0" +"042CC001-023","CUNY","City University of New York","ITT, Vehicles, and Equipment","1150000","0","0" +"042CC004-003","CUNY","City University of New York","ITT, Vehicles, and Equipment","17000","0","143894" +"042CC006-004","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","134993" +"042CC013-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","86000","9083.71","595605.98" +"042CC029-014","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042CC038-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","2400000","0","0" +"042CC041-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","1800000","0","0" +"042CC044-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","1800000","0","0" +"042CC047-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","400000","0","0" +"042CC049-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042CL012-007","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","31824.45" +"042CL017-013","CUNY","City University of New York","ITT, Vehicles, and Equipment","7000","0","0" +"042CL025-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","2400000","0","0" +"042COVID19IT","CUNY","City University of New York","ITT, Vehicles, and Equipment","127000","0.00","1664798.27" +"042GR001-010","CUNY","City University of New York","ITT, Vehicles, and Equipment","11000","10340.00","989268.00" +"042GR001-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","768000","0","0" +"042GR001-023","CUNY","City University of New York","ITT, Vehicles, and Equipment","400000","0","0" +"042GR001-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","360000","0","0" +"042GR002-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042GR007-007","CUNY","City University of New York","ITT, Vehicles, and Equipment","71000","0","0" +"042GR011-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.00","829162.97" +"042GR011-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","150000","0","0" +"042GR021-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","3000","0","391597" +"042GR024-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.0","153995.5" +"042GR025-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","275000","0","0" +"042HU010-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","125000","0","0" +"042HU011-006","CUNY","City University of New York","ITT, Vehicles, and Equipment","8000","0.00","133111.92" +"042HU019-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0","49484" +"042JJ001-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042JJ001-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","450000","0","0" +"042JJ001-023","CUNY","City University of New York","ITT, Vehicles, and Equipment","250000","158901","0" +"042JJ001-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","113000","0","0" +"042JJ002-010","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.00","299286.34" +"042JJ002-023","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000000","0","0" +"042JJ002-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","1295000","0","0" +"042JJ002-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","560000","0","0" +"042JJ010-008","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","0.0","779913.5" +"042JJ013-011","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","297983.28" +"042JJ014-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.0","899060.5" +"042JJ017-014","CUNY","City University of New York","ITT, Vehicles, and Equipment","300000","296941","0" +"042JJ018-014","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","297161.91" +"042JJ020-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","5000","0","245230" +"042JJ021-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","350000","0","0" +"042JJ023-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","275000","0","0" +"042JJ027-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000","199145","0" +"042JJ028-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","325000","0","0" +"042JJ030-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","249576","0" +"042JJ030-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","600000","0","0" +"042JJ031-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","800000","0","0" +"042JJ031-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000000","0","0" +"042JJ033-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","350000","0","0" +"042JJ034-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.25","1999999.75" +"042KG002-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","2752000","286139.65","126360.35" +"042KG003-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","150000","0","0" +"042KG021-006","CUNY","City University of New York","ITT, Vehicles, and Equipment","54000","0.00","622926.99" +"042LG001-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","3114581","0" +"042LG001-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","3000000","0","0" +"042LG039-015","CUNY","City University of New York","ITT, Vehicles, and Equipment","100000","0","0" +"042LM003-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","6616000","5776620","0" +"042ME015-004","CUNY","City University of New York","ITT, Vehicles, and Equipment","10000","0.00","388218.52" +"042ME017-004","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","5452.00","729167.73" +"042ME024-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.0","293269.2" +"042ME031-013","CUNY","City University of New York","ITT, Vehicles, and Equipment","47000","0.00","1352889.01" +"042ME036-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","500000","0","0" +"042ME043-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000000","0","0" +"042MH001-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","150000","0","0" +"042MH001-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","125000","103526","0" +"042MH001-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","139000","138863","0" +"042MH059-017","CUNY","City University of New York","ITT, Vehicles, and Equipment","450000","0","0" +"042MH060-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","450000","0","0" +"042NY001-023","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000000","0","0" +"042NY001-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","700000","0","0" +"042NY013-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0.00","1471629.37" +"042NY021-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042NY025-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","702000","4127027.64","5518079.36" +"042NY026-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","1822000","0.0","497976.1" +"042NY027-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","256000","130199.00","375343.75" +"042NY029-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042NY030-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","394000","363103.52","43733.18" +"042NY031-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","252000","251736","0" +"042NY032-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","156000","0","0" +"042NY032-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","2000000","0","0" +"042NY033-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","88000","86677","0" +"042NY034-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","373000","372763","0" +"042NY036-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","818000","0","0" +"042QC001-026","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000000","0","0" +"042QC002-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","6000","0","0" +"042QC003-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","200000","0","0" +"042QC004-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042QC070-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","1900000","57792","56193" +"846PV510-HLG","DPR","Department of Parks and Recreation","Fixed Asset","53000","0.00","1119558.41" +"042QC073-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","1942000","24335","782380" +"042QC079-020","CUNY","City University of New York","ITT, Vehicles, and Equipment","63000","437433","0" +"846SANDY2-32","DPR","Department of Parks and Recreation","Fixed Asset","1898000","153800.56","101496.96" +"042SJ001-021","CUNY","City University of New York","ITT, Vehicles, and Equipment","3000","0.00","140929.95" +"042SJ001-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","2137000","0","0" +"042SJ001-023","CUNY","City University of New York","ITT, Vehicles, and Equipment","1000000","0","0" +"042SJ002-022","CUNY","City University of New York","ITT, Vehicles, and Equipment","138000","0","0" +"042SJ002-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","216000","0","0" +"042SJ049-018","CUNY","City University of New York","ITT, Vehicles, and Equipment","250000","0","0" +"042SJ050-019","CUNY","City University of New York","ITT, Vehicles, and Equipment","669000","0.00","630714.14" +"042ST001-024","CUNY","City University of New York","ITT, Vehicles, and Equipment","3568000","0","0" +"042ST001-025","CUNY","City University of New York","ITT, Vehicles, and Equipment","1500000","0","0" +"042YC031-009","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042YC048-014","CUNY","City University of New York","ITT, Vehicles, and Equipment","0","0","0" +"042YC054-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","356000","312447","0" +"850BED-809","DDC","Department of Design and Construction","Fixed Asset","182000","4149151.66","30744864.07" +"056HAM26TWSC","NYPD","Police Department","ITT, Vehicles, and Equipment","180000","0","0" +"056P-101SMSC","NYPD","Police Department","ITT, Vehicles, and Equipment","110000","0","0" +"056P-1PUGSLY","NYPD","Police Department","ITT, Vehicles, and Equipment","90000","0","0" +"056PO208CDDR","NYPD","Police Department","ITT, Vehicles, and Equipment","0","0.00","4628823.98" +"056PO46-MTA","NYPD","Police Department","ITT, Vehicles, and Equipment","16771000","441404.68","17097210.32" +"056PO79BMAKD","NYPD","Police Department","ITT, Vehicles, and Equipment","34000","0.00","480596.48" +"056PO79BMALE","NYPD","Police Department","ITT, Vehicles, and Equipment","1000000","0","0" +"056PO79-GEN","NYPD","Police Department","ITT, Vehicles, and Equipment","28014000","0","0" +"057ACEFDN231","FDNY","Fire Department","ITT, Vehicles, and Equipment","248000","28622.54","47593.84" +"846SANDY3-06","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-3PS155M","DPR","Department of Parks and Recreation","Fixed Asset","758000","233101.82","2921775.63" +"846P-3QUISCS","DPR","Department of Parks and Recreation","Fixed Asset","316000","400303.66","1774327.62" +"850CO277FA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","10400000","556588.75","947212.98" +"850HWKF488R","DDC","Department of Design and Construction","Fixed Asset","195000","67347.76","4714009.94" +"846SEED-PHCR","DPR","Department of Parks and Recreation",,"2000000","0","0" +"057BX109BAMB","FDNY","Fire Department","ITT, Vehicles, and Equipment","350000","0","0" +"057F10923TDA","FDNY","Fire Department","ITT, Vehicles, and Equipment","55000","3544114","0" +"057F109BHAMB","FDNY","Fire Department","ITT, Vehicles, and Equipment","1123000","94475.22","6572497.45" +"057F109-BUCK","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109EMLT5","FDNY","Fire Department","ITT, Vehicles, and Equipment","275000","9329947.74","2213012.01" +"057F109FCL20","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","52866.18","2230928.01" +"057F109FLEET","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109FLT22","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0.00","2702894.66" +"057F109FLT26","FDNY","Fire Department","ITT, Vehicles, and Equipment","5392000","0","0" +"057F109HAZ11","FDNY","Fire Department","ITT, Vehicles, and Equipment","1230000","13733.12","672922.84" +"057F109HPP23","FDNY","Fire Department","ITT, Vehicles, and Equipment","61000","8682870","0" +"057F109HPPUM","FDNY","Fire Department","ITT, Vehicles, and Equipment","4474000","0","0" +"057F109HRISE","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"850HLKNMAIM1","DDC","Department of Design and Construction","Fixed Asset","289000","0","0" +"846SANDY5-33","DPR","Department of Parks and Recreation",,"0","0.00","203992.37" +"846P-3RANDSC","DPR","Department of Parks and Recreation","Fixed Asset","1710000","0","437000" +"846P-3REC54E","DPR","Department of Parks and Recreation","Fixed Asset","106000","144600.00","384882.72" +"846SANDY6-01","DPR","Department of Parks and Recreation",,"0","8620.63","435474.08" +"846SEED-MBCB","DPR","Department of Parks and Recreation",,"11694000","0","0" +"057F109-IE","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109-IE20","FDNY","Fire Department","ITT, Vehicles, and Equipment","-11000","1328.95","13672040.93" +"057F109-IE21","FDNY","Fire Department","ITT, Vehicles, and Equipment","-3000","26328.56","7077689.46" +"057F109-IE22","FDNY","Fire Department","ITT, Vehicles, and Equipment","4893000","2369048.46","6976430.17" +"057F109-IE23","FDNY","Fire Department","ITT, Vehicles, and Equipment","38764000","6204790.46","12533481.09" +"057F109-IE24","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109-IE25","FDNY","Fire Department","ITT, Vehicles, and Equipment","20125000","99912.49","461193.24" +"057F109-IE26","FDNY","Fire Department","ITT, Vehicles, and Equipment","3257000","0","0" +"057F109-IE27","FDNY","Fire Department","ITT, Vehicles, and Equipment","2188000","0","0" +"057F109-IE28","FDNY","Fire Department","ITT, Vehicles, and Equipment","2001000","0","0" +"846P-3HRPTHS","DPR","Department of Parks and Recreation","Fixed Asset","152000","0","514000" +"057F109-IE29","FDNY","Fire Department","ITT, Vehicles, and Equipment","561000","0","0" +"057F109-IE30","FDNY","Fire Department","ITT, Vehicles, and Equipment","12406000","0","0" +"057F109-IE31","FDNY","Fire Department","ITT, Vehicles, and Equipment","2753000","0","0" +"057F109-IE32","FDNY","Fire Department","ITT, Vehicles, and Equipment","20000000","0","0" +"057F109-IE33","FDNY","Fire Department","ITT, Vehicles, and Equipment","20000000","0","0" +"057F109-IE34","FDNY","Fire Department","ITT, Vehicles, and Equipment","13237000","0","0" +"057F109-IE35","FDNY","Fire Department","ITT, Vehicles, and Equipment","7745000","0","0" +"057F109LAD26","FDNY","Fire Department","ITT, Vehicles, and Equipment","1520000","1286851","232749" +"057F109LADDE","FDNY","Fire Department","ITT, Vehicles, and Equipment","30713000","0","0" +"8068ALC16","HPD","Housing Preservation and Development","Lump Sum","-182000","55905.00","8726145.57" +"057F109MARNE","FDNY","Fire Department","ITT, Vehicles, and Equipment","190000","0","0" +"057F109-PUM","FDNY","Fire Department","ITT, Vehicles, and Equipment","95841000","0","0" +"057F109PUM22","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","9365039" +"057F109PUM23","FDNY","Fire Department","ITT, Vehicles, and Equipment","30000","48128670","0" +"057F109PUM25","FDNY","Fire Department","ITT, Vehicles, and Equipment","31000","69082310","0" +"057F109RES16","FDNY","Fire Department","ITT, Vehicles, and Equipment","31973000","0","8601736" +"057F109RM023","FDNY","Fire Department","ITT, Vehicles, and Equipment","25000","15599414","0" +"057F109-RM26","FDNY","Fire Department","ITT, Vehicles, and Equipment","27809000",, +"057F109SAT15","FDNY","Fire Department","ITT, Vehicles, and Equipment","6600000","0","4707118" +"057F109SQPM3","FDNY","Fire Department","ITT, Vehicles, and Equipment","50000","9398520","3502" +"057F109-SUB","FDNY","Fire Department","ITT, Vehicles, and Equipment","29466000","0","0" +"057F109SUP13","FDNY","Fire Department","ITT, Vehicles, and Equipment","14833000","0","0" +"057F109-TDA","FDNY","Fire Department","ITT, Vehicles, and Equipment","15482000","0","0" +"057F109TDA23","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","8411932.51","8082052.79" +"057F109TDA25","FDNY","Fire Department","ITT, Vehicles, and Equipment","31000","4377172","0" +"057F109THW27","FDNY","Fire Department","ITT, Vehicles, and Equipment","950000","0","0" +"057F109-TL","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109TL722","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","2200938" +"057F109TL723","FDNY","Fire Department","ITT, Vehicles, and Equipment","178000","1602861.13","16182272.71" +"057F109TL726","FDNY","Fire Department","ITT, Vehicles, and Equipment","20457000",, +"057F109-TL75","FDNY","Fire Department","ITT, Vehicles, and Equipment","102269000","0","0" +"057F109TL753","FDNY","Fire Department","ITT, Vehicles, and Equipment","60000","20776856","0" +"057F109TL923","FDNY","Fire Department","ITT, Vehicles, and Equipment","299000","2315200.85","25023564.15" +"057F109-TL95","FDNY","Fire Department","ITT, Vehicles, and Equipment","24267000","0","0" +"057F109TL953","FDNY","Fire Department","ITT, Vehicles, and Equipment","30000","5393208","0" +"057F109-VAN","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F109-VEH","FDNY","Fire Department","ITT, Vehicles, and Equipment","36500000","0","0" +"057F175EC287","FDNY","Fire Department","ITT, Vehicles, and Equipment","7122000","26373242.93","21426358.59" +"057F175FASBK","FDNY","Fire Department","ITT, Vehicles, and Equipment","2015000","73756.22","81263.55" +"057F175FE163","FDNY","Fire Department","ITT, Vehicles, and Equipment","95000","105468.48","402615.19" +"057F175FE221","FDNY","Fire Department","ITT, Vehicles, and Equipment","8907000","247673.27","241046.84" +"057F175FE260","FDNY","Fire Department","ITT, Vehicles, and Equipment","1113000","6578187.10","1085953.32" +"057F175FE294","FDNY","Fire Department","ITT, Vehicles, and Equipment","7989000","5844539.08","380490.55" +"057F175FE295","FDNY","Fire Department","ITT, Vehicles, and Equipment","6712000","263530.85","199037.49" +"057F175FLOOR","FDNY","Fire Department","ITT, Vehicles, and Equipment","98579000","0","0" +"057F175FMHVC","FDNY","Fire Department","ITT, Vehicles, and Equipment","1130000","1200511.28","10881180.35" +"057F175FTANK","FDNY","Fire Department","ITT, Vehicles, and Equipment","1412000","100536.72","18097.09" +"057F175HBKCO","FDNY","Fire Department","ITT, Vehicles, and Equipment","104000","0","0" +"057F175SPACE","FDNY","Fire Department","ITT, Vehicles, and Equipment","6531000","200829.45","169078.33" +"057F192AES14","FDNY","Fire Department","ITT, Vehicles, and Equipment","391000","0","0" +"057F1-ARCS","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F1-COMMS","FDNY","Fire Department","ITT, Vehicles, and Equipment","57345000","0","0" +"057F1FACEQMT","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F1MORADIO","FDNY","Fire Department","ITT, Vehicles, and Equipment","1928000","6870859.81","22221101.76" +"850HWX410","DDC","Department of Design and Construction","Fixed Asset","94025000","5597000","0" +"057F1PHONEUP","FDNY","Fire Department","ITT, Vehicles, and Equipment","1015000","0","0" +"057F1TELEFLD","FDNY","Fire Department","ITT, Vehicles, and Equipment","600000","0","0" +"057F204CMPRS","FDNY","Fire Department","ITT, Vehicles, and Equipment","6931000","0","0" +"057F204TRAN2","FDNY","Fire Department","ITT, Vehicles, and Equipment","14548000","693482.59","1603556.82" +"850HLDN90NYU","DDC","Department of Design and Construction",,"0","0","0" +"801PASSSHIP4","SBS","Department of Small Business Services","Fixed Asset","167000","109791.94","5713205.32" +"057F212911TL","FDNY","Fire Department","ITT, Vehicles, and Equipment","500000","0","0" +"057F212EPCR2","FDNY","Fire Department","ITT, Vehicles, and Equipment","2119000","1777048","0" +"057F212HELTH","FDNY","Fire Department","ITT, Vehicles, and Equipment","1766000","461934.4","1287664.3" +"057F212LANUP","FDNY","Fire Department","ITT, Vehicles, and Equipment","71221000","0.00","231905.72" +"057F212PSAC2","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F212-TECH","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057F253AMBLN","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057FD109AMPS","FDNY","Fire Department","ITT, Vehicles, and Equipment","180000","0","0" +"057FD109ASPV","FDNY","Fire Department","ITT, Vehicles, and Equipment","125000","0","0" +"057FD109BATT","FDNY","Fire Department","ITT, Vehicles, and Equipment","148000","3600.00","976757.72" +"057FD109BF16","FDNY","Fire Department","ITT, Vehicles, and Equipment","200000","0","0" +"801P-311RAND","SBS","Department of Small Business Services","Fixed Asset","15000","0.00","32392162.98" +"801P-6NEWYN1","SBS","Department of Small Business Services","Fixed Asset","91000","41881.68","160566471.61" +"846P-3MON369","DPR","Department of Parks and Recreation",,"0","0.00","125024.33" +"056PO79120AC","NYPD","Police Department","Fixed Asset","41000","2060897.88","396252.13" +"850HLDNTHEIN","DDC","Department of Design and Construction",,"174000","0.00","359931.27" +"846P-3PDTDRC","DPR","Department of Parks and Recreation","Fixed Asset","8008000","3502803.52","7421081.57" +"846SANDY5-42","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","205473.43" +"846SANDY5-43","DPR","Department of Parks and Recreation","Fixed Asset","13054000","595248.04","1428408.45" +"850HLDNWOMLE","DDC","Department of Design and Construction",,"205000","0","0" +"850HLDWFARMS","DDC","Department of Design and Construction",,"1146000","0","0" +"850HLKNRDCSR","DDC","Department of Design and Construction",,"6000","0","119048" +"850HLQNMOUNN","DDC","Department of Design and Construction",,"0","0","563902" +"057FD109BTRK","FDNY","Fire Department","ITT, Vehicles, and Equipment","250000","0","0" +"057FD109CMND","FDNY","Fire Department","ITT, Vehicles, and Equipment","1938000","0","0" +"057FD109CMON","FDNY","Fire Department","ITT, Vehicles, and Equipment","10000","198524","0" +"057FD109CPR","FDNY","Fire Department","ITT, Vehicles, and Equipment","46000","0.0","254107.8" +"057FD109DIV8","FDNY","Fire Department","ITT, Vehicles, and Equipment","75000","0","0" +"057FD109FVAN","FDNY","Fire Department","ITT, Vehicles, and Equipment","130000","0","0" +"057FD109LOG9","FDNY","Fire Department","ITT, Vehicles, and Equipment","180000","0","0" +"057FD109MCPR","FDNY","Fire Department","ITT, Vehicles, and Equipment","2000","0","177786" +"057FD109PICK","FDNY","Fire Department","ITT, Vehicles, and Equipment","210000","0","0" +"057FD109PTOR","FDNY","Fire Department","ITT, Vehicles, and Equipment","20000","0","91697" +"806MMI30","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"850MED-594","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","20106.40","805373.28" +"057FD109RBOT","FDNY","Fire Department","ITT, Vehicles, and Equipment","450000","442966.02","0" +"057FD109SIMS","FDNY","Fire Department","ITT, Vehicles, and Equipment","300000","0","0" +"850LNEA08MHV","DDC","Department of Design and Construction","Fixed Asset","1938000","190822.61","6295749.21" +"850MED-598B","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","809000","3079658.99","58850784.32" +"126PVNYTWEQ","DCLA","Department of Cultural Affairs","Fixed Asset","1000","0.00","92282.08" +"856PW77501EL","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","180536.50","3557615.02" +"042MC036-016","CUNY","City University of New York","Fixed Asset","649000","0","0" +"850SANDY4-31","DDC","Department of Design and Construction","Fixed Asset","160000","160280.05","283763.95" +"856PWK2LEED","DCAS","Department of Citywide Administrative Services","Lump Sum","200000","0","0" +"042CA202MC01","CUNY","City University of New York","Fixed Asset","503000","6757.09","3899080.90" +"846P-3PIN181","DPR","Department of Parks and Recreation","Fixed Asset","138000","608743.37","130505.38" +"042MC028-010","CUNY","City University of New York","Fixed Asset","-109000","262357.27","10808588.30" +"850SOLARDOS2","DDC","Department of Design and Construction","Fixed Asset","2064000","38361.39","1426240.35" +"042MC024-008","CUNY","City University of New York","Fixed Asset","1521000","0.00","71955.31" +"801OHELFAM","SBS","Department of Small Business Services","Lump Sum","0","0.00","774295.44" +"042BY024-012","CUNY","City University of New York","Lump Sum","100000","0","0" +"042JJ021-015","CUNY","City University of New York","Fixed Asset","0","0","215000" +"81933201301","HHC","Health and Hospitals Corporation","Fixed Asset","27873000","1364814.43","3523101.05" +"042JJ022-016","CUNY","City University of New York","Lump Sum","0","0","60910" +"042JJ015-012","CUNY","City University of New York","ITT, Vehicles, and Equipment","340000","0","0" +"057FD109SIMU","FDNY","Fire Department","ITT, Vehicles, and Equipment","50000","0","1135400" +"057FD109SKID","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","60575" +"126PV123NYLA","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","147296.56" +"846P-503SSNC","DPR","Department of Parks and Recreation","Fixed Asset","-39000","0.00","68464.32" +"057FD109VHEL","FDNY","Fire Department","ITT, Vehicles, and Equipment","57000","0","0" +"057FD175D231","FDNY","Fire Department","ITT, Vehicles, and Equipment","200000","152145.48","0" +"826NR-STRUCT","DEP","Department of Environmental Protection","Fixed Asset","580113000","20477417.81","20013644.32" +"042HS055-098","CUNY","City University of New York","Fixed Asset","11000","0","507440" +"057FD175D325","FDNY","Fire Department","ITT, Vehicles, and Equipment","106000","0.00","94142.82" +"846P-4SAND01","DPR","Department of Parks and Recreation","Fixed Asset","0","19942.59","4490704.82" +"846P-3PL14A3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","924388.76" +"850LNMA12WAS","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5495927.83" +"850LNXA11WFM","DDC","Department of Design and Construction","Fixed Asset","945000","160226.38","1453881.90" +"846P-412LBRT","DPR","Department of Parks and Recreation",,"1018000","0","0" +"057FD175D326","FDNY","Fire Department","ITT, Vehicles, and Equipment","200000","0","0" +"057FD175G153","FDNY","Fire Department","ITT, Vehicles, and Equipment","1341000","1170999.18","148394.16" +"856PWMNYMHA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"057FD175G155","FDNY","Fire Department","ITT, Vehicles, and Equipment","1200000","78214.55","45672.93" +"057FD175G157","FDNY","Fire Department","ITT, Vehicles, and Equipment","410000","0","0" +"057FD175G158","FDNY","Fire Department","ITT, Vehicles, and Equipment","410000","0","0" +"057FD175G161","FDNY","Fire Department","ITT, Vehicles, and Equipment","14000","387601.51","496245.21" +"057FD175G165","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","192842.34","898243.15" +"057FD175G246","FDNY","Fire Department","ITT, Vehicles, and Equipment","233000","745800.27","220722.82" +"057FD175G254","FDNY","Fire Department","ITT, Vehicles, and Equipment","1281000","1058822.49","100426.09" +"057FD175G295","FDNY","Fire Department","ITT, Vehicles, and Equipment","1097000","63136.73","39744.5" +"057FD175G301","FDNY","Fire Department","ITT, Vehicles, and Equipment","1200000","124733.37","0" +"057FD175G307","FDNY","Fire Department","ITT, Vehicles, and Equipment","980000","48240.71","32739.11" +"057FD175G318","FDNY","Fire Department","ITT, Vehicles, and Equipment","1200000","169296.77","0" +"057FD175G320","FDNY","Fire Department","ITT, Vehicles, and Equipment","1200000","61684.32","61670.66" +"057FD175GE16","FDNY","Fire Department","ITT, Vehicles, and Equipment","1097000","1044156.20","79092.3" +"057FD175GE40","FDNY","Fire Department","ITT, Vehicles, and Equipment","920000","125667.47","153660.88" +"057FD175GE74","FDNY","Fire Department","ITT, Vehicles, and Equipment","653000","2705.56","544229.23" +"057FD175GE89","FDNY","Fire Department","ITT, Vehicles, and Equipment","204000","898092.72","97160.66" +"057FD175GE95","FDNY","Fire Department","ITT, Vehicles, and Equipment","53000","92201.49","725445.98" +"057FD175GE96","FDNY","Fire Department","ITT, Vehicles, and Equipment","1089000","36797.59","73377.41" +"057FD175GE97","FDNY","Fire Department","ITT, Vehicles, and Equipment","1200000","123887.48","0" +"806MMI31","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"850PV176ROOF","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3908330.67" +"801PUENTEWIL","SBS","Department of Small Business Services",,"7750000","0","0" +"801PWD99AERO","SBS","Department of Small Business Services",,"0","0","0" +"801PWDAGDTH","SBS","Department of Small Business Services",,"0","0","3140332" +"801PWDSIBPCT","SBS","Department of Small Business Services",,"49000","0","0" +"801QNSPLJACK","SBS","Department of Small Business Services",,"-126000","756.75","16034620.97" +"850HLDNSMARY","DDC","Department of Design and Construction","Fixed Asset","0","0","396098" +"850HLDNSTC61","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","50854" +"850HLDNTRANS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","70410" +"850HLKNMAIMM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"801PWDNMSJSC","SBS","Department of Small Business Services",,"513000","0","0" +"850HLQNBLOOD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","379204.06" +"850HLQNFHH05","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLREDNEW1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4000","0","35612" +"801PWDDAVI","SBS","Department of Small Business Services",,"18000","0.00","711259.34" +"846P-206RHBS","DPR","Department of Parks and Recreation","Fixed Asset","16979000","16385171.79","51171653.90" +"846P-206RHSF","DPR","Department of Parks and Recreation","Fixed Asset","7928000","17853311.14","5778730.33" +"846P-4CPICMA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2990419.31" +"806HAM21DYEL","HPD","Housing Preservation and Development","Fixed Asset","89000","1495154.00","4915156.82" +"801PWTOUROUN","SBS","Department of Small Business Services",,"500000","0","0" +"801QWESTB","SBS","Department of Small Business Services",,"0","0.00","53676165.98" +"801ROADNYC3","SBS","Department of Small Business Services",,"5046000","635188.06","4923811.94" +"846P-312ISA2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1064116.53" +"846P-312JHFA","DPR","Department of Parks and Recreation","Fixed Asset","135000","121607.44","180392.56" +"850PW357ELEV","DDC","Department of Design and Construction","Fixed Asset","431000","287537.52","7814310.11" +"806HAM15WSPL","HPD","Housing Preservation and Development","Fixed Asset","0","29709.89","209263.42" +"806HAM19ADEL","HPD","Housing Preservation and Development","Fixed Asset","341000","1490469.88","10228599.21" +"801SANDB4272","BNY","Brooklyn Navy Yard",,"6511000","309137","0" +"801SANDHPRXD","SBS","Department of Small Business Services",,"57739000","2871082.53","6116977.47" +"801SANDSIHP2","SBS","Department of Small Business Services",,"2526000","13454700.43","9660032.09" +"801SWBXLCN","SBS","Department of Small Business Services",,"306000","297207","197141" +"801TOTTENCBD","SBS","Department of Small Business Services",,"0","0.00","1158998.98" +"801VETMEM","SBS","Department of Small Business Services",,"4000000","0","0" +"801WCOMRES","SBS","Department of Small Business Services",,"865000","0","0" +"801WHITEPLRD","SBS","Department of Small Business Services",,"0","0","0" +"801WILLETPH2","SBS","Department of Small Business Services",,"212761000","78462877.28","47321122.72" +"801WILLETSEN","SBS","Department of Small Business Services",,"2628000","0.00","5329276.87" +"042YC035-011","CUNY","City University of New York","Fixed Asset","0","0.0","2971466.6" +"856PWD5BA1","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"042YC051-015","CUNY","City University of New York","Fixed Asset","484000","0","0" +"801BAMSTRAND","SBS","Department of Small Business Services","Fixed Asset","0","0.00","35302341.04" +"801BAMSTRTS","SBS","Department of Small Business Services","Fixed Asset","255000","0.00","1441635.72" +"801BAMSOSITE","SBS","Department of Small Business Services","Fixed Asset","0","0.00","6557706.04" +"801BATFACAD2","SBS","Department of Small Business Services","Fixed Asset","0","0.00","514781.11" +"801BATIMPRO","SBS","Department of Small Business Services","Fixed Asset","9801000","3551203.53","15011518.87" +"846P-2PDBRC2","DPR","Department of Parks and Recreation","Fixed Asset","5912000","11920829.80","7990547.90" +"8067AVC32","HPD","Housing Preservation and Development",,"7391000","0","0" +"057FK109LSER","FDNY","Fire Department","ITT, Vehicles, and Equipment","150000","0","0" +"057FK109YWDI","FDNY","Fire Department","ITT, Vehicles, and Equipment","73000","1182","115533" +"057FK19CPOST","FDNY","Fire Department","ITT, Vehicles, and Equipment","1000000","0","0" +"057FM109BAMB","FDNY","Fire Department","ITT, Vehicles, and Equipment","109000","0.00","445756.39" +"057FQ109ASAP","FDNY","Fire Department","ITT, Vehicles, and Equipment","270000","0","0" +"057FQ109COMD","FDNY","Fire Department","ITT, Vehicles, and Equipment","1500000","0","0" +"806MPLP26","HPD","Housing Preservation and Development","Lump Sum","60759000","4706037.17","49288227.83" +"841HWQ1190","DOT","Department of Transportation","Fixed Asset","18963000","0","2066000" +"806MPLP27","HPD","Housing Preservation and Development","Lump Sum","15506000","0","0" +"801BAMTFANA","SBS","Department of Small Business Services","Fixed Asset","70000","123926.30","37748452.70" +"846P-2PEDPLZ","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","910702.20" +"806HAM18CDLC","HPD","Housing Preservation and Development",,"268934000","389464277.83","119567503.89" +"806HAM18COTV","HPD","Housing Preservation and Development",,"0","0","0" +"846P-4BWALK1","DPR","Department of Parks and Recreation","Lump Sum","0","105981.37","672815.39" +"042ST030-015","CUNY","City University of New York","Lump Sum","0","0.00","352048.15" +"846P-309P123","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3474964.04" +"850LNMNA08LS","DDC","Department of Design and Construction","Lump Sum","669000","249227.25","7035003.83" +"057FQ109COUN","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"057FQ109CREW","FDNY","Fire Department","ITT, Vehicles, and Equipment","300000","0","0" +"057FQ109EVOC","FDNY","Fire Department","ITT, Vehicles, and Equipment","44000","0","355500" +"850HED-553","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","1743160.17","58959897.24" +"042ST032-015","CUNY","City University of New York","Fixed Asset","0","0.00","457735.32" +"039LQD122LFE","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","50000","0","0" +"846PV510-IRR","DPR","Department of Parks and Recreation","Fixed Asset","190000","0.00","780314.18" +"057FQ109GATR","FDNY","Fire Department","ITT, Vehicles, and Equipment","150000","0","0" +"057FQ109LOGI","FDNY","Fire Department","ITT, Vehicles, and Equipment","100000","0","0" +"042ST031-015","CUNY","City University of New York","Fixed Asset","0","0.00","3083654.31" +"846P-3PL14A6","DPR","Department of Parks and Recreation","Fixed Asset","11117000","25116.51","424883.49" +"846P-3PL16A1","DPR","Department of Parks and Recreation","Fixed Asset","0","41504.49","202289.75" +"846P-4EABTRC","DPR","Department of Parks and Recreation",,"0","0","1001250" +"846P-4SAND03","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","779959.6" +"042HS040-009","CUNY","City University of New York","Fixed Asset","1000","0","0" +"856PWK2MEDIA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","70000.00","1379973.69" +"846P-3LPLZCG","DPR","Department of Parks and Recreation","Fixed Asset","1000","46737.73","216551.46" +"057FQ109MRNE","FDNY","Fire Department","ITT, Vehicles, and Equipment","50000","50000","0" +"057FQ109PS50","FDNY","Fire Department","ITT, Vehicles, and Equipment","115000","0","0" +"057FQ109RBOT","FDNY","Fire Department","ITT, Vehicles, and Equipment","350000","0","0" +"057FQ109TBLE","FDNY","Fire Department","ITT, Vehicles, and Equipment","450000","0","0" +"057FR109BF26","FDNY","Fire Department","ITT, Vehicles, and Equipment","400000","0","0" +"057FR109STRM","FDNY","Fire Department","ITT, Vehicles, and Equipment","0","0","0" +"801YWASHEIEQ","SBS","Department of Small Business Services","Lump Sum","1370000","0","0" +"846P-2PLG13A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","86138.79" +"806HAM18THGR","HPD","Housing Preservation and Development",,"2000","0","497778" +"806HAM18URBF","HPD","Housing Preservation and Development",,"120000","0","0" +"806HAM19MHSE","HPD","Housing Preservation and Development",,"0","2143.41","68080.06" +"846P-312MJM2","DPR","Department of Parks and Recreation","Fixed Asset","71000","0.00","1783537.23" +"806HAM24RAIS","HPD","Housing Preservation and Development",,"0","0","0" +"806HAM25POLO","HPD","Housing Preservation and Development",,"0","0","0" +"806HAM25TCSE","HPD","Housing Preservation and Development",,"294000","0","0" +"057FR175G166","FDNY","Fire Department","ITT, Vehicles, and Equipment","23000","212543.05","890502.07" +"057FX109BV15","FDNY","Fire Department","ITT, Vehicles, and Equipment","186000","0","0" +"806KRHEINS","HPD","Housing Preservation and Development",,"500000","0","7000000" +"057FX175GE42","FDNY","Fire Department","ITT, Vehicles, and Equipment","52000","150550.79","808152.40" +"057SANDCNEQP","FDNY","Fire Department","ITT, Vehicles, and Equipment","3769000","494086.31","3866731.89" +"057SANDCNITC","FDNY","Fire Department","ITT, Vehicles, and Equipment","275000","6250.8","1195841.4" +"801DMECODOCK","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"806MPLP28","HPD","Housing Preservation and Development","Lump Sum","16126000","0","0" +"801ERVRWALL","SBS","Department of Small Business Services","Fixed Asset","1000","49723.87","2948080.46" +"841BRC156F","DOT","Department of Transportation","Fixed Asset","0","4650002.25","122647663.30" +"806HMFIRST28","HPD","Housing Preservation and Development",,"18000000","0","0" +"806HMFIRST29","HPD","Housing Preservation and Development",,"18000000","0","0" +"806HMFIRST30","HPD","Housing Preservation and Development",,"9000000","0","0" +"806HMFIRST31","HPD","Housing Preservation and Development",,"9000000","0","0" +"806HMFIRST32","HPD","Housing Preservation and Development",,"9000000","0","0" +"806HMFIRST33","HPD","Housing Preservation and Development",,"9000000","0","0" +"042ST035-016","CUNY","City University of New York","Fixed Asset","0","0.00","65328.78" +"042BX038-016","CUNY","City University of New York","Fixed Asset","166000","1244988","0" +"057SANDCNMAT","FDNY","Fire Department","ITT, Vehicles, and Equipment","647000","184781.15","17367548.91" +"068850THRDIT","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","502000","0","0" +"806MPLP29","HPD","Housing Preservation and Development","Lump Sum","16771000","0","0" +"126PV464SITE","DCLA","Department of Cultural Affairs","Fixed Asset","3699000","0","0" +"042HS007-010","CUNY","City University of New York","Fixed Asset","173000","0.00","118412.31" +"806HOMEFIX35","HPD","Housing Preservation and Development",,"3856000","0","0" +"806LEADPPP21","HPD","Housing Preservation and Development",,"0","994056.50","3458841.83" +"806LEADPPP25","HPD","Housing Preservation and Development",,"532000","252389","894208" +"806MFPRES","HPD","Housing Preservation and Development",,"0","0","106161095" +"806MHANYANCP","HPD","Housing Preservation and Development",,"500000","0","0" +"125AGSNPVH","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","257000","0","0" +"072SANDVCBC","DOC","Department of Correction","Fixed Asset","2851000","32184.38","282415.82" +"806N51HILLSD","HPD","Housing Preservation and Development",,"800000","0","0" +"806NBAXTER","HPD","Housing Preservation and Development",,"1250000","0","0" +"806NBEACON","HPD","Housing Preservation and Development",,"2000000","0","0" +"806NBELMCLT","HPD","Housing Preservation and Development",,"3350000","0","0" +"806NBROWNS","HPD","Housing Preservation and Development",,"1350000","0","0" +"806NCOLORSBK","HPD","Housing Preservation and Development",,"500000","0","0" +"806NDAIRY","HPD","Housing Preservation and Development",,"1000000","0","0" +"806NFORDLUTH","HPD","Housing Preservation and Development",,"1000000","0","0" +"806NGODIAN","HPD","Housing Preservation and Development",,"1000000","0","0" +"806NGOWANUSG","HPD","Housing Preservation and Development",,"9500000","0","0" +"806NHCCIHRLM","HPD","Housing Preservation and Development",,"250000","0","0" +"042BX014-091","CUNY","City University of New York","Fixed Asset","0","0.00","6840130.50" +"856PW2931C","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","86417" +"846SANDY6-07","DPR","Department of Parks and Recreation","Fixed Asset","0","8461.99","1196411.18" +"806MPLP30","HPD","Housing Preservation and Development","Lump Sum","17442000","0","0" +"801SIBULK","SBS","Department of Small Business Services","Fixed Asset","11870000","3935778.80","480964.00" +"806NMASPETH","HPD","Housing Preservation and Development",,"1500000","0","1700000" +"801SIESPLAND","SBS","Department of Small Business Services","Fixed Asset","2782000","0.76","6387149.35" +"856PW77LYAFE","DCAS","Department of Citywide Administrative Services","Fixed Asset","2009000","0","0" +"806NMHANYENY","HPD","Housing Preservation and Development",,"1500000","0","0" +"806NMYRTLE","HPD","Housing Preservation and Development",,"1000000","0","0" +"806NMHEIGHTS","HPD","Housing Preservation and Development",,"0","0","1125000" +"806NVERNON","HPD","Housing Preservation and Development",,"650000","0","2000000" +"806NJAMSR","HPD","Housing Preservation and Development",,"1500000","0","0" +"806NNORMAHOP","HPD","Housing Preservation and Development",,"2650000","0","0" +"806NOCEANC","HPD","Housing Preservation and Development",,"2500000","0","2500000" +"806NRHEINSR","HPD","Housing Preservation and Development",,"600000","0","0" +"806NRUTLAND","HPD","Housing Preservation and Development",,"500000","0","0" +"806NSPOFFORD","HPD","Housing Preservation and Development",,"5000000","0","5800000" +"806NTIMBALE","HPD","Housing Preservation and Development",,"1300000","0","1300000" +"806NTWF","HPD","Housing Preservation and Development",,"2900000","0","0" +"806PACT25","HPD","Housing Preservation and Development",,"-8653000","0","626405581" +"806PACT26","HPD","Housing Preservation and Development",,"1270834000","0","727363623" +"806PACT27","HPD","Housing Preservation and Development",,"1012114000","0","0" +"806R125W96","HPD","Housing Preservation and Development",,"125000","0","0" +"806R129W133","HPD","Housing Preservation and Development",,"500000","0","0" +"806R613NLOTS","HPD","Housing Preservation and Development",,"1000000","0","0" +"806R7133RD","HPD","Housing Preservation and Development",,"500000","0","0" +"806R89CARLTN","HPD","Housing Preservation and Development",,"1749000","0","0" +"806R90SANDS","HPD","Housing Preservation and Development",,"2500000","0","2000000" +"81942201301","HHC","Health and Hospitals Corporation","Fixed Asset","495000","0","0" +"038LBC16RHIT","BPL","Brooklyn Public Library","Fixed Asset","200000","0","0" +"856PWM77FJC","DCAS","Department of Citywide Administrative Services","Fixed Asset","314000","338894.75","8318569.79" +"841HWR920","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"846P-407FLPT","DPR","Department of Parks and Recreation","Fixed Asset","0","4187.11","1441889.18" +"068ACCISREPL","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","0","0" +"068ACSDCENTR","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","4116000","153827.14","2634541.68" +"068ACSFMS","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","122203.00","1441183.82" +"068ACSNETSEC","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","0","278621" +"068ADAMST","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","3920000","0","0" +"801SIHOMEPT","SBS","Department of Small Business Services","Fixed Asset","252000","224872.35","118031.67" +"806RBUFNYLGW","HPD","Housing Preservation and Development",,"1950000","0","0" +"806RELCEMI","HPD","Housing Preservation and Development",,"600000","0","0" +"806RENCORE49","HPD","Housing Preservation and Development",,"1470000","0","0" +"806RFIND","HPD","Housing Preservation and Development",,"250000","0","0" +"806RFRIEDMAN","HPD","Housing Preservation and Development",,"947000","0","0" +"806RGREENE","HPD","Housing Preservation and Development",,"150000","0","0" +"806RJOE","HPD","Housing Preservation and Development",,"200000","0","1990000" +"806RJOEUP","HPD","Housing Preservation and Development",,"1350000","0","0" +"806RLESANCP","HPD","Housing Preservation and Development",,"500000","0","0" +"806RLOSSURES","HPD","Housing Preservation and Development",,"500000","0","0" +"068ADAMSTIT","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1011000","282049.62","500336.38" +"068ADMSEC","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","334000","0","0" +"068ARCHIBUS","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1908000","1876606","0" +"068BKMTCITEQ","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","334000","190419.74","1462590.12" +"068BMSYST","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","7723000","0","0" +"801PV230-ACF","SBS","Department of Small Business Services","Fixed Asset","10000","1289935.67","8848064.33" +"056PO7911FR","NYPD","Police Department","Fixed Asset","193000","838688.82","5018254.31" +"846P-501MMRP","DPR","Department of Parks and Recreation",,"8845000","306956.22","16369.78" +"801PV264HART","SBS","Department of Small Business Services",,"-16000","0.00","22132061.18" +"801PV463ABC2","SBS","Department of Small Business Services","Fixed Asset","4376000","7475497.49","11399473.61" +"846P-3FFAGAN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1786323.05" +"846P-503SOUT","DPR","Department of Parks and Recreation",,"0","0","0" +"846P-5BOYLND","DPR","Department of Parks and Recreation",,"0","0","0" +"841BKBRDGCAM","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","34844.58","8843921.86" +"846P-3PLG13B","DPR","Department of Parks and Recreation","Fixed Asset","117000","259628.64","1360914.97" +"846P-5NWDROP","DPR","Department of Parks and Recreation",,"0","0","0" +"846P-5SNUGLL","DPR","Department of Parks and Recreation",,"780000","0","0" +"068CAS","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","11908.00","1279328.34" +"068DATAPROT","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1000","0","869926" +"068DATAWRHS","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","5580000","0.00","2229404.77" +"068EHRS","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1772000","4192.65","2565495.35" +"068ENCRYPTAS","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","363.14","526266.86" +"068GENETEC","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","4999000","0","0" +"068HRPSBSYST","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","5206000","726825.92","3541403.08" +"068IVRGENESY","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","5185000","1785034.10","675521.5" +"068JDSECSYC","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","3950000","0","0" +"068JDSECSYH","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","3950000","0","0" +"068JJFLEET","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","295000","0.0","2286224.7" +"068JSA61BWIT","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","399000","22339.69","626769.22" +"068NETCORE","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","0.04","4816075.63" +"068NETSERVER","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1691000","0.00","134510.40" +"068PREVSYST","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","7191000","0","0" +"068ROBPROCA","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1000000","0","0" +"068SALEF","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1000000","0","0" +"841HWM100CTN","DOT","Department of Transportation","Fixed Asset","0","0","0" +"126PV639ADOC","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"846P-312SWIN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","544102.54" +"806RROCHDALE","HPD","Housing Preservation and Development",,"3380000","0","3780000" +"806RVANSIC","HPD","Housing Preservation and Development",,"250000","0","0" +"806RVILLAGE","HPD","Housing Preservation and Development",,"2733000","0","0" +"806RWDSTKTER","HPD","Housing Preservation and Development",,"4500000","0","0" +"806S105W108","HPD","Housing Preservation and Development",,"0","0","0" +"806S1356FULT","HPD","Housing Preservation and Development",,"500000","0","0" +"806S1546ENY","HPD","Housing Preservation and Development",,"1000000","0","1000000" +"806S778PRATT","HPD","Housing Preservation and Development",,"300000","0","0" +"806SCATH","HPD","Housing Preservation and Development",,"1000000","0","0" +"806SCELINA","HPD","Housing Preservation and Development",,"1000000","0","0" +"806SCLARKSON","HPD","Housing Preservation and Development",,"2000000","0","0" +"806SCOMMONS","HPD","Housing Preservation and Development",,"1000000","0","0" +"806SDLACB67","HPD","Housing Preservation and Development",,"1500000","0","0" +"806SEED-45","HPD","Housing Preservation and Development",,"15000000","0","0" +"806SENIOR28","HPD","Housing Preservation and Development",,"54698000","0","0" +"806SENIOR29","HPD","Housing Preservation and Development",,"58621000","0","0" +"806SENIOR30","HPD","Housing Preservation and Development",,"77319000","0","0" +"806SENIOR31","HPD","Housing Preservation and Development",,"79719000","0","0" +"806SENIOR32","HPD","Housing Preservation and Development",,"55902000","0","0" +"806SGREENHPE","HPD","Housing Preservation and Development",,"1500000","0","0" +"806SHAVENGRN","HPD","Housing Preservation and Development",,"5140000","0","0" +"806SIKOS","HPD","Housing Preservation and Development",,"3000000","0","0" +"806SMHANYAK","HPD","Housing Preservation and Development",,"315000","0","0" +"806SNRASTORI","HPD","Housing Preservation and Development",,"5850000","0","0" +"068SPAYFCPOR","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","0","0" +"068SYSUPGRAD","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","0","0","0" +"068TABDATAMG","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","641000","0","168737" +"068TANIUMSEC","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","980000","0","0" +"068UNIONHALB","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","260000","0.00","903812.22" +"068VOIP","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","488000","719.60","4407832.41" +"841HWX711","DOT","Department of Transportation","Fixed Asset","2625000","0","0" +"806SWTREMONT","HPD","Housing Preservation and Development",,"1250000","0","0" +"806TERMINAL","HPD","Housing Preservation and Development",,"2392000","0","0" +"841STGWIRERP","DOT","Department of Transportation","Fixed Asset","21000","158959.20","8812176.81" +"841TD19-9302","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1863000","804798.60","11209855.41" +"846P-109NBLE","DPR","Department of Parks and Recreation","Fixed Asset","23000","7217.50","1926429.33" +"850PV490-Q3","DDC","Department of Design and Construction","Fixed Asset","412000","753122.56","22613591.62" +"071HHCN003","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","250000","0","0" +"806YWCABK","HPD","Housing Preservation and Development",,"1915000","0","1675000" +"816CMEBIOMEK","DOHMH","Department of Health and Mental Hygiene",,"493000","0","0" +"816CMECRDLPT","DOHMH","Department of Health and Mental Hygiene",,"60000","0","0" +"816CMEFTOX","DOHMH","Department of Health and Mental Hygiene",,"2410000","0","0" +"816CMELIQCHR","DOHMH","Department of Health and Mental Hygiene",,"735000","0","0" +"816CMEPAFW","DOHMH","Department of Health and Mental Hygiene",,"11086000","0","0" +"846P-101BPAR","DPR","Department of Parks and Recreation","Fixed Asset","66000","134398.38","1380783.40" +"846P-109PAR1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1676378.75" +"846P-109PAR2","DPR","Department of Parks and Recreation","Fixed Asset","0","422.60","4170015.45" +"846P-3DELURY","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","415592.71" +"806HAM13SURF","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","9376054.43" +"81920202441","HHC","Health and Hospitals Corporation",,"1500000","0","0" +"81920202501","HHC","Health and Hospitals Corporation",,"750000","0","0" +"81921201803","HHC","Health and Hospitals Corporation",,"221000","12220.11","461722.90" +"81921202145","HHC","Health and Hospitals Corporation",,"0","0","305996" +"81921202243","HHC","Health and Hospitals Corporation",,"32000","0","101480" +"81921202244","HHC","Health and Hospitals Corporation",,"0","0.0","80882.2" +"81921202301","HHC","Health and Hospitals Corporation",,"9358000","92111.77","549409.23" +"81921202303","HHC","Health and Hospitals Corporation",,"0","148528.48","754501.52" +"81921202344","HHC","Health and Hospitals Corporation",,"97000","27616.21","5491126.97" +"81921202442","HHC","Health and Hospitals Corporation",,"0","0","111690" +"806HAM16LGSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","14000","21000","134658" +"806CSXN017CC","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"056PO79BMAHX","NYPD","Police Department","Fixed Asset","26000","43610","207490" +"806HAM11DAVC","HPD","Housing Preservation and Development","Lump Sum","281000","0.00","1206938.35" +"81921202603","HHC","Health and Hospitals Corporation",,"102000","0","0" +"806HAM16CLGY","HPD","Housing Preservation and Development","Fixed Asset","224000","399123.28","1102112.26" +"81922200601","HHC","Health and Hospitals Corporation",,"47000","0.00","1191986.38" +"846P-3ALSMTH","DPR","Department of Parks and Recreation","Fixed Asset","2922000","3760.47","136239.53" +"81922202202","HHC","Health and Hospitals Corporation",,"580000","419781.09","256127.27" +"81922202241","HHC","Health and Hospitals Corporation",,"34000","0","76401" +"81922202401","HHC","Health and Hospitals Corporation",,"250000","0","0" +"81922202502","HHC","Health and Hospitals Corporation",,"650000","0","0" +"81923202021","HHC","Health and Hospitals Corporation",,"531000","0.00","1108075.74" +"81923202140","HHC","Health and Hospitals Corporation",,"62000","0.00","88189.78" +"81923202602","HHC","Health and Hospitals Corporation",,"500000","0","0" +"81924202043","HHC","Health and Hospitals Corporation",,"1000","0.0","682324.7" +"81924202142","HHC","Health and Hospitals Corporation",,"0","3006.50","687969.44" +"81924202204","HHC","Health and Hospitals Corporation",,"257557000","16410201.96","14625615.78" +"81924202206","HHC","Health and Hospitals Corporation",,"9890000","3348209.9","4761958.1" +"806NCEDAR","HPD","Housing Preservation and Development",,"500000","0","0" +"806NCONTELLO","HPD","Housing Preservation and Development","Fixed Asset","476000","0","0" +"806NDOWLING","HPD","Housing Preservation and Development","Fixed Asset","800000","0","1700000" +"81926202046","HHC","Health and Hospitals Corporation",,"0","0","0" +"806NDRAPER","HPD","Housing Preservation and Development","Fixed Asset","2000000","0","4000000" +"81926202048","HHC","Health and Hospitals Corporation",,"0","182253.65","0" +"806NHSNOBX","HPD","Housing Preservation and Development",,"250000","0","0" +"81926202103","HHC","Health and Hospitals Corporation",,"5894000","0","167017" +"81926202140","HHC","Health and Hospitals Corporation",,"74000","0","126190" +"81926202141","HHC","Health and Hospitals Corporation",,"199000","1500","299505" +"81926202144","HHC","Health and Hospitals Corporation",,"86000","0","0" +"81926202201","HHC","Health and Hospitals Corporation",,"19795000","7149441.7","5737511.3" +"81926202302","HHC","Health and Hospitals Corporation",,"4100000","2306.3","106708.7" +"81926202607","HHC","Health and Hospitals Corporation",,"3000000","0","0" +"81927201802","HHC","Health and Hospitals Corporation",,"120000","0","0" +"81927202341","HHC","Health and Hospitals Corporation",,"1000","0","377795" +"81929201801","HHC","Health and Hospitals Corporation",,"23000","119305.68","1357293.32" +"806NMORRISAV","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806NPELHAM","HPD","Housing Preservation and Development","Fixed Asset","1400000","0","0" +"806NSENDA","HPD","Housing Preservation and Development","Fixed Asset","1250000","0","0" +"806NVIAVERDE","HPD","Housing Preservation and Development","Fixed Asset","500000","0","1500000" +"806PROMWEST","HPD","Housing Preservation and Development",,"2000000","0","0" +"806RABCE116","HPD","Housing Preservation and Development","Lump Sum","500000","0","0" +"068VOIP4","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","4340000","1260539.10","74725.15" +"806RBKGARDEN","HPD","Housing Preservation and Development","Fixed Asset","1065000","43491","466424" +"806RCITILEAF","HPD","Housing Preservation and Development","Fixed Asset","35000","0","365000" +"806RCOUNCOUR","HPD","Housing Preservation and Development","Fixed Asset","2293000","0.00","8356859.06" +"806RDAYTON","HPD","Housing Preservation and Development","Fixed Asset","250000","0","0" +"806RESPLAN","HPD","Housing Preservation and Development","Fixed Asset","2033000","0","3300000" +"806RFRANKLIN","HPD","Housing Preservation and Development","Fixed Asset","3885000","0","3000000" +"806RMRCGREEN","HPD","Housing Preservation and Development","Fixed Asset","52000","0","447800" +"806RWARREN","HPD","Housing Preservation and Development","Fixed Asset","2200000","0","0" +"806XSUBWIL","HPD","Housing Preservation and Development","Lump Sum","162000","0","315000" +"816CMEIT","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","5000000","0.00","9231809.70" +"816CMEMOLECU","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","478000","58451.64","1100810.88" +"816CMEVEHICL","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","4129000","1843355.50","1740506.13" +"816HL82REVNU","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","0","220479.0","1708347.0" +"816HL82SECUR","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","30175000","0.00","2687107.50" +"816HL82SIAS","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","61000","81976.00","313226.41" +"816HL82WLSHC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"81913201502","HHC","Health and Hospitals Corporation","Fixed Asset","17000","375025.63","19003370.91" +"81922200801","HHC","Health and Hospitals Corporation","Fixed Asset","64000","0.00","1944745.23" +"846P-3ANCH03","DPR","Department of Parks and Recreation","Fixed Asset","736000","962045.26","3363176.08" +"81929202404","HHC","Health and Hospitals Corporation",,"4000000","0","0" +"81933202043","HHC","Health and Hospitals Corporation",,"656000","0","4743919" +"81933202101","HHC","Health and Hospitals Corporation",,"0","0.0","758630.2" +"81933202102","HHC","Health and Hospitals Corporation",,"2130000","138195.56","232091.44" +"81933202204","HHC","Health and Hospitals Corporation",,"11429000","452453.12","133500.88" +"81933202248","HHC","Health and Hospitals Corporation",,"0","0","423174" +"81933202301","HHC","Health and Hospitals Corporation",,"0","0","0" +"81933202306","HHC","Health and Hospitals Corporation",,"5575000","393285","32190" +"846P-5IRENE","DPR","Department of Parks and Recreation","Fixed Asset","105000","3640.00","606415.08" +"846P-5MCARPK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","31000","10610.76","5080189.74" +"841TFK50313","DOT","Department of Transportation","ITT, Vehicles, and Equipment","290000","0","0" +"801PV467ELMB","SBS","Department of Small Business Services","Fixed Asset","0","1261.62","4109294.37" +"846P-6CNGEVC","DPR","Department of Parks and Recreation",,"1006000","0","108000" +"846P-6CWCPI","DPR","Department of Parks and Recreation",,"0","0","0" +"068VOIPB","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","4217000","0.00","1543620.85" +"068VTCEOL","ACS","Administration for Children's Services","ITT, Vehicles, and Equipment","1542000","0.00","1107756.28" +"071HH105CARC","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","0","635339.36","20677692.68" +"071HH105CCDS","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","1015000","710456.1","874001.9" +"071HH105MOMI","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","1000000","0","0" +"071HH105OFFR","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","1027000","514359.6","0" +"846P-5GKBIKE","DPR","Department of Parks and Recreation","Fixed Asset","0","10000.02","1542922.05" +"801PV467SOST","SBS","Department of Small Business Services",,"198000","1084694.89","18139997.80" +"071HH105PRNT","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","1741000","0","0" +"801PV467STFO","SBS","Department of Small Business Services","Fixed Asset","84000","37467.07","18903069.14" +"846P-3PLG15B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2711366.86" +"846P-3PLG15C","DPR","Department of Parks and Recreation","Fixed Asset","0","694.08","1257906.19" +"846P-6CWPLRM","DPR","Department of Parks and Recreation",,"10898000","0","0" +"846P-6CWSTF","DPR","Department of Parks and Recreation",,"0","0","0" +"846P-6EABTRA","DPR","Department of Parks and Recreation",,"0","0.00","316897.41" +"846P-6EABTRB","DPR","Department of Parks and Recreation",,"0","0.00","936526.43" +"846P-6EAMCLO","DPR","Department of Parks and Recreation",,"3211000","0","0" +"846P-6ESRI21","DPR","Department of Parks and Recreation",,"0","0.00","1020950.73" +"846P-6FORM30","DPR","Department of Parks and Recreation",,"11200000","0","0" +"846P-6SPCR15","DPR","Department of Parks and Recreation","Fixed Asset","5351000","0.00","19734548.95" +"039LQPOMHVAC","QPL","Queens Borough Public Library","Fixed Asset","500000","0","0" +"039LQQ122-MT","QPL","Queens Borough Public Library","Fixed Asset","0","0","4300000" +"039LQQ122FAO","QPL","Queens Borough Public Library","Fixed Asset","0","2100.19","880556.0" +"801ANNADALE","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"81933202406","HHC","Health and Hospitals Corporation",,"0","0","0" +"81933202407","HHC","Health and Hospitals Corporation",,"1500000","23400","12600" +"81933202443","HHC","Health and Hospitals Corporation",,"531000","0.00","389256.39" +"81933202605","HHC","Health and Hospitals Corporation",,"860000","0","0" +"81934202140","HHC","Health and Hospitals Corporation",,"0","2976.08","375586.91" +"81934202303","HHC","Health and Hospitals Corporation",,"4608000","142208.34","517456.66" +"81934202304","HHC","Health and Hospitals Corporation",,"3500000","22627.68","81082.32" +"071HH105RADS","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","2425000","0","0" +"801BCTBERTH","SBS","Department of Small Business Services","Fixed Asset","1000000","0","0" +"801BIOBATINF","SBS","Department of Small Business Services","Fixed Asset","0","0","975610" +"81937202040","HHC","Health and Hospitals Corporation",,"3000","0","596978" +"801ECODOCKHC","SBS","Department of Small Business Services","Fixed Asset","120000","58208.18","3400575.44" +"856PWD998TPC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","120000","0","0" +"801HWQ996","SBS","Department of Small Business Services","Fixed Asset","0","0.00","6288740.87" +"81948201402","HHC","Health and Hospitals Corporation",,"127000","58554.00","1607363.14" +"846P-501CPTP","DPR","Department of Parks and Recreation","Lump Sum","2115000","20000","240000" +"81937202348","HHC","Health and Hospitals Corporation",,"1518000","0","0" +"81937202402","HHC","Health and Hospitals Corporation",,"2000000","0","0" +"81937202403","HHC","Health and Hospitals Corporation",,"1725000","7090","28360" +"81937202404","HHC","Health and Hospitals Corporation",,"500000","0","0" +"81937202405","HHC","Health and Hospitals Corporation",,"325000","0","0" +"81937202445","HHC","Health and Hospitals Corporation",,"5000","0.00","113376.48" +"81942202402","HHC","Health and Hospitals Corporation",,"225000","0","0" +"81942202501","HHC","Health and Hospitals Corporation",,"55000000","0","0" +"81948201701","HHC","Health and Hospitals Corporation",,"65000","0.00","3943394.27" +"801BNYHARBOR","BNY","Brooklyn Navy Yard","ITT, Vehicles, and Equipment","242000","0","0" +"81948202107","HHC","Health and Hospitals Corporation",,"450000","0","0" +"856CO306MHCB","DCAS","Department of Citywide Administrative Services","Fixed Asset","18587000","0","0" +"81948202201","HHC","Health and Hospitals Corporation",,"1534000","189357.15","226945.85" +"81948202202","HHC","Health and Hospitals Corporation",,"801000","67578.93","1331421.07" +"801EWVIDCO3","SBS","Department of Small Business Services","Fixed Asset","0","0.00","2435793.58" +"81948202205","HHC","Health and Hospitals Corporation",,"300050000","8503261.95","8511314.40" +"801P-200C17C","SBS","Department of Small Business Services","Fixed Asset","0","0","29000" +"126PV467MAA2","DCLA","Department of Cultural Affairs","Fixed Asset","15500000","0","0" +"81948202242","HHC","Health and Hospitals Corporation",,"32000","0","122000" +"81948202443","HHC","Health and Hospitals Corporation",,"100000","0","0" +"81948202446","HHC","Health and Hospitals Corporation",,"70000","0","0" +"81960202401","HHC","Health and Hospitals Corporation",,"50000000","0","0" +"81967202241","HHC","Health and Hospitals Corporation",,"0","150748.24","2785447.07" +"81948202102","HHC","Health and Hospitals Corporation","Fixed Asset","1000","0","1664261" +"81922201610","HHC","Health and Hospitals Corporation","Fixed Asset","679000","0.00","2758846.37" +"81924201502","HHC","Health and Hospitals Corporation",,"0","0","0" +"846P-3ANCH04","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","10152654.53" +"81912201501","HHC","Health and Hospitals Corporation","Fixed Asset","284000","102816.00","708350.75" +"81921201601","HHC","Health and Hospitals Corporation","Lump Sum","1676000","774759.96","2497577.04" +"81975202140","HHC","Health and Hospitals Corporation",,"8000","0","350000" +"819CV193448","HHC","Health and Hospitals Corporation",,"1000","0","1272483" +"819GABIHHC","HHC","Health and Hospitals Corporation",,"93000","0.00","847137.98" +"819HOENERGY","HHC","Health and Hospitals Corporation",,"869000","0","0" +"819HOPROJCTS","HHC","Health and Hospitals Corporation",,"321900000","0","0" +"819SAND1117","HHC","Health and Hospitals Corporation",,"3759000","1426687.08","19282517.66" +"057F175EMS4M","FDNY","Fire Department","Fixed Asset","3214000","63552.75","385314.96" +"846P-3PNYC07","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2901901.62" +"846P-3POORRD","DPR","Department of Parks and Recreation","Fixed Asset","101000","51400.31","2667293.11" +"850CO300ELV2","DDC","Department of Design and Construction","Fixed Asset","0","216203.67","13739695.82" +"846P-6SITEI3","DPR","Department of Parks and Recreation",,"1910000","1315833.00","0" +"846P-6SITEI5","DPR","Department of Parks and Recreation",,"451000","390630.00","0" +"846P-6SITEI6","DPR","Department of Parks and Recreation",,"809000","450041.00","0" +"071HH115RMCX","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","4411000","41500","73500" +"071HHCN001","DHS","Department of Homeless Services","ITT, Vehicles, and Equipment","400000","0","0" +"111PO163LNW6","UK","Unknown","ITT, Vehicles, and Equipment","26258000","25986628.00","0" +"072C110-FAC","DOC","Department of Correction","ITT, Vehicles, and Equipment","10579000","0.00","4516712.65" +"072C110-NETW","DOC","Department of Correction","ITT, Vehicles, and Equipment","1192000","151298.32","3088097.30" +"072C110-TBLU","DOC","Department of Correction","ITT, Vehicles, and Equipment","312000","0.0","215829.9" +"072C112BACKH","DOC","Department of Correction","ITT, Vehicles, and Equipment","5555000","0.00","569789.25" +"072C112EMVEH","DOC","Department of Correction","ITT, Vehicles, and Equipment","4840000","0","0" +"072C112ERVEH","DOC","Department of Correction","ITT, Vehicles, and Equipment","1751000","0","0" +"072C112MLIFT","DOC","Department of Correction","ITT, Vehicles, and Equipment","700000","296000.00","386035.06" +"072C112PSBUS","DOC","Department of Correction","ITT, Vehicles, and Equipment","11156000","0.00","2389577.33" +"072C112RSVEH","DOC","Department of Correction","ITT, Vehicles, and Equipment","1064000","1512765","0" +"072C112TRUCK","DOC","Department of Correction","ITT, Vehicles, and Equipment","4468000","17614.50","3194972.45" +"072C112UTVEH","DOC","Department of Correction","ITT, Vehicles, and Equipment","4435000","0","1144667" +"072C112-VAN","DOC","Department of Correction","ITT, Vehicles, and Equipment","5700000","0.0","619640.2" +"072C112VOUTY","DOC","Department of Correction","ITT, Vehicles, and Equipment","41334000","0.00","45898148.87" +"072C117ADMNS","DOC","Department of Correction","ITT, Vehicles, and Equipment","1293000","0","1292282" +"072C117APPLI","DOC","Department of Correction","ITT, Vehicles, and Equipment","10727000","0.0","112171.2" +"072C117BSCAN","DOC","Department of Correction","ITT, Vehicles, and Equipment","3421000","0","0" +"072C117COMPT","DOC","Department of Correction","ITT, Vehicles, and Equipment","6596000","4481512.3","1126388.5" +"801BNYINF-ST","BNY","Brooklyn Navy Yard","Fixed Asset","0","0","0" +"801CMPRENO","SBS","Department of Small Business Services","Fixed Asset","273000","0","0" +"801COLPJFK","SBS","Department of Small Business Services","Fixed Asset","0","22679.74","26994290.48" +"801CONEYPLAZ","SBS","Department of Small Business Services","Fixed Asset","10000","9759.94","29787289.20" +"846P-3ANNEPG","DPR","Department of Parks and Recreation","Fixed Asset","0","312187.63","4207168.38" +"846P-3BELLVU","DPR","Department of Parks and Recreation","Fixed Asset","0","490580.89","4135944.79" +"819TKYHHC905","HHC","Health and Hospitals Corporation",,"55526000","445830.76","1663582.74" +"826ACEDEP251","DEP","Department of Environmental Protection",,"27183000","0","0" +"826AGRI-18","DEP","Department of Environmental Protection",,"0","5762405.24","35002029.21" +"826BB-242-L","DEP","Department of Environmental Protection",,"6183000","0","0" +"826BED-834","DEP","Department of Environmental Protection",,"46203000","0","0" +"826BOSTONBRG","DEP","Department of Environmental Protection",,"1948000","0","0" +"81927201301","HHC","Health and Hospitals Corporation","Fixed Asset","111000","0","0" +"81927201340","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","71000","0.0","430867.7" +"111PO163CARD","UK","Unknown","Fixed Asset","0","0.00","3787759.97" +"111PO163CASE","UK","Unknown","Lump Sum","0","0.00","12722590.52" +"826CK26W03HL","DEP","Department of Environmental Protection",,"38000000","0","0" +"826CQBB15COR","DEP","Department of Environmental Protection",,"20100000","0","0" +"826CQJA11CMO","DEP","Department of Environmental Protection",,"40100000","0","0" +"801BNYMACRO","BNY","Brooklyn Navy Yard",,"0","79727.71","6920272.29" +"826CRO-559","DEP","Department of Environmental Protection",,"83850000","0","0" +"801CORTELYOU","SBS","Department of Small Business Services","Lump Sum","0","0.00","1428222.95" +"801CPCDRAIN","SBS","Department of Small Business Services","Fixed Asset","0","0.00","109700.01" +"072C117CSWCH","DOC","Department of Correction","ITT, Vehicles, and Equipment","1040000","18.2","556918.8" +"801CPCPFLUSH","SBS","Department of Small Business Services","Fixed Asset","4300000","450.00","1103025.09" +"81927201515","HHC","Health and Hospitals Corporation","Fixed Asset","156000","0.0","43683.5" +"826CRO-594","DEP","Department of Environmental Protection",,"3309000","0","0" +"826CRO-604","DEP","Department of Environmental Protection",,"2300000","0","0" +"826CS-AC-OAK","DEP","Department of Environmental Protection",,"189280000","0","0" +"826CT3CORR","DEP","Department of Environmental Protection",,"105988000","3627816.89","8066585.58" +"826DEP-CO","DEP","Department of Environmental Protection",,"35000000","0","0" +"826DOT-SEQBO","DEP","Department of Environmental Protection",,"0","0","0" +"801BUSHDEVSP","SBS","Department of Small Business Services",,"2659000","10542547.18","12804637.85" +"072C117CTSCH","DOC","Department of Correction","ITT, Vehicles, and Equipment","200000","0","0" +"072C117CULDG","DOC","Department of Correction","ITT, Vehicles, and Equipment","54000","11984","235130" +"072C117DANAL","DOC","Department of Correction","ITT, Vehicles, and Equipment","770000","0","306995" +"072C117EEPR","DOC","Department of Correction","ITT, Vehicles, and Equipment","1000","330358.8","182125.2" +"072C117ESUCP","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","0","0" +"801BUSHTPARK","SBS","Department of Small Business Services","Fixed Asset","0","4862.72","1845137.22" +"801C5215AB2","SBS","Department of Small Business Services","Fixed Asset","0","35707.91","140663390.19" +"801C5232","SBS","Department of Small Business Services","Fixed Asset","0","228828.45","18275648.40" +"801C5234","SBS","Department of Small Business Services","Fixed Asset","0","0.00","4438421.72" +"801CALAYMCA","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"826MED681","DEP","Department of Environmental Protection",,"22988000","0","0" +"801MCTPLAT","SBS","Department of Small Business Services","Fixed Asset","0","226523.96","2860391.74" +"826MED695","DEP","Department of Environmental Protection",,"63538000","0","0" +"826NR-144-L","DEP","Department of Environmental Protection",,"6500000","0","0" +"826NR-CH2O","DEP","Department of Environmental Protection",,"0","0","0" +"826OB-156-L","DEP","Department of Environmental Protection",,"9025000","0","0" +"826PCMLSLRP","DEP","Department of Environmental Protection",,"5522000","2479352.13","3533643.87" +"801GOVISBTRL","TGI","Trust for Governors Island","ITT, Vehicles, and Equipment","11000","4549.39","418501.76" +"801PV489-PLZ","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0.00","444036.33" +"072C117HRMS","DOC","Department of Correction","ITT, Vehicles, and Equipment","2547000","0","0" +"072C117IMS","DOC","Department of Correction","ITT, Vehicles, and Equipment","151000","0","0" +"072C117INEED","DOC","Department of Correction","ITT, Vehicles, and Equipment","500000","0","0" +"072C117INFRA","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","0","0" +"072C117IRS","DOC","Department of Correction","ITT, Vehicles, and Equipment","2200000","500000","0" +"072C117LBOOK","DOC","Department of Correction","ITT, Vehicles, and Equipment","500000","0","0" +"072C117NWKPR","DOC","Department of Correction","ITT, Vehicles, and Equipment","622000","407777.01","697213.51" +"072C117NWKUP","DOC","Department of Correction","ITT, Vehicles, and Equipment","44444000","387230.00","8529776.64" +"072C117OJMS","DOC","Department of Correction","ITT, Vehicles, and Equipment","41945000","25975945.92","10560646.62" +"072C117POMGT","DOC","Department of Correction","ITT, Vehicles, and Equipment","2235000","32301.00","1997541.95" +"072C117RDSRG","DOC","Department of Correction","ITT, Vehicles, and Equipment","38000","0","0" +"072C117RSWCH","DOC","Department of Correction","ITT, Vehicles, and Equipment","1000","0.00","436143.16" +"072C117UNI","DOC","Department of Correction","ITT, Vehicles, and Equipment","3701000","104640.25","5886033" +"072C117VDVIS","DOC","Department of Correction","ITT, Vehicles, and Equipment","125000","0","0" +"072C117VIDE1","DOC","Department of Correction","ITT, Vehicles, and Equipment","1170000","9707.32","33801401.56" +"801FABARGEHP","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","0","0.00","131211.54" +"856PWD998MYA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"111PO185-OIL","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","308629.52" +"841C5590","DOT","Department of Transportation","ITT, Vehicles, and Equipment","160000","7594795.81","36761214.03" +"81929201612","HHC","Health and Hospitals Corporation","Lump Sum","4918000","1120255.81","15159102.49" +"81929201614","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","4568743.45" +"826PS-278","DEP","Department of Environmental Protection","Fixed Asset","14339000","74938906.75","9247291.20" +"846P-3BOOKTW","DPR","Department of Parks and Recreation",,"0","0.00","1933403.05" +"111PO187-20B","UK","Unknown","ITT, Vehicles, and Equipment","94000","0.00","101769.98" +"826SF-BNR-RK","DEP","Department of Environmental Protection",,"4910000","145854.82","19397920.5" +"81934200202","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","498336" +"81934200203","HHC","Health and Hospitals Corporation","Fixed Asset","1000","0.00","353231.32" +"81934200304","HHC","Health and Hospitals Corporation","Fixed Asset","8000","0.00","488492.01" +"81934201201","HHC","Health and Hospitals Corporation","Fixed Asset","0","4380.00","2488920.91" +"81934201402","HHC","Health and Hospitals Corporation","Fixed Asset","655000","76218.54","5155710.28" +"81934201501","HHC","Health and Hospitals Corporation","Fixed Asset","76000","0","0" +"81934201502","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81934201503","HHC","Health and Hospitals Corporation","Fixed Asset","0","110671","0" +"82626W-144-L","DEP","Department of Environmental Protection","Fixed Asset","86515000","20091362.54","1126177.76" +"81934201741","HHC","Health and Hospitals Corporation","Fixed Asset","167000","154736.52","2978381.96" +"81937201501","HHC","Health and Hospitals Corporation","Fixed Asset","480000","216564.74","2826652.61" +"826SER002331","DEP","Department of Environmental Protection",,"16048000","0","0" +"81942201515","HHC","Health and Hospitals Corporation","Lump Sum","113000","0.00","702068.15" +"82626W-146-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"81948200803","HHC","Health and Hospitals Corporation","Fixed Asset","107000","242266.75","2688654.74" +"81948201341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","40000","0","59806" +"81948201505","HHC","Health and Hospitals Corporation",,"10000","122210.21","8368304.97" +"81948201515","HHC","Health and Hospitals Corporation","Fixed Asset","11000","12850.31","629266.62" +"826TI-182-L","DEP","Department of Environmental Protection",,"4282000","0","0" +"826TIBBT-BWS","DEP","Department of Environmental Protection",,"0","0","0" +"072C117WEAPN","DOC","Department of Correction","ITT, Vehicles, and Equipment","66000","227100.00","2104476.67" +"072C117WRKDY","DOC","Department of Correction","ITT, Vehicles, and Equipment","13703000","0","0" +"072C138PWRHS","DOC","Department of Correction","ITT, Vehicles, and Equipment","600000","67445.00","184476.95" +"806MPLP31","HPD","Housing Preservation and Development","Lump Sum","18140000","0","0" +"072C138TRANS","DOC","Department of Correction","ITT, Vehicles, and Equipment","457000","69775.00","172191.00" +"072C75ASBEST","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","1.00","7891722.39" +"072C75BRADO","DOC","Department of Correction","ITT, Vehicles, and Equipment","788000","0.0","780282.5" +"072C75COMBI","DOC","Department of Correction","ITT, Vehicles, and Equipment","63000","0.00","1299138.96" +"072C75ENTXY","DOC","Department of Correction","ITT, Vehicles, and Equipment","365000","0","908960" +"072C75GENERS","DOC","Department of Correction","ITT, Vehicles, and Equipment","1252000","504150.10","1275593.01" +"072C75NICDSH","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","0","0" +"072C75NSDEQ1","DOC","Department of Correction","ITT, Vehicles, and Equipment","1590000","0.00","1300520.73" +"072C75PRINTP","DOC","Department of Correction","ITT, Vehicles, and Equipment","55000","0","0" +"072C75RACKOV","DOC","Department of Correction","ITT, Vehicles, and Equipment","74000","0","0" +"072C75RADIO","DOC","Department of Correction","ITT, Vehicles, and Equipment","40619000","0.00","23363238.84" +"072C75RDSRNG","DOC","Department of Correction","ITT, Vehicles, and Equipment","148000","9220897.93","9316875.40" +"072C75SANDFE","DOC","Department of Correction","ITT, Vehicles, and Equipment","1074000","0.00","587260.59" +"072C75SECEQP","DOC","Department of Correction","ITT, Vehicles, and Equipment","10806000","0.00","614690.88" +"072C75SWITCH","DOC","Department of Correction","ITT, Vehicles, and Equipment","615000","89300.00","305220.83" +"072SANDTRLR","DOC","Department of Correction","ITT, Vehicles, and Equipment","275000","238765.25","8251936.29" +"096CCHSECM","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","570054.00","8837980.72" +"806MPLP32","HPD","Housing Preservation and Development","Lump Sum","18774000","0","0" +"096HR109RCT","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","6188000","0.00","252371.00" +"806MPLP33","HPD","Housing Preservation and Development","Lump Sum","19431000","0","0" +"096HR110BWYJ","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","1.00","519975.95" +"096HR110CYBE","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","12923000","97373.92","13846132.56" +"096HR110MIGV","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","12400000","0","0" +"806MPLP34","HPD","Housing Preservation and Development","Lump Sum","20072000","0","0" +"096HR110TPOY","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","4950000","0","0" +"096HR110VOIP","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0.00","7633103.03" +"096HR110WAIT","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","1528000","0.00","5462183.27" +"096HR110WIFI","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","2576000","0","0" +"096HR1208AVE","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","702000","0","0" +"096HR120ARCH","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","3272000","491547.59","1276191.15" +"096HR120ATDA","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","11737000","0","0" +"096HR120BROC","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","13000000","0","0" +"096HR120BWYJ","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","150000","47311.00","2500151.46" +"096HR120CCIN","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","9000000","0","0" +"096HR120CEQ1","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0.00","10440081.47" +"096HR120CEQ2","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","2000","0.00","4456452.21" +"096HR120CLAS","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","2000000","0","0" +"096HR120CORE","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0","0" +"096HR120CSPC","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","816000","240029","0" +"096HR120DPOY","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","3812000","0","0" +"096HR120ECMS","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","6000000","0","0" +"096HR120EDA","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","19445000","1203495.54","9126929.92" +"096HR120ETPS","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","7810000","0","0" +"096HR120GSCP","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","2300000","0","0" +"096HR120INFP","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","5002000","0","0" +"096HR120INFR","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0.00","9649861.49" +"096HR120INTP","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","499000","0","0" +"096HR120LCMS","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","1492000","0","0" +"096HR120PRNT","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","18000","0.00","1225749.73" +"806MPLP35","HPD","Housing Preservation and Development","Lump Sum","20735000","0","0" +"806RANGELOU","HPD","Housing Preservation and Development","Lump Sum","440000","0","0" +"806RBDWYRIO","HPD","Housing Preservation and Development","Lump Sum","800000","0","0" +"806RCARNES","HPD","Housing Preservation and Development","Lump Sum","750000","0","0" +"806RCMANOR","HPD","Housing Preservation and Development","Lump Sum","2700000","0","0" +"826IN-CITYWM","DEP","Department of Environmental Protection","Lump Sum","765419000","0","0" +"826SE-EMRNGY","DEP","Department of Environmental Protection","Lump Sum","862126000","0","0" +"096HR120PSEQ","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","464000","136750.41","3038171.59" +"841HBCD018","DOT","Department of Transportation","Lump Sum","15362000","0","0" +"846P-6SITEI2","DPR","Department of Parks and Recreation","Lump Sum","62000","132558.8","6985.2" +"850SEQCWSRV6","DDC","Department of Design and Construction","Lump Sum","4000000","0","0" +"096HR120SNCR","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","1886000","0","0" +"096HR120SORT","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","1500000","0","0" +"096HR120SREF","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0","0" +"096HR120SWIT","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","500000","0","0" +"096HR120TPRM","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","3288000","0","0" +"096HR120UPSE","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","5001000","0","0" +"096HR120VOIP","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0","0" +"096HR25BEDS","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","0","0","0" +"096HR25EFOY","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","811000","0","0" +"096HR25QCRTF","HRA","Human Resources Administration","ITT, Vehicles, and Equipment","302000","0","0" +"111BOE9VOIPK","UK","Unknown","ITT, Vehicles, and Equipment","190000","0","0" +"111BXDA3VDIN","UK","Unknown","ITT, Vehicles, and Equipment","68000","0.00","243401.05" +"111BXDA5LPDS","UK","Unknown","ITT, Vehicles, and Equipment","2740000","0","0" +"111CCN2CHTS","UK","Unknown","ITT, Vehicles, and Equipment","374000","65367.00","433886.66" +"111CCN3CCLP","UK","Unknown","ITT, Vehicles, and Equipment","148000","0.00","202827.18" +"111CCN4NETWU","UK","Unknown","ITT, Vehicles, and Equipment","107000","0","0" +"111CCN5UPGR","UK","Unknown","ITT, Vehicles, and Equipment","194000","0.0","1482051.8" +"111CCN7COMP","UK","Unknown","ITT, Vehicles, and Equipment","98000","35124.04","2885624.13" +"111CCN7LIC","UK","Unknown","ITT, Vehicles, and Equipment","80000","0","0" +"111CCN8COMP","UK","Unknown","ITT, Vehicles, and Equipment","727000","24818.71","1771654.55" +"111CCNXCOMP","UK","Unknown","ITT, Vehicles, and Equipment","162000","0.00","319165.82" +"111CCRB1BCAM","UK","Unknown","ITT, Vehicles, and Equipment","453000","0","0" +"111CITY3FDR1","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111CITY3FDR2","UK","Unknown","ITT, Vehicles, and Equipment","15000000","0","0" +"111CITY3FDWS","UK","Unknown","ITT, Vehicles, and Equipment","24000","155969.2","500976.3" +"111CITY3NGEN","UK","Unknown","ITT, Vehicles, and Equipment","0","823870.69","4097791.77" +"111CITY3PDR1","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111CITY5FNUP","UK","Unknown","ITT, Vehicles, and Equipment","7551000","3192429.00","4358567.64" +"111CITY5NGE1","UK","Unknown","ITT, Vehicles, and Equipment","2836000","1015484.88","4928309.97" +"111CITY5NGEN","UK","Unknown","ITT, Vehicles, and Equipment","184000","654693.73","6371922.78" +"111CITY5PSIR","UK","Unknown","ITT, Vehicles, and Equipment","6300000","5538984.90","2415381.82" +"111CITY5PSIU","UK","Unknown","ITT, Vehicles, and Equipment","0","46686.49","4813887.99" +"111CITY5PSM2","UK","Unknown","ITT, Vehicles, and Equipment","4199000","860844.00","3337758.59" +"111CITY5PSRU","UK","Unknown","ITT, Vehicles, and Equipment","2074000","216302.90","1183241.26" +"111CITY5RAMR","UK","Unknown","ITT, Vehicles, and Equipment","1159000","1067432.09","91855" +"111CITY5WIFI","UK","Unknown","ITT, Vehicles, and Equipment","563000",, +"111CITY6BRIU","UK","Unknown","ITT, Vehicles, and Equipment","14380000","0","0" +"81913202602","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"111CITY6ESIN","UK","Unknown","ITT, Vehicles, and Equipment","1109000","0.0","1108655.9" +"111CITY6NGEN","UK","Unknown","ITT, Vehicles, and Equipment","13355000","1702621.41","0" +"111CITY6NYIL","UK","Unknown","ITT, Vehicles, and Equipment","1532000","139278.75","1393201.25" +"111CITYCOMM","UK","Unknown","ITT, Vehicles, and Equipment","7781000","0","0" +"111CITYRFRSH","UK","Unknown","ITT, Vehicles, and Equipment","2319000","1124571.25","18949064.99" +"111CITYTECH","UK","Unknown","ITT, Vehicles, and Equipment","852972000","0","0" +"111CJRI3RDA2","UK","Unknown","ITT, Vehicles, and Equipment","34000","0.00","822388.92" +"111CJRI4SNP5","UK","Unknown","ITT, Vehicles, and Equipment","144000","0.00","837260.83" +"111CJRI5XDA5","UK","Unknown","ITT, Vehicles, and Equipment","6140000","4476278.56","552599.28" +"111CJRI6QDA3","UK","Unknown","ITT, Vehicles, and Equipment","2403000","747800.07","1500978.62" +"111CJRITECH","UK","Unknown","ITT, Vehicles, and Equipment","12777000","0","0" +"111CLERKCOMP","UK","Unknown","ITT, Vehicles, and Equipment","100000","0","0" +"111COIB6NETW","UK","Unknown","ITT, Vehicles, and Equipment","59000","0","0" +"111COMP2PRTR","UK","Unknown","ITT, Vehicles, and Equipment","1860000","509518.35","509518.44" +"111COMP4LANU","UK","Unknown","ITT, Vehicles, and Equipment","193000","0","464093" +"111COMP6OACR","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"81914202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"850SEQCWSRV7","DDC","Department of Design and Construction","Lump Sum","5400000","0","0" +"111CONNECT","UK","Unknown","ITT, Vehicles, and Equipment","3285000","0","0" +"111CYBERTECH","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111DANY2NETW","UK","Unknown","ITT, Vehicles, and Equipment","390000","0","0" +"111DANY3DRWS","UK","Unknown","ITT, Vehicles, and Equipment","3300000","0","0" +"111DANY5PRAD","UK","Unknown","ITT, Vehicles, and Equipment","512000","510147","0" +"111DCP3NETWK","UK","Unknown","ITT, Vehicles, and Equipment","189000","0.00","1337623.59" +"856SCA30ELE","DCAS","Department of Citywide Administrative Services","Lump Sum","136615000","0","0" +"111DCP4GISMO","UK","Unknown","ITT, Vehicles, and Equipment","675000","0","0" +"111DCP4SVUP","UK","Unknown","ITT, Vehicles, and Equipment","83000","0","0" +"111DCP5HEAR","UK","Unknown","ITT, Vehicles, and Equipment","600000","0","0" +"111DCP5WRKSR","UK","Unknown","ITT, Vehicles, and Equipment","2596000","0","0" +"111DCP8LANU","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","366884.47" +"111DDC1CONMS","UK","Unknown","ITT, Vehicles, and Equipment","600000","0","0" +"111DDCWRKSTN","UK","Unknown","ITT, Vehicles, and Equipment","2009000","0","0" +"111DOB1NETWU","UK","Unknown","ITT, Vehicles, and Equipment","786000","12853.92","627629.68" +"111DOBXBLISS","UK","Unknown","ITT, Vehicles, and Equipment","1026000","0","0" +"111DOF2DLPDR","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111DOF2GEOSP","UK","Unknown","ITT, Vehicles, and Equipment","380000","0","0" +"111DOF2LANUP","UK","Unknown","ITT, Vehicles, and Equipment","9361000","0","0" +"111DOF2PTSUP","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111DOF2SIEMS","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111DOF2STARS","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"037LNSYSFLS","NYPL","New York Public Library","Fixed Asset","0","0","0" +"111DOF4LRSRE","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","58399.76" +"111DOF4VOAPS","UK","Unknown","ITT, Vehicles, and Equipment","659000","0","0" +"111DOFXCAMA","UK","Unknown","ITT, Vehicles, and Equipment","0","0","8482748" +"111DOI3TABLT","UK","Unknown","ITT, Vehicles, and Equipment","659000","0","0" +"81918202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"111DOIT4PAM2","UK","Unknown","ITT, Vehicles, and Equipment","-40000","22763.52","1668534.67" +"111DOIT6DOED","UK","Unknown","ITT, Vehicles, and Equipment","129329000","20123582.05","109152546.06" +"111DOITXPAM","UK","Unknown","ITT, Vehicles, and Equipment","9251000","0","0" +"81918202140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","466000","407192.38","0" +"111DOP5ITAMS","UK","Unknown","ITT, Vehicles, and Equipment","811000","0","0" +"111DOP6ITAM","UK","Unknown","ITT, Vehicles, and Equipment","0",, +"111DOP6NTWRK","UK","Unknown","ITT, Vehicles, and Equipment","1431000","336450","363660" +"111DOR3DRODC","UK","Unknown","ITT, Vehicles, and Equipment","191000","43097.64","147130" +"111DOR3NETRE","UK","Unknown","ITT, Vehicles, and Equipment","581000","0","0" +"111DORXNETUP","UK","Unknown","ITT, Vehicles, and Equipment","100000","99420.00","451632.26" +"111DP1PROJ1","UK","Unknown","ITT, Vehicles, and Equipment","829435000","0","0" +"111DYCD1CASE","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","5295185.01" +"111FDNY7CADH","UK","Unknown","ITT, Vehicles, and Equipment","17167000","0","0" +"111FIS8CMOD","UK","Unknown","ITT, Vehicles, and Equipment","411000","0.0","459916.1" +"111FISA1CAPU","UK","Unknown","ITT, Vehicles, and Equipment","7000","82714.75","5080317.75" +"111FISA1FENH","UK","Unknown","ITT, Vehicles, and Equipment","1861000","0","0" +"111FISA1W4UP","UK","Unknown","ITT, Vehicles, and Equipment","131000","65061.25","1013239.25" +"111FISA2DOEU","UK","Unknown","ITT, Vehicles, and Equipment","500000","0","0" +"111FISA4ACCT","UK","Unknown","ITT, Vehicles, and Equipment","225000","935992.6","1952793.4" +"111FISA4HRPU","UK","Unknown","ITT, Vehicles, and Equipment","0","74483.54","10122036.98" +"111FISA5CAPU","UK","Unknown","ITT, Vehicles, and Equipment","613000","659037.5","675022.5" +"111FISA5DLA2","UK","Unknown","ITT, Vehicles, and Equipment","554000","400000.04","6605153.31" +"111FISA5HRPU","UK","Unknown","ITT, Vehicles, and Equipment","499000","8725.98","3348126.22" +"111FISA6DLAN","UK","Unknown","ITT, Vehicles, and Equipment","6546000","1856775.53","1522736.3" +"111FISA6HRPU","UK","Unknown","ITT, Vehicles, and Equipment","10629000","6800497.47","0" +"111FISA6TLUP","UK","Unknown","ITT, Vehicles, and Equipment","2139000","444963.75","62816.25" +"039LQSE-ROOF","QPL","Queens Borough Public Library","Fixed Asset","891000","0","0" +"111FISACTIME","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","1284932.69" +"111FLEETERC","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","24501060.5" +"111HB1013VEH","UK","Unknown","ITT, Vehicles, and Equipment","19022000","0","0" +"111ID21VEH","UK","Unknown","ITT, Vehicles, and Equipment","488000","0","0" +"111KBP2NETUP","UK","Unknown","ITT, Vehicles, and Equipment","26000","0.0","56574.9" +"111KCDA5DELB","UK","Unknown","ITT, Vehicles, and Equipment","651000","0","0" +"111KCDA5PRAD","UK","Unknown","ITT, Vehicles, and Equipment","0","0","492909" +"111KCDA5WTAP","UK","Unknown","ITT, Vehicles, and Equipment","568000","233754","333500" +"111LAW1CASE","UK","Unknown","ITT, Vehicles, and Equipment","2315000","1246917.32","7717819.04" +"111LAW3SECUR","UK","Unknown","ITT, Vehicles, and Equipment","321000","0","0" +"111LAW5FLOWM","UK","Unknown","ITT, Vehicles, and Equipment","215000","0","0" +"111LAW5VIDPU","UK","Unknown","ITT, Vehicles, and Equipment","765000","551855.37","0" +"111LAW6DESKU","UK","Unknown","ITT, Vehicles, and Equipment","1783000","0","0" +"111LPC1COMP","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","98119.29" +"111LPC6PMTUP","UK","Unknown","ITT, Vehicles, and Equipment","5284000","0","0" +"111MDA2RADS","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","62499.21" +"111MDA8MDAV","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","1269901.57" +"111MOCJ5ITNT","UK","Unknown","ITT, Vehicles, and Equipment","148000","137517.94","0" +"111OATH1HOST","UK","Unknown","ITT, Vehicles, and Equipment","126000","44764","327300" +"111OATH2ANPH","UK","Unknown","ITT, Vehicles, and Equipment","1570000","0","0" +"111OATH5UPPC","UK","Unknown","ITT, Vehicles, and Equipment","21000","0.00","81840.18" +"111OLR6SWVGU","UK","Unknown","ITT, Vehicles, and Equipment","92000","0.9","91531.4" +"111OMB1NETWU","UK","Unknown","ITT, Vehicles, and Equipment","27000","0.00","446792.45" +"111OMB3HRMS","UK","Unknown","ITT, Vehicles, and Equipment","74000","0","0" +"111OMB3WRKSV","UK","Unknown","ITT, Vehicles, and Equipment","469000","0.00","1167466.36" +"111OMB5AIMSR","UK","Unknown","ITT, Vehicles, and Equipment","1167000","0","0" +"111OMB8LANU","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","3253781.50" +"111OOMXNETUP","UK","Unknown","ITT, Vehicles, and Equipment","2920000","0.00","5180629.76" +"111OPA8LANU","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","416730.82" +"111PO111-1","UK","Unknown","ITT, Vehicles, and Equipment","8000","0.00","7951420.11" +"111PO111-10","UK","Unknown","ITT, Vehicles, and Equipment","282000","99190","219575" +"111PO111-11","UK","Unknown","ITT, Vehicles, and Equipment","500000","0","549834" +"111PO111-14","UK","Unknown","ITT, Vehicles, and Equipment","0","0.10","177374.05" +"111PO111-6","UK","Unknown","ITT, Vehicles, and Equipment","8867000","0.00","3919469.36" +"111PO111SAFE","UK","Unknown","ITT, Vehicles, and Equipment","3292000","3289536","0" +"111PO127-2","UK","Unknown","ITT, Vehicles, and Equipment","47852000","44079216","14711000" +"111PO127-4","UK","Unknown","ITT, Vehicles, and Equipment","35000000","0","45938024" +"111PO127-ENG","UK","Unknown","ITT, Vehicles, and Equipment","0","153015.2","1148380.8" +"111PO-132-L","UK","Unknown","ITT, Vehicles, and Equipment","0","101150.04","14935576.44" +"111PO-134-L","UK","Unknown","ITT, Vehicles, and Equipment","1892000","9234830.74","7854451.65" +"111PO-136-L","UK","Unknown","ITT, Vehicles, and Equipment","2721000","2370659.16","0" +"111PO163-2","UK","Unknown","ITT, Vehicles, and Equipment","7684000","17075.00","11527627.19" +"111PO163AFIS","UK","Unknown","ITT, Vehicles, and Equipment","590000","0.00","7527459.03" +"039LQSE-WIN","QPL","Queens Borough Public Library","Fixed Asset","891000","0","0" +"111PO163ASES","UK","Unknown","ITT, Vehicles, and Equipment","0","0","6908650" +"111PO163-AVL","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","4847567.02" +"111PO163BIOV","UK","Unknown","ITT, Vehicles, and Equipment","1000","0.0","7954491.5" +"111PO163CELL","UK","Unknown","ITT, Vehicles, and Equipment","0","0","3008290" +"111PO163CITY","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PO163COBA","UK","Unknown","ITT, Vehicles, and Equipment","-301000","0.00","33158288.47" +"111PO163DCRF","UK","Unknown","ITT, Vehicles, and Equipment","59768000","26800901.11","42529989.75" +"111PO163DISC","UK","Unknown","ITT, Vehicles, and Equipment","1303000","0.00","26658406.88" +"111PO163-ECC","UK","Unknown","ITT, Vehicles, and Equipment","106000","0.00","2758549.75" +"111PO163FIBR","UK","Unknown","ITT, Vehicles, and Equipment","656000","0","0" +"111PO163FMS","UK","Unknown","ITT, Vehicles, and Equipment","104000","0.00","5285971.26" +"111PO163-LAB","UK","Unknown","ITT, Vehicles, and Equipment","373000","0.00","2737726.19" +"111PO163LAT1","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","21438369.84" +"111PO163LMNO","UK","Unknown","ITT, Vehicles, and Equipment","-211000","0.0","979475.8" +"111PO163LNW2","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","15980421.60" +"111PO163NETW","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","16705057.42" +"111PO163NGWN","UK","Unknown","ITT, Vehicles, and Equipment","29458000","216073.88","29241756.17" +"111PO163SECR","UK","Unknown","ITT, Vehicles, and Equipment","0","135213.32","18646301.42" +"111PO163-SI2","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","787420.26" +"111PO163STI1","UK","Unknown","ITT, Vehicles, and Equipment","30414000","0","0" +"111PO163STI2","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PO163VOIP","UK","Unknown","ITT, Vehicles, and Equipment","508000","0.00","12775190.16" +"111PO163WIFI","UK","Unknown","ITT, Vehicles, and Equipment","248000","0.00","10856570.21" +"111PO185-11D","UK","Unknown","ITT, Vehicles, and Equipment","16001000","1217705","5624922" +"111PO185-11N","UK","Unknown","ITT, Vehicles, and Equipment","0","0","560810" +"111PO185-12","UK","Unknown","ITT, Vehicles, and Equipment","0","0","495960" +"111PO185-12B","UK","Unknown","ITT, Vehicles, and Equipment","38190000","7715404.68","9370199.56" +"111PO185-12D","UK","Unknown","ITT, Vehicles, and Equipment","0","0","608488" +"111PO185-13C","UK","Unknown","ITT, Vehicles, and Equipment","1376000","0.00","1698679.71" +"111PO185-14A","UK","Unknown","ITT, Vehicles, and Equipment","2765000","0.00","2130009.62" +"111PO185-17","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","103031.6" +"111PO185-18C","UK","Unknown","ITT, Vehicles, and Equipment","7816000","2042477.80","6789664.26" +"111PO185-18E","UK","Unknown","ITT, Vehicles, and Equipment","0","785283","2598720" +"111PO185-19C","UK","Unknown","ITT, Vehicles, and Equipment","237000","0.00","3715376.84" +"111PO185-1B","UK","Unknown","ITT, Vehicles, and Equipment","59875000","4532173.00","29306439.80" +"111PO185-1C","UK","Unknown","ITT, Vehicles, and Equipment","28745000","11539825.0","9080635.8" +"111PO185-20C","UK","Unknown","ITT, Vehicles, and Equipment","908000","0","1621259" +"111PO185-23","UK","Unknown","ITT, Vehicles, and Equipment","3685000","0.00","1360226.08" +"111PO185-29","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","2010334.18" +"111PO185-29A","UK","Unknown","ITT, Vehicles, and Equipment","0","0","281208" +"111PO185-33A","UK","Unknown","ITT, Vehicles, and Equipment","500000","0.0","1042881.7" +"111PO185-36","UK","Unknown","ITT, Vehicles, and Equipment","1145000","0.00","2280877.70" +"111PO185-45","UK","Unknown","ITT, Vehicles, and Equipment","526000","0.00","1018993.34" +"111PO185-48","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","497632.4" +"111PO185-49","UK","Unknown","ITT, Vehicles, and Equipment","282000","0.00","365367.61" +"111PO185-53D","UK","Unknown","ITT, Vehicles, and Equipment","0","0","140332" +"111PO185-53E","UK","Unknown","ITT, Vehicles, and Equipment","0","0","1217600" +"111PO185-64","UK","Unknown","ITT, Vehicles, and Equipment","76505000","396734.78","41988086.29" +"111PO185-6C","UK","Unknown","ITT, Vehicles, and Equipment","2741000","0.0","2089156.9" +"111PO185-6D","UK","Unknown","ITT, Vehicles, and Equipment","1234000","0","423016" +"111PO185QTOW","UK","Unknown","ITT, Vehicles, and Equipment","0","0","433120" +"111PO185-SRG","UK","Unknown","ITT, Vehicles, and Equipment","1410000","0.0","423202.8" +"111PO185-TOW","UK","Unknown","ITT, Vehicles, and Equipment","0","0","788412" +"111PO187-1","UK","Unknown","ITT, Vehicles, and Equipment","114000","0.00","46429.36" +"111PO187-32","UK","Unknown","ITT, Vehicles, and Equipment","522000","0","0" +"111PO187-43","UK","Unknown","ITT, Vehicles, and Equipment","500000","0","0" +"111PO187-60","UK","Unknown","ITT, Vehicles, and Equipment","222000","0.00","504593.68" +"111PO187-65","UK","Unknown","ITT, Vehicles, and Equipment","0","0","53563" +"111PO187-76","UK","Unknown","ITT, Vehicles, and Equipment","326000","0","316650" +"111PO187-8C","UK","Unknown","ITT, Vehicles, and Equipment","465000","0.00","396213.12" +"111PO187-ARG","UK","Unknown","ITT, Vehicles, and Equipment","918000","65094.79","2756572.21" +"111PO187-FIP","UK","Unknown","ITT, Vehicles, and Equipment","300000","0.00","195851.90" +"111PO187GCMS","UK","Unknown","ITT, Vehicles, and Equipment","3239000","1169691.74","4935301.45" +"111PO187GEMI","UK","Unknown","ITT, Vehicles, and Equipment","200000","0","90695" +"111PO187GRIM","UK","Unknown","ITT, Vehicles, and Equipment","47000","0.00","195458.65" +"111PO187-IAB","UK","Unknown","ITT, Vehicles, and Equipment","280000","95463.00","215174.08" +"81919202301","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","764000","57751.79","49083094.52" +"111PO187GC2M","UK","Unknown","ITT, Vehicles, and Equipment","300000","0.00","395255.27" +"111PO187PGCM","UK","Unknown","ITT, Vehicles, and Equipment","535000","0.0","171943.3" +"111PO187-PH3","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PO187-PH7","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PO187-PL4","UK","Unknown","ITT, Vehicles, and Equipment","281000","0.00","430966.30" +"111PO187PLAT","UK","Unknown","ITT, Vehicles, and Equipment","0","0","70990" +"111PO187PR12","UK","Unknown","ITT, Vehicles, and Equipment","797000","0.0","34204.5" +"111PO187PR13","UK","Unknown","ITT, Vehicles, and Equipment","364000","0","294120" +"111PO187PR16","UK","Unknown","ITT, Vehicles, and Equipment","1000","0.00","250809.74" +"111PO187-PR7","UK","Unknown","ITT, Vehicles, and Equipment","1257000","0.00","1741081.31" +"111PO187RASP","UK","Unknown","ITT, Vehicles, and Equipment","143000","0","504260" +"111PO187ROBO","UK","Unknown","ITT, Vehicles, and Equipment","525000","0.01","400869.99" +"111PO187-SEC","UK","Unknown","ITT, Vehicles, and Equipment","4127000","188995.35","24022193.65" +"111PO187-VCM","UK","Unknown","ITT, Vehicles, and Equipment","362000","0.00","1390543.45" +"111PO187-VIP","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PO187-VSC","UK","Unknown","ITT, Vehicles, and Equipment","190000","0.00","178230.81" +"111PO187-VSM","UK","Unknown","ITT, Vehicles, and Equipment","543000","91977.3","109452.6" +"111PO187-XRF","UK","Unknown","ITT, Vehicles, and Equipment","487000","0.00","483854.16" +"111PO46-14","UK","Unknown","ITT, Vehicles, and Equipment","4127000","0.00","12120650.48" +"111PO46-24","UK","Unknown","ITT, Vehicles, and Equipment","28059000","0.00","79921667.94" +"111PO46-24O","UK","Unknown","ITT, Vehicles, and Equipment","21022000","0.00","25134075.26" +"111PO46-24S","UK","Unknown","ITT, Vehicles, and Equipment","0","37972.12","85902082.12" +"111PO46-25","UK","Unknown","ITT, Vehicles, and Equipment","4686000","0","0" +"111PO46-3","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PO46-38","UK","Unknown","ITT, Vehicles, and Equipment","5009000","0.00","3594658.56" +"111PO46-6B","UK","Unknown","ITT, Vehicles, and Equipment","32800000","0","0" +"111PO46-CAD","UK","Unknown","ITT, Vehicles, and Equipment","1842000","0","0" +"111PO-D185B2","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","132238.5" +"111PO-D185B4","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","54282.3" +"111PO-D185B7","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","86185.2" +"111PO-D185B8","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","102551.76" +"111PO-D185B9","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","50008.88" +"111PO-D185D1","UK","Unknown","ITT, Vehicles, and Equipment","3000","268.45","73876.78" +"111PO-D185D6","UK","Unknown","ITT, Vehicles, and Equipment","32000","268.45","73876.78" +"111PO-D185D8","UK","Unknown","ITT, Vehicles, and Equipment","67000","73265.23","0" +"111PO-D185E3","UK","Unknown","ITT, Vehicles, and Equipment","73000","268.45","73876.78" +"111PO-D185F1","UK","Unknown","ITT, Vehicles, and Equipment","10000","73246.04","0" +"111PO-D185F2","UK","Unknown","ITT, Vehicles, and Equipment","10000","73246.04","0" +"111PO-D185F3","UK","Unknown","ITT, Vehicles, and Equipment","10000","0.00","73246.04" +"111PO-D185F4","UK","Unknown","ITT, Vehicles, and Equipment","10000","73246.04","0" +"111PO-D185F5","UK","Unknown","ITT, Vehicles, and Equipment","4000","73246.04","0" +"111PO-D185F6","UK","Unknown","ITT, Vehicles, and Equipment","4000","73246.04","0" +"111PO-D185F7","UK","Unknown","ITT, Vehicles, and Equipment","67000","73246.04","0" +"111PO-D185F8","UK","Unknown","ITT, Vehicles, and Equipment","1352000","0","0" +"111PO-D185G1","UK","Unknown","ITT, Vehicles, and Equipment","100000","75982.75","0" +"111PO-D185G2","UK","Unknown","ITT, Vehicles, and Equipment","85000","0","0" +"111PO-D185G3","UK","Unknown","ITT, Vehicles, and Equipment","101000","0","0" +"111PO-D185G4","UK","Unknown","ITT, Vehicles, and Equipment","29000","0","0" +"111PO-D185G5","UK","Unknown","ITT, Vehicles, and Equipment","104000","0","0" +"111PO-D185K","UK","Unknown","ITT, Vehicles, and Equipment","150000","0","850018" +"111PO-D187A","UK","Unknown","ITT, Vehicles, and Equipment","9000","0","491424" +"111PO-D187B","UK","Unknown","ITT, Vehicles, and Equipment","7000","0.00","136515.33" +"111PO-D187C","UK","Unknown","ITT, Vehicles, and Equipment","2000","0.00","598176.69" +"111PO-D187D","UK","Unknown","ITT, Vehicles, and Equipment","902000","190889.03","29494334.26" +"111PO-DARG22","UK","Unknown","ITT, Vehicles, and Equipment","180000","474896.62","2665961.90" +"111PO-DARG23","UK","Unknown","ITT, Vehicles, and Equipment","46000","215190.02","942401.64" +"111PO-DARG25","UK","Unknown","ITT, Vehicles, and Equipment","2030000","611468.25","397531.75" +"111PO-DARG26","UK","Unknown","ITT, Vehicles, and Equipment","2240000","0","0" +"111PO-K185A","UK","Unknown","ITT, Vehicles, and Equipment","35000","0","314487" +"111PO-K185B","UK","Unknown","ITT, Vehicles, and Equipment","30000","119640","0" +"111PO-K185C","UK","Unknown","ITT, Vehicles, and Equipment","300000","0","0" +"111PO-M185A","UK","Unknown","ITT, Vehicles, and Equipment","5000","0","35219" +"111PO-M185B","UK","Unknown","ITT, Vehicles, and Equipment","10000","0","39880" +"111PO-M185C","UK","Unknown","ITT, Vehicles, and Equipment","30000","0","119640" +"111PO-M185D","UK","Unknown","ITT, Vehicles, and Equipment","10000","16181.17","23698.83" +"111PO-M185E","UK","Unknown","ITT, Vehicles, and Equipment","20000","79760.06","0" +"111PO-M185F","UK","Unknown","ITT, Vehicles, and Equipment","20000","79760.06","0" +"111PO-Q185A","UK","Unknown","ITT, Vehicles, and Equipment","512000","324749.20","3363312.80" +"111PO-R185F","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","476846.75" +"111PO-X185AR","UK","Unknown","ITT, Vehicles, and Equipment","395000","125840.18","269159.82" +"039LQWHRN-26","QPL","Queens Borough Public Library","Fixed Asset","23308000","0","0" +"111PO-X185B","UK","Unknown","ITT, Vehicles, and Equipment","1200000","0","0" +"111PO-X185C","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111PSAC2CRI2","UK","Unknown","ITT, Vehicles, and Equipment","374000","1112390.39","6439587.58" +"111PU16APRO1","UK","Unknown","ITT, Vehicles, and Equipment","115112000","0","0" +"111PW-ITSEC","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111QCDA3DESK","UK","Unknown","ITT, Vehicles, and Equipment","100000","375","283306" +"111QCDAXNETW","UK","Unknown","ITT, Vehicles, and Equipment","10000","0.00","4280387.73" +"111QDAXLANU","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","208626.28" +"111RBP5VIDE","UK","Unknown","ITT, Vehicles, and Equipment","50000","0","0" +"111RDA6RDVE","UK","Unknown","ITT, Vehicles, and Equipment","320000","0.00","10550.94" +"111SANDVEHRP","UK","Unknown","ITT, Vehicles, and Equipment","0","2723.00","13064612.76" +"801HPMRKRAIL","SBS","Department of Small Business Services",,"0","18793.61","19002768.89" +"841HBQ002C","DOT","Department of Transportation",,"0","0.00","141207.21" +"846P-3CMGWAT","DPR","Department of Parks and Recreation","Fixed Asset","0","49471.30","191221.68" +"841HBX1103","DOT","Department of Transportation",,"46059000","1960985.63","1957933.65" +"846P-3CPI3A2","DPR","Department of Parks and Recreation",,"0","169913.13","1382606.87" +"846P-3CPI3AC","DPR","Department of Parks and Recreation","Fixed Asset","0","87705.81","1391704.32" +"841HBR10COMP","DOT","Department of Transportation",,"0","0","0" +"841HBX1086","DOT","Department of Transportation",,"4176000","11006847.36","75020304.10" +"841HBX1131","DOT","Department of Transportation",,"6423000","21459902.02","296280475.80" +"111SBS5HINYP","UK","Unknown","ITT, Vehicles, and Equipment","806000","0","0" +"111SBS5HNYCP","UK","Unknown","ITT, Vehicles, and Equipment","802000","90160","141120" +"801HUNTSPROD","SBS","Department of Small Business Services","Fixed Asset","5944000","0","0" +"801P-2GPWB07","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","585000","197014.51","4028419.27" +"850PWK497STF","DDC","Department of Design and Construction","Fixed Asset","0","0.00","242767.44" +"841HWX415","DOT","Department of Transportation",,"6851000","0","0" +"841HWXBSAVWF","DOT","Department of Transportation",,"711000","0","0" +"841P-502EBRD","DOT","Department of Transportation",,"183000","0","0" +"841SANDRF07","DOT","Department of Transportation",,"22025000","551116.57","709491.16" +"841HWSAFTR","DOT","Department of Transportation","Lump Sum","14384000","0","0" +"111SIBP1NETU","UK","Unknown","ITT, Vehicles, and Equipment","80000","0.00","219349.14" +"126PV176-REC","DCLA","Department of Cultural Affairs","Fixed Asset","2334000","0","0" +"850PWDNWOODY","DDC","Department of Design and Construction","Lump Sum","71000","0","0" +"846P-3PIKEMA","DPR","Department of Parks and Recreation",,"27340000","870808.44","1179221.64" +"846P-400FMCP","DPR","Department of Parks and Recreation",,"2400000","0","0" +"111TD18BIKEX","UK","Unknown","ITT, Vehicles, and Equipment","4002000","0","0" +"111TD18BREPA","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111TD18CRSH","UK","Unknown","ITT, Vehicles, and Equipment","395000","3207.00","4920631.77" +"111TD18FR503","UK","Unknown","ITT, Vehicles, and Equipment","31000","5979387.33","7235392.29" +"111TD18FR510","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111TD18FR524","UK","Unknown","ITT, Vehicles, and Equipment","4055000","18107914.69","2493204.03" +"039LQWP-MASO","QPL","Queens Borough Public Library","Fixed Asset","350000","0","0" +"039LQOZCCTV","QPL","Queens Borough Public Library","ITT, Vehicles, and Equipment","0","0.00","97144.73" +"816FBIOEQUIP","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","0","0.00","487462.87" +"846P-3RIV105","DPR","Department of Parks and Recreation","Fixed Asset","20000","42000.00","900159.34" +"846P-3RIVDIN","DPR","Department of Parks and Recreation","Fixed Asset","9249000","232767.57","828966.06" +"850AGNYCHANG","DDC","Department of Design and Construction",,"136000","39158.89","912027.46" +"850AGVISVAN2","DDC","Department of Design and Construction",,"62000","0","0" +"111TD18HAMCR","UK","Unknown","ITT, Vehicles, and Equipment","2000000","1856497.24","0" +"111TD18HBTRR","UK","Unknown","ITT, Vehicles, and Equipment","1940000","1970745.53","652475.4" +"111TD18MLPVE","UK","Unknown","ITT, Vehicles, and Equipment","14255000","0","0" +"111TD18RRMFL","UK","Unknown","ITT, Vehicles, and Equipment","31081000","5107559.1","0" +"111TD18SIMPR","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","3659114.62" +"111TD25FRLMP","UK","Unknown","ITT, Vehicles, and Equipment","239030000","0","0" +"856PWXBPTROL","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856S136-434","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","3213700","0" +"111TLC1TRIP","UK","Unknown","ITT, Vehicles, and Equipment","1600000","1440000","0" +"111TLC3RDUP","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","1698456.86" +"111TLC6UPGR","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","3095592.50" +"111TLC9CAMS","UK","Unknown","ITT, Vehicles, and Equipment","78000","12568.07","807431.93" +"111TLC9NETUP","UK","Unknown","ITT, Vehicles, and Equipment","426000","0","0" +"846SANDY4-26","DPR","Department of Parks and Recreation","Fixed Asset","9073000","168240.19","1051281.52" +"850HLDNHEATH","DDC","Department of Design and Construction",,"461000","171156","0" +"846SANDY4-27","DPR","Department of Parks and Recreation",,"1233000","40761.13","157576.87" +"850HLDNCLRDE","DDC","Department of Design and Construction",,"0","0","266172" +"846SANDY5-44","DPR","Department of Parks and Recreation","Lump Sum","0","9176.33","537151.78" +"856CO283FIRE","DCAS","Department of Citywide Administrative Services","Fixed Asset","26522000","4103247.06","9112128.53" +"856CO283MP1","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","55913.27","2448717.27" +"056SANDCD6","NYPD","Police Department","Fixed Asset","791000","60261.69","172051.6" +"042CA201MC04","CUNY","City University of New York","Fixed Asset","197000","117310.87","943550.13" +"850PWDMYRE","DDC","Department of Design and Construction","Lump Sum","0","0","72342" +"850HLMNNYSCS","DDC","Department of Design and Construction",,"100000","0","0" +"850LBK15WTHC","DDC","Department of Design and Construction","Fixed Asset","387000","6838.56","3919986.37" +"850HLQNSTMRY","DDC","Department of Design and Construction",,"0","0","0" +"111XBP4LANU","UK","Unknown","ITT, Vehicles, and Equipment","212000","143170","0" +"111XBP4LANX","UK","Unknown","ITT, Vehicles, and Equipment","84000","0.0","125420.9" +"111XBP5FUDC","UK","Unknown","ITT, Vehicles, and Equipment","0","0","0" +"111XBP6EQPTU","UK","Unknown","ITT, Vehicles, and Equipment","88000","0","0" +"125AGALPHAPH","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","0","0","0" +"125AGBROOKD","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","62000","0","0" +"125AGCCVEH","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","214000","0","0" +"826JRAQ-REH","DEP","Department of Environmental Protection","Fixed Asset","20614000","26897239.49","60569584.65" +"042LM025-014","CUNY","City University of New York","ITT, Vehicles, and Equipment","7000","0.00","493035.61" +"042LM084-099","CUNY","City University of New York","ITT, Vehicles, and Equipment","2000","0.00","529104.51" +"042LM013-005","CUNY","City University of New York","Fixed Asset","43000","0.00","641695.04" +"042LM024-013","CUNY","City University of New York","ITT, Vehicles, and Equipment","102000","68945.42","329363.54" +"042HS042-011","CUNY","City University of New York","ITT, Vehicles, and Equipment","3000","0.00","295430.84" +"850HLWOMEN","DDC","Department of Design and Construction",,"900000","0","0" +"125AGCCVEH2","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","112000","0","0" +"125AGD10COMP","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","200000","0","0" +"125AGDCISCO","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","153000","49212.32","718338.69" +"125AGINGVEHS","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","223000","0","0" +"125AGROBVAN","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","50000","0","0" +"125AGROYVAN","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","50000","0","0" +"125AGSNAPVAN","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","31000","0","0" +"125AGSNAPWHL","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","31000","0","0" +"801RANDBXSHO","SBS","Department of Small Business Services","Fixed Asset","0","430.00","10042371.51" +"850SE-810","DDC","Department of Design and Construction","Fixed Asset","1303000","18625838.39","87696351.12" +"850HWCRCM1","DDC","Department of Design and Construction",,"848000","0","0" +"850HWCRCQ1","DDC","Department of Design and Construction",,"1050000","0","0" +"850HWCRCRK","DDC","Department of Design and Construction",,"735000","0","0" +"850HWCRCX1","DDC","Department of Design and Construction",,"675000","0","0" +"125AGVEHICLE","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","930000","0","0" +"125AGWOODTEC","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","100000","0","0" +"125BROADBAND","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","1257000","0","0" +"125STARS2.0","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","4426000",, +"126PV002-52P","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","96783.19" +"126PV002CSS1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV01YCH3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","122000","0","0" +"057F175M9EWF","FDNY","Fire Department","Fixed Asset","33568000","790122.40","763431.29" +"126PV01YCH4","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","131000","0","0" +"126PV01Y-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","111579.86" +"126PV028-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","312000","0","0" +"126PV02LAUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","162000","0","0" +"126PV02SEQU1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV02SEQU2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","645000","0","0" +"126PV02YAUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","90000","0.0","69822.7" +"071HH112HSCR","DHS","Department of Homeless Services","Fixed Asset","6325000","94380","165620" +"819HRLM/MJR","HHC","Health and Hospitals Corporation","Fixed Asset","74000","26181.08","290555472.85" +"826BB-218-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826BB-220-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","126469000","9868712.95","2227625.08" +"819QHC2","HHC","Health and Hospitals Corporation","Fixed Asset","494000","0.00","52310866.18" +"819SAND67E","HHC","Health and Hospitals Corporation","Fixed Asset","44000","0.00","18052789.67" +"82626-STAB13","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","-1193000","81033.23","44974610.58" +"071HH112HSMR","DHS","Department of Homeless Services","Fixed Asset","4425000","77250","161750" +"071HH112KITC","DHS","Department of Homeless Services","Fixed Asset","4661000","0.0","61603.8" +"042HS041-011","CUNY","City University of New York","ITT, Vehicles, and Equipment","16000","393528.22","5414291.78" +"042HS043-011","CUNY","City University of New York","Fixed Asset","535000","0","0" +"126PV02ZAUD1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","76000","0.00","69372.72" +"126PV033-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","205000","0","0" +"826RH-79-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826DEL-415","DEP","Department of Environmental Protection","Fixed Asset","26805000","0","163400" +"826DMCCSG","DEP","Department of Environmental Protection","Fixed Asset","3100000","1018352.59","7212832.20" +"850JCCBK","DDC","Department of Design and Construction","Lump Sum","63000","0","0" +"826NC-159","DEP","Department of Environmental Protection","Fixed Asset","5590000","618690.51","13892899.16" +"126PV034NH2","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","500000","0","0" +"126PV034NH3","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","750000","0","0" +"126PV034-VID","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","591000","0","0" +"126PV03LSHE1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","161000","0","0" +"126PV03N-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","90000","0","0" +"039LQWP-TECH","QPL","Queens Borough Public Library","Fixed Asset","144000","0","0" +"826OH-93-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"126PV423ROOF","DCLA","Department of Cultural Affairs","Fixed Asset","1389000","0","0" +"850LQCH-RES","DDC","Department of Design and Construction",,"8864000","0","0" +"042CA052-017","CUNY","City University of New York","Fixed Asset","0","0","0" +"042CA049-016","CUNY","City University of New York","ITT, Vehicles, and Equipment","40000","0","0" +"850MED673","DDC","Department of Design and Construction",,"37327000","82115.00","432740.67" +"042LM032-017","CUNY","City University of New York","Lump Sum","0","0","0" +"827S136-435","DSNY","Department of Sanitation","Fixed Asset","675000","231082.95","27091740.64" +"801PV050ELMO","SBS","Department of Small Business Services","Fixed Asset","15000","24162.51","3475837.82" +"801SIRRBRDG","SBS","Department of Small Business Services","Fixed Asset","79000","0.00","4300424.16" +"126PV467-GFS","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0.00","693982.79" +"801RANDISSF","SBS","Department of Small Business Services","Fixed Asset","0","0.00","9870722.75" +"826PR-134-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","124785000","131490497.36","698150.64" +"850PWD005NEW","DDC","Department of Design and Construction",,"0","15000.00","1846935.02" +"850PW448MMCM","DDC","Department of Design and Construction",,"574000","0","0" +"850PWARMWR","DDC","Department of Design and Construction",,"250000","0","0" +"850PWD308JCI","DDC","Department of Design and Construction",,"0","0","125736" +"850PWDGMEN","DDC","Department of Design and Construction",,"0","0.00","441945.18" +"126PV040-FCC","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","216000","198000","0" +"126PV04P-PIA","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","278000","0","0" +"126PV04VESA1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","210000","0","0" +"126PV04ZAP1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","300000","0","0" +"126PV050MECH","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2734000","0","0" +"126PV050MMI1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","231000","0","0" +"126PV05BLGT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","327000","247419","0" +"126PV05WCFF1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","158000","0","0" +"126PV132-AV1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","150000","0","0" +"126PV132-LGT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","11000","11.49","230314.71" +"126PV132SCRM","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","2195000","0","0" +"072C130PANEL","DOC","Department of Correction","Fixed Asset","1462000","7814.06","101975.38" +"826PR-135-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","164440000","17854165.56","15896946.44" +"826PR-136-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826PR-138-L","DEP","Department of Environmental Protection","Fixed Asset","7416000","41592565.77","31896543.20" +"042CA019HS01","CUNY","City University of New York","ITT, Vehicles, and Equipment","13000","28140.12","284048.66" +"801RICONNECT","SBS","Department of Small Business Services",,"3081000","0.00","5954928.78" +"850SEQ200592","DDC","Department of Design and Construction",,"4760000","22928432.14","12888090.00" +"850SEPWCWS01","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"806NCAMBA2","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","22510000" +"826PS-289","DEP","Department of Environmental Protection","Fixed Asset","40500000","0","100000" +"826PS-290","DEP","Department of Environmental Protection","Fixed Asset","124467000","0","0" +"072C138PROB5","DOC","Department of Correction","ITT, Vehicles, and Equipment","190000","70455.04","1477576.05" +"850TOUROLAW","DDC","Department of Design and Construction",,"290000","0","0" +"85670MULBRPV","DCAS","Department of Citywide Administrative Services",,"0","0","0" +"850HED-564","DDC","Department of Design and Construction","Fixed Asset","1570000","2709767.50","34339556.30" +"856ACEDEP901","DCAS","Department of Citywide Administrative Services",,"36101000","0","0" +"126PV142EAIT","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"126PV175HVAC","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","7200000","0","0" +"850HED-568","DDC","Department of Design and Construction","Fixed Asset","16000","4567178.52","37501203.25" +"826PS-293","DEP","Department of Environmental Protection","Fixed Asset","117960000","0","540000" +"826PS-295","DEP","Department of Environmental Protection","Fixed Asset","28080000","59898488.12","5365780.16" +"856E21-0005","DCAS","Department of Citywide Administrative Services",,"60000","894235","0" +"856E21-0008","DCAS","Department of Citywide Administrative Services",,"17887000","11656355","0" +"856E21-0009","DCAS","Department of Citywide Administrative Services",,"8052000","6638751","0" +"856E23-0007","DCAS","Department of Citywide Administrative Services",,"785000","10713443","0" +"856E23-0008","DCAS","Department of Citywide Administrative Services",,"586000","7566453.43","0" +"856E23-0009","DCAS","Department of Citywide Administrative Services",,"0","730049.09","827021.16" +"856E23-0010","DCAS","Department of Citywide Administrative Services",,"469000","6092080.96","0" +"856E24-0002","DCAS","Department of Citywide Administrative Services",,"704000","9287231","0" +"856E24-0009","DCAS","Department of Citywide Administrative Services",,"23004000","0","0" +"856E26-0002","DCAS","Department of Citywide Administrative Services",,"6501000","0","0" +"856HR25FOSTC","DCAS","Department of Citywide Administrative Services",,"0","60000.00","6633144.33" +"042HS019-004","CUNY","City University of New York","Fixed Asset","12000","0.00","384533.12" +"042HC073-094","CUNY","City University of New York","Fixed Asset","0","0","471804" +"801SANDBNYEC","BNY","Brooklyn Navy Yard","Fixed Asset","3892000","0.00","1525657.81" +"850PV467LEED","DDC","Department of Design and Construction","Fixed Asset","0","0.00","622785.75" +"806COUN234","HPD","Housing Preservation and Development","Lump Sum","1822000","0","1866148" +"826PS-322","DEP","Department of Environmental Protection","Fixed Asset","9000000","70592946.7","3245685.5" +"826PS-323","DEP","Department of Environmental Protection","Fixed Asset","8850000","42090529.79","2212050" +"826PS-324","DEP","Department of Environmental Protection","Fixed Asset","9659000","31579341.41","5111319.25" +"856PWDNTEW","DCAS","Department of Citywide Administrative Services",,"800000","0","0" +"856PWDPLONG2","DCAS","Department of Citywide Administrative Services",,"6270000","0","0" +"856PWDRGAINS","DCAS","Department of Citywide Administrative Services",,"450000","0","0" +"801SANDCD9","SBS","Department of Small Business Services",,"5832000","29071.54","237708.46" +"806W52REHAB","HPD","Housing Preservation and Development","Fixed Asset","250000","0","0" +"826R-153-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","29270000","0","0" +"850HL82NYUD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"856SOLARPQL2","DCAS","Department of Citywide Administrative Services",,"1236000","1410805.75","2549194.25" +"856TYP-LL5","DCAS","Department of Citywide Administrative Services",,"83237000","0","0" +"856TYP-LL5FA","DCAS","Department of Citywide Administrative Services",,"3382000","0","0" +"998CAPSOL91","NYCTA","Transit Authority",,"9501000","27275769.82","1438982544.95" +"037LNCA13AGL","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"037LNCA15MUL","NYPL","New York Public Library","ITT, Vehicles, and Equipment","0","0","0" +"039LQWSRN-23","QPL","Queens Borough Public Library","Fixed Asset","300000","0","0" +"81919202501","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","11330000","25277215.36","28290246.76" +"81919202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","45511000","0","0" +"81919202602","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81920201921","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000","0","37278" +"81920201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","76000","0","75750" +"81920201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000","0.00","386817.11" +"81920202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","17000","23980","95920" +"81920202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","231000","168660","0" +"81920202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","33000","12924.00","354068.00" +"81920202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1400000","0","0" +"81921201751","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2245000","791813.45","4553853.90" +"81921201840","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","105000","0.00","2990892.03" +"81921201944","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","11000","0.00","337611.39" +"81921202001","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","86950" +"81921202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","869640" +"81921202101","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","126000","66934.07","1353638.64" +"81921202111","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1655000","4553382.18","4875125.82" +"81921202112","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2619000","5490175.49","6964526.87" +"81921202140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.0","189597.2" +"81921202142","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","55766" +"81921202143","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","9000","0","125000" +"81921202144","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","7519000","0","0" +"81921202146","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","61703.38" +"81921202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","41000","0","245000" +"81921202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","357000" +"81921202346","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3500000","0","0" +"81921202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","200000" +"81921202444","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2903000","0","0" +"81921202445","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81921202448","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.00","439286.05" +"81921202507","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","125000","0","0" +"81921202508","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","215000","0.0","185668.5" +"81921202509","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","150000","0","0" +"81921202510","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","215000","199453.06","0" +"81921202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","794000","0","0" +"81921202606","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","524000","0","0" +"81922201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","70000","0","377372" +"81922202203","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","147000","0","0" +"81922202301","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81922202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","194000","0","106000" +"81922202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","275000","0","0" +"81922202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","249000","50905","0" +"81923202302","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000000","0","0" +"81923202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","550000","0","0" +"81924201750","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1490000","0.00","1160023.46" +"81924201841","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","52100" +"81924201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","7000","0.00","250135.28" +"81924201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","108000","0","228768" +"81924201943","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81924201944","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12000","0","45500" +"81924201945","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","560976.93" +"81924201946","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","10000","0.0","69958.8" +"81924202042","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.00","204269.95" +"81924202044","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","96000","2487.54","102918.23" +"81924202045","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","173000","0","0" +"81924202102","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","608000","491818.87","2995272.38" +"81924202140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81924202141","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.00","462309.78" +"81924202143","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","15000","0","414500" +"81924202242","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","89000","0","191224" +"81924202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","380140" +"81924202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2000","0.0","147842.5" +"81924202346","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","655000","1467452.81","57089.55" +"81924202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","246000" +"81924202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12000","0","152756" +"81924202443","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","10000","0.00","155272.39" +"81924202507","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000000","133361.94","0" +"81925201750","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5000","0.00","495111.37" +"81925201804","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","6000","0.0","203717.7" +"81925201841","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.0","592470.1" +"81925201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","45000","0.0","565121.7" +"81925201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000","0.00","5742430.71" +"81925201942","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","971000","3601.68","353623.32" +"81925202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","887887" +"81925202144","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","8000","1276291.49","0" +"81925202147","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","365000","0.00","384525.62" +"81925202202","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1200000","0","0" +"81925202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","1065428" +"81925202343","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","9000","0.00","1090819.29" +"81925202344","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1037000","1006337.56","0" +"81925202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000000","0","0" +"81925202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2000","0.00","997835.24" +"81925202446","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1706000","0","0" +"81926201421","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","586000","0","0" +"81926201540","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","53000","0.00","122801.79" +"81926201702","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","48858.88" +"81926201703","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","100985.39" +"81926201751","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5000","0.00","248011.03" +"81926201752","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12000","0","62500" +"81926201901","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81926201902","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81926201943","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","1461020" +"81926201944","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","8000","0.00","195348.42" +"81926201945","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","441000","0","0" +"81926201947","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","126000","0","0" +"81926202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","122000","0","0" +"81926202041","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","107000","0","0" +"81926202042","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","50965" +"81926202043","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","47000","0","210207" +"81926202047","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","64000","0","0" +"81926202050","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","1294.9","472036.1" +"81926202142","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","53000","0.00","119317.31" +"81926202143","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000","0.00","80156.42" +"81926202145","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","235000","66543.63","2365000" +"81926202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","53000","0","147466" +"81926202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","655420.26","0" +"81927200241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","55220" +"81927202343","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1100000","188927","0" +"81927202502","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","500000","0","0" +"81928202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","408000","407191.38","0" +"81929201040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","25000","0.00","1470199.09" +"81929201140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","120000","0","0" +"81929201744","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.0","416481.8" +"81929201751","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","151000","0","0" +"81929202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","320000","0","0" +"81929202043","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.0","56182.5" +"81929202046","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","75000","0","412685" +"81929202140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","42000","7051.58","155962.65" +"81929202141","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","8000","0.00","469513.22" +"81929202142","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","174000","0","106340" +"81929202145","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","161000","0","0" +"81929202147","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","115000","0","0" +"81929202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","11000","0","309000" +"81929202242","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","7000","0","203900" +"81929202245","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","95000","1033818.9","0" +"81929202246","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","52000","0","171000" +"81929202403","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1300000","0","0" +"81929202443","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","6000000","3194161.8","1110682.2" +"81929202447","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","169000","0.26","1706857.74" +"81929202450","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","87000","86395","0" +"81929202451","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","95000" +"81929202505","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","72700" +"81933201340","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","516000","0","0" +"81933201750","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3200000","0","0" +"81933201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2000","0","142614" +"81933202041","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.00","159483.62" +"81933202044","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.00","1168478.36" +"81933202203","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12634000","334064","761667" +"81933202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","120000","0.00","887653.78" +"81933202403","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","4500000","2437328.13","0" +"81933202408","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81933202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","6000","0.00","174240.45" +"81933202447","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","594000","0","0" +"81933202502","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","12000","0.00","987796.66" +"81933202506","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","500000","0","479500" +"81934200840","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","3742.19","1369154.62" +"81934201140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","701657.54" +"81934201342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","105557.07" +"81934201745","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.0","125218.5" +"81934201746","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","47847.11" +"81934201747","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","49800" +"81934201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","56058.75" +"81934202021","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81934202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","15000","0","96630" +"81934202041","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","88573" +"81934202042","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","134145" +"81934202043","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","134145" +"81934202044","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81934202045","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","644642.01" +"81934202143","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","661000","1953784.6","3697554.7" +"81934202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81934202242","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2000","0","298180" +"81934202244","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","22000","0.00","100652.39" +"81934202302","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","252000","2728457.19","1329624.39" +"81934202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81934202344","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","208000","0","0" +"81934202346","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","400000","0","0" +"81934202347","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","300000","0","0" +"81934202401","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","425000","0","0" +"81934202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","375000","352523.48","0" +"81934202507","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000000","0","0" +"81934202509","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000000","930889.8","0" +"81937201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","606125.15" +"81937202001","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5913000","197538","301199" +"81937202041","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2586000","1163500.05","214379.45" +"81937202108","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1842000","119190.43","418807.57" +"81937202242","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","28000","0","0" +"81937202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5514000","3005188.78","179293.48" +"81937202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","123000","0.00","347982.38" +"81937202343","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","96000","0.0","156552.5" +"81937202344","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2000","0","502866" +"81937202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","240640.8","0" +"81937202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","110270","0" +"81937202444","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","5000","0","391300" +"81937202446","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","557000","0","0" +"81937202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","250000","192579","0" +"81942201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","3000","0","50000" +"81942201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","8000","0","377430" +"81942202203","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"81942202242","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","125920" +"81942202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","254000","130650.00","48836.01" +"81942202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81942202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81942202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","248000","0","0" +"81942202502","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81942202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","119000","0","0" +"81948201803","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","85350" +"81948201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","21000","0.0","247558.9" +"81948201941","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","10000","0.0","69042.4" +"81948201943","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","71000","0.0","253716.2" +"81948201944","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0.0","98092.9" +"81948201945","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","240000" +"81948201947","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","8000","0","68981" +"81948201948","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","87000","0","163400" +"81948202106","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2708000","11849449.39","8355697.86" +"81948202207","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","41209000","290587","569232" +"81948202244","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","274242" +"81948202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","23000","0","2907623" +"81948202342","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","282000","0.0","218658.2" +"81948202344","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1692000","0","0" +"81948202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","350000","0","0" +"81948202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","67000","0","0" +"81948202444","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81948202445","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1350000","0","0" +"81948202447","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","170000","0","0" +"81948202506","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","80000","0","0" +"81948202507","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","65000","0","0" +"81948202510","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","165000","0","0" +"81948202511","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81967202140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","250000","0","0" +"81968201940","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","30000","0","105796" +"81968202040","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","84000","0.00","1889093.84" +"81968202102","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","29000","0","95610" +"81968202103","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","2368000","0","0" +"81968202201","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","58000","0","92000" +"81968202202","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","388000","0","0" +"81968202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","537000","0.0","117331.8" +"81968202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.0","164569.6" +"81968202601","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","150000","0","0" +"81970202341","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1000","0","152399" +"81970202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","150000","0","0" +"81970202442","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","150000","0","0" +"81973202401","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","100000","0","0" +"81973202441","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","400000","0","0" +"81975202241","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","267000","0","0" +"819CV191140","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"819CV192440","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","9000","7279.00","391537.84" +"819CV193340","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0.00","339863.21" +"819CV196840","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","83000","0.00","1853450.56" +"819HO410AMB2","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","423747000","0.00","172649934.20" +"819HOEITECH","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","73750000","0","0" +"819HOEQPMNT","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","86020000","0","0" +"819SAND1121","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1329000","1058005.57","4279942.73" +"819SAND1122","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","62000","953669.00","2699714.15" +"819TKYHHC012","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","14478000","309012","213488" +"819TKYHHC018","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","26500000","0","0" +"819TKYHHC906","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","16569000","0","0" +"819TKYHHC908","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","998000","1630805.40","10124644.60" +"819TKYHHC910","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","1906000","0.0","65003.2" +"819TKYHHC912","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","0","0","0" +"826179PSEGEN","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","2530000","0","0" +"8262025-MVHP","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10542000","10454993","0" +"826AIR-MON1","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","168000","562845.69","346095.31" +"826AIR-MON2","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","4500000","0","0" +"826BCS-AMR25","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","169919000","15387281.18","19903353.64" +"826BEDC-JOCS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","100000000","0","0" +"826BLUBLTCW2","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","5362202.05","137797.95" +"826BLUBLT-NA","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","5643000","5642800","0" +"826BWSO-BBV","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826BWSO-CBSN","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826BWSO-GIV","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826BWSO-SM","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826CFP-PMCS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","4798000","0","0" +"826CI-125-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826CRO-304","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","2721000","0","124614" +"826CRO-452","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","5844000","2978886.07","5404983.70" +"826CS-JB-MUS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","53000000","7282516.62","0" +"826DEP_EMAIL","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","1000000","0","0" +"826DEP_NET","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","18748000","1361980.23","30360701.77" +"826EE-DATA","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","8694000","0","0" +"826EE-SCHED","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","9628615.55","8871384.45" +"826FLEET-14","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","187000","6904571.24","25508634.90" +"826FLEET-15A","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0.00","6787725.20" +"826FLEET-16","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","1080404.05","9217111.9" +"826FLEET-24","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","15436697","0" +"826FLEET-25","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","1721000","24609428.96","170366" +"826FLEET-26","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","29083000","0","0" +"826FLEET-27","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","30000000","0","0" +"826FLEET-28","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","30000000","0","0" +"826FLEET-29","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","30000000","0","0" +"826FLEET-30","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","0","0" +"826FLEET-31","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","0","0" +"826FLEET-32","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","0","0" +"826FLEET-33","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","0","0" +"826FLEET-34","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","0","0" +"826FLEET-35","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","10000000","0","0" +"826FORKLIF06","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","488000","665183.73","7596340.53" +"826GI-POMISC","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","81146000","0","0" +"826HP-239-B","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","217000000","0","0" +"826MOBSCAN","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","125000",, +"826MONIT-18","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","780000","64000","0" +"826NCMCCSG","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","116431000","1080972.42","15018632.04" +"826NR-115-B","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826OB-144-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","18080000","20269186.87","8542265.20" +"826OB-149-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","650000","0","0" +"826OEA-EAA3","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0.00","34469365.10" +"826OEA-EAA4","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","18453000","4732665.70","27463589.30" +"826OEA-EAA5","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","72200000","0","0" +"826PO-120-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","710000","0.00","832167.81" +"826PO-121-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","320000","0.00","2228413.49" +"826PO-123","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826PO-125-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","1946000","23500.00","3392161.12" +"826PO-SKIM","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","4671000","4651962","126848" +"826PW-EAMS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","0","0" +"826PW-PAGING","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","5000000","0","0" +"826RADIO-DEP","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","178000","0.00","2130244.64" +"826ROVREPL","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","150000",, +"826SECURITY","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","116173000","0","0" +"826SEH20051","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","65855000","0","0" +"826SEK002388","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","42458000","0","0" +"826SEN20022","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","153999000","0","0" +"826SWO-BOATS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","300000","219570","0" +"826VEHVEHC","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","12041000","0","0" +"826WATQU-13","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","254000","0.00","2836386.84" +"826WATQU-22","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","4622000","0.00","1216679.89" +"826WATQUFUT","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","1800000","0","0" +"826WEC-LGE16","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","11600000","7336181.44","47583786.73" +"826WEC-LGE25","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","50545000","470808","0" +"826WI-322-L","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","9650000","0","0" +"826WMP-BOATS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","745000","0","0" +"826WSRRF-100","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","7120000","0","0" +"826WW-INSP","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","27908000","20239205.14","57091654.72" +"826WW-INSP18","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","2588000","300344.70","12579655.30" +"827S1292022","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","2000","1381670.73","111929128.82" +"827S1292024","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","1107000","80614615.75","113684523.47" +"827S1292025","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","13758000","142310540.25","77744051.90" +"827S1292026","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","183182000","0","0" +"827S1292027","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","190264000","0","0" +"827S1292028","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","180706000","0","0" +"827S1292029","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","258621000","0","0" +"827S1292030","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","229425000","0","0" +"827S1292031","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","234860000","0","0" +"827S1292032","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","183568000","0","0" +"827S1292033","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","187223000","0","0" +"827S1292034","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","193365000","0","0" +"827S1292035","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","199746000","0","0" +"827S129212","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","45000","30500.00","2567614.75" +"827S129212BV","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","6701000","1000.00","9672385.12" +"827S129212CM","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","90000","0","0" +"827S129212DA","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","250000","0","0" +"827S129-366F","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0","0" +"827S129-468X","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","500000","0","0" +"827S129CT25","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","403000","5299.92","259696.08" +"827S136-251E","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","137000","966107.68","333862.74" +"827S136-264Y","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","1080000","1581755.82","6605984.18" +"827S222-396E","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","28232000","0","99476" +"827S222-420E","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0.00","4645917.77" +"827S222-420Q","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","7000000","0.0","658084.8" +"827S222-420R","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0.0","1020427.2" +"827S222-420V","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","1.00","4715244.84" +"827S222-420X","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","1226000","0.00","623188.05" +"827S222-421A","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","3000","11778.0","1082240.8" +"827S222-421C","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","1234000","54875.11","1568983.89" +"827S222-421M","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","80000","967.53","3067804.52" +"827S222-465G","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","6000000","0","999998" +"827S222-465M","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0","0" +"827S222-465N","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","1848000","0","0" +"827S222-465O","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","125000","396390.00","2710740.64" +"827S222-465S","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0","0" +"827S222-465V","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0","0" +"827S222-465W","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","1000","92598.46","2157411.43" +"827S222-468A","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0","0" +"827S222-468B","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","0","0","1957087" +"827S222-468D","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","2000","0.00","1908276.14" +"827S222-468E","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","4000","0.00","3664964.96" +"827S222-468F","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","675000","181448.39","697972.11" +"827S222-468G","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","102000","364866.62","0" +"827S222-468H","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","2263000","408061.14","1854901.86" +"827S222-468J","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","4051000","0","0" +"827S222-468N","DSNY","Department of Sanitation","ITT, Vehicles, and Equipment","434000","0","0" +"841ACEDOT222","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1737000","0","0" +"841AUSTENFB","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3450000","1624997.61","0" +"841BARBERINH","DOT","Department of Transportation","ITT, Vehicles, and Equipment","125000","360.44","3164631.23" +"841BEDSTLIG","DOT","Department of Transportation","ITT, Vehicles, and Equipment","346000","225675","178375" +"841BIKE2030","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3846000","0","0" +"841BMBSLIP5","DOT","Department of Transportation","ITT, Vehicles, and Equipment","856000","0","0" +"841BRCR24029","DOT","Department of Transportation","ITT, Vehicles, and Equipment","17500000","0","0" +"841BUSARMCAM","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841BUSLANSY3","DOT","Department of Transportation","ITT, Vehicles, and Equipment","88903000","7650000","0" +"841BUSLANSY4","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841BXECONDEV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","88000","0.00","792345.88" +"841C5574","DOT","Department of Transportation","ITT, Vehicles, and Equipment","113000","788896.00","22629121.30" +"841C5589AUS","DOT","Department of Transportation","ITT, Vehicles, and Equipment","10000","3050516.97","10732371.73" +"841E34CCTV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","185000","0","0" +"841ESAFSHOR4","DOT","Department of Transportation","ITT, Vehicles, and Equipment","2000","0","0" +"841FABOLLIS","DOT","Department of Transportation","ITT, Vehicles, and Equipment","4830000","0","0" +"841FARRSLIP","DOT","Department of Transportation","ITT, Vehicles, and Equipment","58539000","607061.31","589752.93" +"841FASTGCCTV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1002000","0.00","1654113.19" +"841FAVESSPC","DOT","Department of Transportation","ITT, Vehicles, and Equipment","28000","972169.78","0" +"841FAWTCCTV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1252000","60.11","993779.89" +"841FBENVCOM","DOT","Department of Transportation","ITT, Vehicles, and Equipment","2307000","4554048.28","1954724.20" +"841FBOATCCTV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","2000000","0","0" +"841FMFVARNR","DOT","Department of Transportation","ITT, Vehicles, and Equipment","14342000","26813.93","1325788.75" +"841FVESSGANR","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1227000","822123.42","2268478.89" +"841HB1013EQ","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3329000","0","0" +"841HBCD007P","DOT","Department of Transportation","ITT, Vehicles, and Equipment","442000","1976533.31","881445.99" +"841HBCD008P","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3597000","0","0" +"841HBCD009P","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3920000","0","0" +"841HBCD010P","DOT","Department of Transportation","ITT, Vehicles, and Equipment","4272000","0","0" +"841HBMPL10","DOT","Department of Transportation","ITT, Vehicles, and Equipment","4068000","0","0" +"841HBMPL11","DOT","Department of Transportation","ITT, Vehicles, and Equipment","4475000","0","0" +"841HBMPL12","DOT","Department of Transportation","ITT, Vehicles, and Equipment","4950000","0","0" +"841HBMPL7","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","249110.68","2419381.58" +"841HBMPL9","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1370000","1162527.75","1374097.74" +"841HBSYSVRS","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1520000","0","0" +"841HWC349M03","DOT","Department of Transportation","ITT, Vehicles, and Equipment","6187000","0.00","1800674.22" +"841HWCESA13A","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","1","0" +"841HWCESA13B","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","1","0" +"841HWCESA16A","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","0","0" +"841HWCESA16B","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","0","0" +"841HWCESA16C","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","0","0" +"841HWCESA16D","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","0","0" +"841HWCFTRLR","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3194000","5786881.06","3561951.84" +"841HWESARRM1","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000","0","0" +"841HWFKGPYRD","DOT","Department of Transportation","ITT, Vehicles, and Equipment","202000","6416.40","211437.76" +"841HWK00504","DOT","Department of Transportation","ITT, Vehicles, and Equipment","35000","0","0" +"841HWKF3000","DOT","Department of Transportation","ITT, Vehicles, and Equipment","50000","0","514957" +"841HWQ1214","DOT","Department of Transportation","ITT, Vehicles, and Equipment","17922000","0","0" +"841HWQBULB1","DOT","Department of Transportation","ITT, Vehicles, and Equipment","35583000","0","0" +"841HWQFHVAC","DOT","Department of Transportation","ITT, Vehicles, and Equipment","2000","0","185790" +"841HBKA23142","DOT","Department of Transportation","ITT, Vehicles, and Equipment","98041000","966428.00","2194029.00" +"841HWQWILLPT","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841HWSIFLEET","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1565000","0","0" +"841ITSBELTPK","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1104000","2032990.44","4010668.56" +"841ITSJACKPK","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3490000","408913.73","0" +"841ITSKOREAN","DOT","Department of Transportation","ITT, Vehicles, and Equipment","367000","23814.28","2094411.58" +"841MOLINARFB","DOT","Department of Transportation","ITT, Vehicles, and Equipment","6670000","0","0" +"841NDF-BSRTP","DOT","Department of Transportation","ITT, Vehicles, and Equipment","900000","0","0" +"841P-4FPKDRR","DOT","Department of Transportation","ITT, Vehicles, and Equipment","352000","0","0" +"841PIER11CTV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0.0","187802.2" +"841REALTIMEM","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","3115261" +"841REALTIMPS","DOT","Department of Transportation","ITT, Vehicles, and Equipment","74000000","0","0" +"841REALTMIDM","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","496.5","4703503.5" +"841RTPIFY19","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1616000","2916271.07","7161983.93" +"841RTPIFY20","DOT","Department of Transportation","ITT, Vehicles, and Equipment","6436000","0","0" +"841SANDRF05","DOT","Department of Transportation","ITT, Vehicles, and Equipment","38970000","12339440.55","242852895.11" +"841SANDRF09","DOT","Department of Transportation","ITT, Vehicles, and Equipment","39000","1101.96","2979954.59" +"841SEEDAAMUP","DOT","Department of Transportation","ITT, Vehicles, and Equipment","120000000","0","0" +"841SEEDHWX01","DOT","Department of Transportation","ITT, Vehicles, and Equipment","18500000","0","0" +"841STEFFSCMV","DOT","Department of Transportation","ITT, Vehicles, and Equipment","2441000","0","0" +"841TD19-9504","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841TD19-9505","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3515000","4606545.23","5521782.52" +"841TD19-9507","DOT","Department of Transportation","ITT, Vehicles, and Equipment","851000","1762557","2765880" +"841TD19-9917","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841TD19-9924","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841TD199933","DOT","Department of Transportation","ITT, Vehicles, and Equipment","38000","14007.50","2594465.75" +"841TD199935","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841TD19BDATA","DOT","Department of Transportation","ITT, Vehicles, and Equipment","1000000","0","0" +"841TD19PMARK","DOT","Department of Transportation","ITT, Vehicles, and Equipment","5246000","694828.45","3688200.51" +"841TD19RFRE2","DOT","Department of Transportation","ITT, Vehicles, and Equipment","3167000","0","0" +"841TD19RFRE3","DOT","Department of Transportation","ITT, Vehicles, and Equipment","2826000","0","0" +"841TD19RFREH","DOT","Department of Transportation","ITT, Vehicles, and Equipment","12000","653.58","2114502.68" +"841TD19STOR","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","823469" +"841TF01-9910","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","86343.88","5477492.48" +"841TF01-9911","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841TF01RLC6","DOT","Department of Transportation","ITT, Vehicles, and Equipment","230126000","96200553","0" +"841TF01RUDA","DOT","Department of Transportation","ITT, Vehicles, and Equipment","11379000","0","0" +"841TF50311","DOT","Department of Transportation","ITT, Vehicles, and Equipment","136000","5000","115272" +"841TF50318","DOT","Department of Transportation","ITT, Vehicles, and Equipment","450000","0","0" +"841TF50319","DOT","Department of Transportation","ITT, Vehicles, and Equipment","450000","0","0" +"841TFD005X01","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0","0" +"841TFITSAMS","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","317372.11","2511843.32" +"841TFPOWERTW","DOT","Department of Transportation","ITT, Vehicles, and Equipment","10258000","8251769.28","1271347.01" +"841TFSBIKEPK","DOT","Department of Transportation","ITT, Vehicles, and Equipment","15844000","0","0" +"841TFSPDCAM","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","11534008.5","174265458.5" +"841TFSPDCAM2","DOT","Department of Transportation","ITT, Vehicles, and Equipment","99734000","0","0" +"841TYPLEDP","DOT","Department of Transportation","ITT, Vehicles, and Equipment","22150000","0","0" +"846NDF-MCDRC","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","700000","23214.02","0" +"846ACEDPR408","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","847000","0.00","208455.05" +"846P-106WCAM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","81610.98" +"846P-1CABTRK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.0","50059.5" +"846P-1CPI23D","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3000","146065.82","544318.46" +"846P-1GATOR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","316000","0.00","291428.48" +"846P-1HPRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","225000","0","0" +"846P-1PICKUP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","34952" +"846P-1RCAMBX","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","567000","0","0" +"846P-1STAGE1","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","177905" +"846P-1SVPFFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","750000","0","0" +"846P-1TOTER","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","22000","0","43777" +"846P-1WASTER","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","6000","0.00","69431.97" +"846P-1WENGER","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","106000","0","0" +"846P-1WENWAG","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","106000","0","0" +"846P-1WGRFFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","750000","0","0" +"846P-200LEHH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","163000","0","0" +"846P-203HBVK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","50000","0","0" +"846P-208K11A","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","964475.63" +"846P-6COMP21","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","10000","18830.08","2599350" +"846P-101LZDA","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","5242000","189910.63","423191.47" +"846P-104GBLE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1219000","281059.49","3259250.36" +"846P-200C64M","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","198156.80","230245.68" +"846P-200FITS","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","46000","10540.56","527154.52" +"846P-111VAN","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","220000","0","0" +"846P-111VCVH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","91000","0","0" +"846P-112HAFP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-1HAFFP5","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","260000","0","0" +"846P-1HAFFPH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-1HAFFPT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","795000","220515.17","781795.40" +"846P-2BKEQP2","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","97000","0.0","52706.8" +"846P-2BVRFFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1100000","0","0" +"846P-2CPI23D","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1183000","549527.69","315655.37" +"846P-2D38TRK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","500000","0","0" +"846P-2GATOR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","54000","0","0" +"846P-2MPACKR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","188000","0","0" +"846P-2PACKER","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","-151000","0","150647" +"846P-2RHRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","305000","0","0" +"846P-2SJRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","228000","0","0" +"846P-302HLUP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","584000","0","0" +"846P-310PICK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","132000","0","0" +"846P-311VOIP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","245000","0","0" +"846P-3CBRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","397000","0","0" +"846P-3CHRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","234000","0","0" +"846P-3D3HAUL","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","150000","0","0" +"846P-3HRPTSC","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","30000","100000","0" +"846P-3HUDCAM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","394650.18" +"846P-3JRRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","511000","0","0" +"846P-3MORJUM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-3PACKER","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","160000","0","0" +"846P-3RICWHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","225000","0","0" +"846P-6CC20VH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","77000","0.00","788824.63" +"846P-213ALPE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","842000","462327.2","46672.8" +"846P-2COFEPK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","255000","359072.66","685927.34" +"846P-2CPICWC","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","7835000","306534.97","530424.31" +"846P-2CPIHAT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","328000","0","0" +"846P-4ALYEQP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","138902.35" +"039LQWS-TEEN","QPL","Queens Borough Public Library","Fixed Asset","150000","0","0" +"846P-311TJEM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","14000","0.00","736644.81" +"846P-3BWTRAM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","20000","0.00","761787.51" +"846P-30AG05","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-3ASGRGN","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","27000","0","0" +"846P-3RITRLR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3000","0.00","2786762.13" +"846P-3TJRCUP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","425000","0","54000" +"846P-406CFRQ","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","962000","835304.79","126205.21" +"846P-407TELE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","96000","0","0" +"846P-412VEH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","112000","0","0" +"846P-4BQFLTR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","414000","0","0" +"846P-4DUMPTK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","6585.0","55428.5" +"846P-4GAT0R","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","54000","0","0" +"846P-4GATOR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","36000","0","0" +"846P-4MPACKR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","180000","0","0" +"846P-4QEQIP1","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","6000","0.0","140876.6" +"846P-4QEQIP2","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","168552" +"846P-4RHQFFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","350000","32300.00","9131.98" +"846P-4RWRCHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","466000","0","0" +"846P-4RWRFFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","900000","0","0" +"846P-4TRACTR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","57450.76" +"846P-4TRCTOR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","67000","0","0" +"846P-5DUMPTK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","357000","0","0" +"846P-5ENGI22","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","44000","36967.5","188132.5" +"846P-5GATOR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","162000","0","0" +"846P-5OBWIFI","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","361000","0","0" +"846P-5SIVCLE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","131000","0","37496" +"846P-600ZOO2","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","12000","0.00","657180.51" +"846P-6A93317","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","146000","0.00","9820452.90" +"846P-6A93318","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","192000","0.00","18417113.43" +"846P-6A93319","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","354000","816090.00","20714508.39" +"846P-6A93320","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1831000","6331993.22","16322012.96" +"846P-6A93321","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","9936000","947918.00","2415761.22" +"846P-6A93322","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1000000","0","0" +"846P-6A93323","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1000000","0","0" +"846P-6A93324","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","5538000","13007932.22","1306170.74" +"846P-6A93325","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","35000000","0","0" +"846P-6ADOB25","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","2568000","0.00","1074706.84" +"846P-6ARAEQP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","455000","210966.59","405083.9" +"846P-3RNDLOT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","4044302.07" +"846P-401SFFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","325000","0","0" +"846P-6COMP24","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3600000","276444.28","3288992" +"846P-6COMP9D","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","181483.54" +"846P-6CRRUTR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","196911.62" +"846P-6CW931C","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","667506.99" +"846P-6CW933C","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","49640.00","9126088.28" +"846P-6CW950","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","2562.00","2752130.00" +"846P-6CWBKUP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6CWEQIT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","50067000","0","0" +"846P-6CWRDIO","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","681000","0.00","4189957.50" +"846P-6CWROOF","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","92888.91" +"846P-6CWSRVR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6CWSSPE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","1.00","2284220.85" +"846P-6CWSWCH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6CWTEL1","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","389000","772065.74","566934.26" +"846P-6CWVHPP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","155000","0","0" +"846P-6DPRLMS","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","265098" +"846P-6DTF22A","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6DTF22J","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6ELCV21","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","586000","0","0" +"846P-6FORSTV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","631000","0.00","5698549.22" +"846P-6FORTEC","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","183319.88","3129864.55" +"846P-6GTGRDN","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6GTVCL1","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","60000","0.00","159646.65" +"846P-6LTOP25","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1200000","3202.41","1087299.32" +"846P-6MARI25","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","896000","896000","0" +"846P-6STFMAT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","333000","0.00","615483.69" +"846P-6SWITCH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","104000","1548205.38","1647436.49" +"846P-6TBLU24","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","990000","0.00","930907.59" +"846P-6TDUCTS","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","752000","0","0" +"846P-6TRFMAT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","200000","0","0" +"846P-6TRFOMS","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1000","408206","0" +"846P-6TRPRMT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846P-6UPSY22","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1185000","415704.00","1168308.20" +"846P-6VHCC25","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1167000","0","0" +"846P-6VHCL22","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","304000","0","0" +"846P-6VOIP01","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","361000","54358.29","2664939.76" +"846SEED-LPCG","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","586000","0","0" +"850AGBAYVEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","0","100000" +"850AGDNYCCX","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850AGDSUNNY2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","170928","0" +"850AGHHBELL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","400000","0","0" +"850AGIPRH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","180000","0","0" +"850AGMBDXVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","121000","0","0" +"850AGMETRUCK","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","180000","180000","0" +"850AGNHH184","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","311930" +"846P-6PDFTEL","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","30000","20046.55","543953.45" +"846P-6ELVH23","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","75000","0","0" +"850AGQNINDIA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850AGSUNWIFI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","200000","0","0" +"850AGVISVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","62000","0","0" +"850ALLENVEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","221000","0","0" +"850BBJMVE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","650000","449202","100798" +"850RISEBOROV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","295000","273098","0" +"850BED-778","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","30000","846392.00","19087619.22" +"850BED-803","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3145000","578521.89","2485749.02" +"850BED829","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","71899000","2973.28","2026.72" +"850B&GCLUBML","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","56000","0","0" +"850CLAIMS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","4396665.21" +"850CSDNNCC63","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","125000","0","0" +"850DNFLATAMB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","285000","0","0" +"850DNQNAMB1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","600000","0","0" +"850EDDNSNA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","66165" +"850EDDNSNALL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850EDKNSUNYT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","547000","0","0" +"850EDMNGROWN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850EDNSBH378","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","6000","0","284381" +"850EDQNFBNYC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850ENGINSP6","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","39146.00","921714.94" +"850ENGINSP7","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000000","1397663.16","102336.84" +"850FOODBANK4","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850GLOBALKID","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","209000","0","0" +"850GRLGNDEQT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","71324.57" +"850HD-161E","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","8679000","14559189.49","33876098.37" +"850HDDNBGCH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HED595","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","9994000","0","0" +"850HED600","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","691000","937920.57","110000" +"850HHDNPRVEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","211000","0","0" +"850HL82ACTEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HL82BETH2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1557000","819889","0" +"850C114RMSC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","10516.56","153579378.98" +"850HL82NYUNI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","1788275" +"850HL82PPNYC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","386910" +"850HLBDMHC11","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLD810HSS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","630000","435337","0" +"850HLDBARNMU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDGAMCAM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","951000","0","0" +"850HLDNAIDHM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","225000","0","0" +"850HLDNBARNS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","549000","0","0" +"850HLDNBDHMC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNBDHME","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","327000","0","0" +"850HLDNBHFLU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNBROOB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850HLDNBROOD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","102000","0","0" +"850HLDNBROOT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850HLDNCHAI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","61353" +"850HLDNCHCIO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","400000","0","0" +"850HLDNCHLI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","35000","0","75725" +"850HLDNCHNTW","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","0","0" +"850HLDNCOMHE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000000","0","0" +"850HLDNCOMR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000000","0","0" +"850HLDNDIAGN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1060000","0","0" +"850HLDNEPISC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","369000","0","0" +"850HLDNFLOAH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","227000","227000","0" +"850HLDNFLOGO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","89000","0","0" +"850HLDNHASCV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","534000","0","0" +"850HLDNHATZ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","300000","0","0" +"850HLDNJAMBI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","0","0" +"850HLDNJHCTS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2400000","0","0" +"850HLDNKNJMC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNLIJMC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNLREFU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","670000","0","0" +"850HLDNMAIAM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","315000","0","312985" +"850HLDNMAIBI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1950000","0","0" +"850HLDNMAIMA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","188000","188000","0" +"850HLDNMAIME","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2400000","1355967","0" +"850HLDNMAIMM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1467000","0","0" +"850HLDNMAIMN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","770942" +"850HLDNMAIMP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","50000","0","0" +"850HLDNMAIVP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0","1023330" +"850HLDNMAM11","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMAM20","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","376585" +"850HLDNMAMOR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","409000","260702","0" +"850HLDNMAMRI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMCSCN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMPRES","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMSHQ3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","451000","0","0" +"850HLDNNYCHB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","688000","0","0" +"850HLDNNYHOS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","24000","326168","0" +"850HLDNNYPHS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","135000","0","0" +"850HLDNNYSTE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","519000","0","0" +"850HLDNPJRNW","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","246000","0","0" +"850HLDNPREBM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNPREM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","798000","0","0" +"850HLDNQCCT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","900000","900000","0" +"850HLDNRENEW","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","206000","306000","0" +"850HLDNRICHE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1212000","0","0" +"850HLDNRICHR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3916000","0","0" +"850HLDNSHOSP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNSIUCB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","125000","0","0" +"850HLDNSMARC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","272150" +"850HLDNSTAR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","418000","0","0" +"850HLDNSTATU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","349156" +"850HLDNSTEM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","50000","0","0" +"850HLDNSTMAR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","299000","0","0" +"850HLDNTRANT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","35978" +"850HLDNWBCON","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","450000","0","0" +"850HLDNYPRES","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLHATZBK","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1100000","0","0" +"850HLHATZQNS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","0","0" +"850HLKNAREDC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","37050" +"850HLKNBMCAM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","339000","313958","0" +"850HLKNCOMHN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850HLKNHATZ1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","275000","0","0" +"850HLKNHATZ2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","300000","0","0" +"850HLKNMAIM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","150000","146337","0" +"850HLKNPEDEQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","436000","0","0" +"850HLKNSTAR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","218465" +"850HLKNYPRES","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLMNAFCVP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","138000","0","0" +"850HLMNALI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","101000","0","0" +"850HLMNCCHP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2000","51473","0" +"850HLMNHATAM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850HLMNYLNGN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1070000","1068725","0" +"850HLMONTIEF","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","950000","0","0" +"850HLQNCHNEF","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","700000","0","0" +"850HLQNEPIBE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","741000","262976","0" +"850HLQNFHGHS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","115000","115000","0" +"850HLQNFLOAT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","51837" +"850HLQNJHMRI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3604000","0","0" +"850HLQNJHMS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","488000","0","0" +"850HLQNJMCLI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLQNLIJMC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLQNLISQU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLQNYPRES","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLQNYPRSB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","914000","0","0" +"850HLRDNSIH2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLRNRICH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1900000","0","0" +"850HLRNSIUCP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","200000","0","0" +"850HLRNSIUHE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","197000","0","0" +"850HLRNSIUSS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","153000","0","0" +"850HLSIUH3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLSIUHFAX","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","295000","0","0" +"850HLSIUHURO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","0","0" +"850HLSIUHVEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLSIUNHO4","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000000","0","0" +"850HLSIUNHO5","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","436000","0","0" +"850HLSIUNHO6","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","263000","0","0" +"850HLXDNBRNA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","97135","0" +"850HLXNBARNC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","400000","0","0" +"850HLXNBCHS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4000","0.00","1208136.24" +"850HLXNFIORE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","141000","0","0" +"850HLXNMHHCI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","103000","0","0" +"850HLXNMMCCT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1072000","0","0" +"850HLXNSTBHU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","42000","97135","0" +"850HLXNSTBME","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","8000","186464","0" +"850HLXNSTBRN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","981237","0" +"850HRCNMART","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","117000","0","0" +"850HRCSTEM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","63000","0","0" +"856PWCNCB009","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","62000","0","0" +"850HRCSTEM1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","0","0" +"850HRDN01J","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","50000" +"850HRDN02H","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRDN02V","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0","62099" +"850HRDN06CAC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRDN11WAV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRDN17VAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRDN62HUC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRDNCFUCS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","40000","0","39925" +"850HRDNCITYY","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","77073" +"850HRDNGALL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","55000","0","0" +"850HRDNMUNA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","150000","0","0" +"850HRDNNYCOP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3000","0.00","75619.64" +"850HRDNPTRUC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","107130","0" +"850HRDNQSACA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRDNSTRIV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","202057","0" +"850HRDNUA3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","167000","0","0" +"850HRDNWSIDE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","218045" +"850HRKCHBK","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","207000","0","0" +"850HRKN01J2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","183000","0","0" +"850HRKNCPVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0","98586" +"850HRKNMANUP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRKNUA3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","153000","0","0" +"850HRMN567","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","50000","0","0" +"850HRMNCOMM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","77393","0" +"850HRMNCOMN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","75000","73925","0" +"850HRMNGLWD1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","140000","0","0" +"850HRMNHENIT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","167000","0","0" +"850HRMNSTEM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","187000","0","0" +"850HRQN02V","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","5000","0","82535" +"850HRQN756A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRQNCIHA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","6000","0","346000" +"850HRQNQSACN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HRQNUJCV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","79000","0","0" +"850HRXCOMMON","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","88427" +"850HRXNCOMV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","77393","0" +"850HRXNCOMV2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","239000","199003","0" +"850HRXNGLWD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","47170" +"850HRXNVIP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850HRXQSACC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HWFIPSURV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HWPR19KC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","798000","5383900.38","14509833.89" +"850HWPR19MC1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1854000","22021375.69","6512787.05" +"850HWPR19MC2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","806000","8717229.12","9670298.77" +"850HWPR19MXC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1018000","34159500.04","3114345.61" +"850HWPR19QRC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","860000","3681358.30","7859386.25" +"850HWQ631B-3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1284000","0.00","25402.39" +"850JCCABX","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","82000","0","0" +"850JEWLICAR1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","350000","0","0" +"850JEWLIEQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","300000","0","0" +"850MED678","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3426000","1594184.45","6334760.40" +"850NEWMOBIL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","182000","180910","0" +"850NSCCSTOR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","282000","0","0" +"850OSBORNEQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850P-303ERP4","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2208000","0","0" +"850P-303ERPR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4016000","882889.70","335268.06" +"850P-3CCVE16","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","154592" +"850PV091-CJH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.0","483984.8" +"850PV205-VH2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","400823.32" +"850PV694-EQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","96327.25" +"850PW20RAIN2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PW20RAINV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PW311390I","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","1000000","0" +"850PW311390J","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","1000000","0" +"850PW311390K","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","901398.77","98601.23" +"850PW311S14B","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","2479970.38" +"850PW311S17A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","7742912.00" +"850PW311S20A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","12181000","5890989.35","2647150.65" +"850LN21LBHVA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","13995000","1400442.56","426889.97" +"850PW311S24A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","6250000","0","0" +"850PW67PCCVP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PW9LGBT2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PW9NYU02","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PW9SH02V","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","35149" +"850PWD9TECH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWDBIOTR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWDGMEN1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","195000","0","0" +"850PWDGUILD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","125000","0","0" +"850PWDHENRYT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","145000","0","0" +"850PWDHORVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","62000","0","0" +"850PWDMSCIST","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","300000","300000","0" +"850PWDN03FHH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","96000","0","0" +"850PWDN13PHO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","107327" +"850PWDN79VAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","110000","110000","0" +"850PWDNACEPH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","75815" +"850PWDNBOARD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","176845" +"850PWDNDFUND","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","53625" +"850PWDNDRGAB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4000","0","110538" +"850PWDNE163C","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWDNFORTU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","84281" +"850PWDNHARLM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","243902" +"850PWDNHHS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","95000","0","0" +"850PWDNHRLEM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","88169","0" +"850PWDNIDBA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","39024" +"850PWDNMJBFC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","216000","0","175610" +"850PWDNPRSCH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","233000","72079","0" +"850PWDNROCKK","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","83902" +"850PWDNSAFEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","214147.48" +"850PWDNSAFFE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","166580.73" +"850PWDNSQUED","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","79507","0" +"850PW77DDCAC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1129000","454728.34","2405301.86" +"850PWCOMPDAT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","164253.96","590327.78" +"850PWDNTOUR1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","143000","0","0" +"850PWDNTOUR3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","95000","95000","0" +"850PWDNTOURO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","390000","0","0" +"850PWDNTPBIB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","372906" +"850PWDNUBP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.0","42011.5" +"850PWDNURBGN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0","68539" +"850PWDNVIDE1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","749000","0","0" +"850PWDNVIDEO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","9000","748358","0" +"850PWDNWORKS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2000","0.00","41663.41" +"850PWDOHELEQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","324000","0","0" +"850PWDOHELOJ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","355000","0","0" +"850PWDOHELVH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","415165" +"850PWDOUTLAB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWDTOURPT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","55000","0","0" +"850PWDTOWN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","123939.28" +"850PWDUSAVEH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","240000","223328","0" +"850PWKDEFE2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWKNDIGRL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","225000","0","0" +"850PWKNGRLAV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","284000","0","0" +"850PWKNGSSI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","169756" +"850PWKNHIAMB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","271805" +"850PWKNJBFC1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","53000","0","0" +"850PWKNMNYHF","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0","50775" +"850PWKNNYUN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWKNOCHF","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","150252" +"850PWKNSCHOL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","48216" +"850PWMBIOSEQ","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","99000","0","0" +"850PWMLGCOM1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWMLGCOM2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWMNACEV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","50000","50000","0" +"850PWMNBIOBS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","464000","0","0" +"850PWMNGOSOI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","133000","0","0" +"850PWMNHRTCU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0","55639" +"850PWMNTSDMA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWMNURISV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","36830" +"850PWMNURIV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","114000","0","0" +"850PWMSOLAR2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","68319" +"850PWQNACEV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","100000","0" +"850PWXEDTROL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","170468" +"850PWXNBIOML","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850PWXNURBRI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","150000","0","0" +"850PWXWHEDIT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","250000","0","0" +"850QCTHUBFIT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4600000","0","0" +"850ROADNYC2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850SE-812","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1562000","4220100.11","59230048.49" +"850SE877","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","81538000","2836892.93","449175.07" +"850SEK002384","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","28358000","200398.32","812492.86" +"850SEN002183","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","14292000","0","0" +"850SEQ200613","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","20078000","0","0" +"850YDCEQUPMT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","206000","0","0" +"850YOCVIECLE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","108000","108000","0" +"85634202601","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","2700000","0","0" +"856ACEDOE211","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","2835000","3218765","1642707" +"856ACEDOE213","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856ACEDOT221","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856ACEDPR704","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856ACEHRA211","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856ACENPL222","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856AGHVACRM","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","50000","88314.03","472870.87" +"856E13-0002","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","-378000","0.00","15783897.89" +"856E21-0001","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","8000","282132.3","0" +"856E21-0002","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1400000","11306144.51","3832888.51" +"856EO26-0027","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","35000","120208.28","345151.72" +"856EO26-0066","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","20000","263617.48","0" +"856EO26-0084","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","8000","110381","0" +"856EO26-0085","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","10000","123004","0" +"856HWKF2514","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","516000","1968360.47","12516018.1" +"856PW300FUE2","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1342000","1272033","6981" +"856PW308DOR1","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PW308FSV","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","168000","0","0" +"856PW308OEM1","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","9110000","0.00","4083344.90" +"856PW308TLC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","65000","0","0" +"856PW308VH21","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","616000","0","0" +"856PW324BIC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","75000","0","0" +"856PW324CC24","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","179000","0.00","401901.65" +"856PW324CHAR","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","33000","0.00","14303425.20" +"856PW324EEO","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","157000","3148054.00","4480748.01" +"856PW324IS24","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0.00","2362555.41" +"856PW324IS25","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","500000","0.65","1710067.99" +"856PW324IVR3","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","862000","725601","0" +"856PW324MAIN","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","13418000","0","0" +"856PW324NI20","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","287000","0.00","837485.32" +"856PW324NI24","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1034000","198210.55","2453119.71" +"856PW324OMIS","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1044000","0.00","798331.44" +"856PW324QBH","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","65000","1840.00","407439.48" +"856PW326MRA","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","179000","0","230569" +"856PW340MODS","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","195000","0","0" +"856PW7780CEN","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","104000","0","0" +"856PW77BXDAC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","17000","0.00","1133879.76" +"856PW77CCEX","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","2854000","132100","167900" +"856PW77CHA03","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PW77CTCX","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","371000","0","0" +"856PW77DOPRD","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","2387000","2058476","0" +"856PW77MBAC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","118000","0","0" +"856PW77NG911","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","527000","374.54","4391857.95" +"856PW77NYCAP","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","6690000","3747940.40","69167.32" +"856PW77OEMAC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","500000","0","0" +"856PW77RADIO","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","532000","7600.1","2816177.9" +"856PW77SC14","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","395000","48477.33","1522.67" +"856PW77SC22R","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","52506.71","40627.29" +"856PW77SC280","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1750000","1283452.09","90731.76" +"856PW77SC2C","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","60466.15","39657.85" +"856PW77VEH23","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1557000","1487001.81","9476394.50" +"856PW77VEH25","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","6250000","1544800","0" +"856PW77WSHP","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","5769000","0","0" +"856PWBXDHVAC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","1886000","7095952.92","574047.08" +"856PWCNCB001","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","62000","0","0" +"856PWCNCB002","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","62000","0","0" +"856PWCNCB003","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","62000","0","0" +"856PWCNCB006","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","62000","0","0" +"856PWCOMP14","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","217326.90","5734204.88" +"856PWCOMPD12","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","4416000","3830225.00","71090.63" +"856PWCOMPDA2","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWD05DAHV","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","479000","0","0" +"856PWD308CB9","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","25000","0.00","74974.41" +"856PWDCOHNY","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWDN984AC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","58000","0","0" +"856PWDNBHSU","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWDNVCAL","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWDNVCALA","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWDNVCALP","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"856PWDORIS","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","12940000","0","0" +"856PWFISAOPA","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","46000","120.46","941957.33" +"856PWMOCSIT1","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","684000","0","0" +"856PWQ77ASEC","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","250000","0","0" +"856PWQ77COM3","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","2000000","0","0" +"856PWQ77COMP","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","3000","0.00","1004091.27" +"856PWQ77VAN","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","80000","0","0" +"856PWSTORCCT","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","550000","407436.74","0" +"856PWXDOVE","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","125000","0","0" +"856PWXNSCHOL","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","0","0","0" +"858COLOCATIO","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","11002000","0","0" +"858DOIT131T2","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","7300000","0","0" +"858DOIT1COLO","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","3388000","0","0" +"858DOIT1DCEX","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","3398000","0","0" +"858DOIT1LDAP","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","2000000","0","0" +"858DOIT1LEGL","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","3905000","3746698.01","0" +"858DOIT2CASB","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","10165000","370009.5","6667138" +"858DOIT2DCLA","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","2250000","72.02","4804119.81" +"858DOIT2FDTN","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","-92000","1652846.00","78108317.64" +"858DOIT3CCEW","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","0","0.00","2756363.86" +"858DOIT3CNPU","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","0","0","0" +"858DOIT3CNU3","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1173000","2133455.50","5801419.54" +"858DOIT3FWLL","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","968000","128793.32","4516196.03" +"858DOIT3MYCC","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","2951000","860298.78","8793001.28" +"858DOIT3MYCQ","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1500000","0","0" +"858DOIT3MYCR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","0","0","0" +"858DOIT3MYCW","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","306000","31464.00","618535.52" +"858DOIT3REMA","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","6000000","0","0" +"858DOIT4WINU","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","0","0.00","1341320.14" +"858DOIT5311E","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","10423000","5615463.70","696674.15" +"858DOIT5BP34","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","300000","292500","5890520" +"858DOIT5MDMS","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","4232000","0.00","4231481.59" +"858DOIT5MOME","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","869000","0.00","726912.72" +"858DOIT5MSME","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1232000","1407752.93","8388332.23" +"858DOIT5MVTS","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1014000","1014463.8","0" +"858DOIT5MYCC","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","504000","7726202.71","2243091.08" +"858DOIT5MYSM","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","3984000","2995528.14","1315105.86" +"858DOIT5NPSU","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","2187000","0.0","1936127.2" +"858DOIT5NYCG","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","887000","339823.91","2602087.69" +"858DOIT6CMS2","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","3143000","3142861.66","0" +"858DOIT6CMSR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","8810000","0.00","8810335.14" +"858DOIT6CWME","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","0","0","0" +"858DOIT6DAPM","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","12755000","0.00","10425344.19" +"858DOIT6DPSR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","10000000","0","0" +"858DOIT6EASR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","7000000","0","0" +"858DOIT6EOLN","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","3962000","3069109.6","0" +"858DOIT6MDSU","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","500000","0","0" +"858DOIT6MYCC","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","7600000","0","0" +"858DOIT6PAM3","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1015000","0","0" +"858DOIT6SFTR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1117000","0.00","1116805.35" +"858DOIT6SVCN","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","7700000","0","0" +"858DOIT6WEBR","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","4664000","0","0" +"858DOIT6XYZS","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","6750000","0.00","6536841.96" +"858DOITECTP","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","46783000","0","0" +"858DVSMIGRAT","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","150000","0.00","35278.62" +"858PW326MT01","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","1236000","137289.52","28334355.75" +"858PW326MT02","OTI","Office of Technology and Innovation","ITT, Vehicles, and Equipment","667000","5.89","809631.07" +"998MTABC01","NYCTA","Transit Authority","ITT, Vehicles, and Equipment","716000","293598.20","69529317.38" +"998MTABC02","NYCTA","Transit Authority","ITT, Vehicles, and Equipment","64613000","6009804.05","51272866.46" +"998SEED-CANO","NYCTA","Transit Authority","ITT, Vehicles, and Equipment","5000000","0","0" +"035L21EXENNS","NYRL","New York Research Libraries","Lump Sum","0","0","0" +"035L21JANNNS","NYRL","New York Research Libraries","Lump Sum","0","0","0" +"035L22EXENNS","NYRL","New York Research Libraries","Lump Sum","0","0","0" +"035L22JANNNS","NYRL","New York Research Libraries","Lump Sum","0","0","0" +"035L25JANNNS","NYRL","New York Research Libraries","Lump Sum","0","0","0" +"035L26EXENNS","NYRL","New York Research Libraries","Lump Sum","0","0","0" +"037LN18SYSWI","NYPL","New York Public Library","Lump Sum","0","0","0" +"037LN21EXENN","NYPL","New York Public Library","Lump Sum","0","0","0" +"037LN22EXENN","NYPL","New York Public Library","Lump Sum","0","0","0" +"037LN22JANNN","NYPL","New York Public Library","Lump Sum","0","0","0" +"037LN25JANNN","NYPL","New York Public Library","Lump Sum","0","0","0" +"037LN26EXENN","NYPL","New York Public Library","Lump Sum","0","0","0" +"037LNCOUNCIL","NYPL","New York Public Library","Lump Sum","28695000","0","0" +"038LBEM05SWR","BPL","Brooklyn Public Library","Lump Sum","0","0","0" +"038LBP18PCAD","BPL","Brooklyn Public Library","Lump Sum","0","0","0" +"039LQ122-GEN","QPL","Queens Borough Public Library","Lump Sum","25759000","0","0" +"039LQBP-XCES","QPL","Queens Borough Public Library","Lump Sum","308000","0","0" +"039LQCA20C19","QPL","Queens Borough Public Library","Lump Sum","211000","0","0" +"039LQCC-XCES","QPL","Queens Borough Public Library","Lump Sum","4467000","0","0" +"039LQCEL-AUD","QPL","Queens Borough Public Library","Lump Sum","7000000","0","0" +"039LQFLSVELV","QPL","Queens Borough Public Library","Lump Sum","3000000","0","0" +"039LQRECONS","QPL","Queens Borough Public Library","Lump Sum","0","0","0" +"040AIMS","DOE","Department of Education","Lump Sum","2196000","0","538455" +"040EARLY_LRN","DOE","Department of Education","Lump Sum","18607000","0","0" +"040ELECTRI24","DOE","Department of Education","Lump Sum","1272476000","548782862","40050100" +"040ELP_370NL","DOE","Department of Education","Lump Sum","472000","417500","0" +"040SCA26","DOE","Department of Education","Lump Sum","4621178000","1534114314","97399013" +"040SCA27","DOE","Department of Education","Lump Sum","3996001000","0","0" +"040SCA28","DOE","Department of Education","Lump Sum","3717540000","0","0" +"040SCA29","DOE","Department of Education","Lump Sum","3033510000","0","0" +"040SCA30","DOE","Department of Education","Lump Sum","1288891000","0","0" +"040SCA31","DOE","Department of Education","Lump Sum","1297175000","0","0" +"040SCA32","DOE","Department of Education","Lump Sum","1329062000","0","0" +"040SCA33","DOE","Department of Education","Lump Sum","1371503000","0","0" +"040SCA34","DOE","Department of Education","Lump Sum","1416763000","0","0" +"040SCA35","DOE","Department of Education","Lump Sum","1463516000","0","0" +"042BA001-024","CUNY","City University of New York","Lump Sum","235000","0","0" +"042BA002-026","CUNY","City University of New York","Lump Sum","500000","0","0" +"042CA002-001","CUNY","City University of New York","Lump Sum","2000","0","0" +"042CA002-023","CUNY","City University of New York","Lump Sum","0","0","0" +"042CA003-021","CUNY","City University of New York","Lump Sum","0","0","0" +"042CA008-022","CUNY","City University of New York","Lump Sum","989000","0","0" +"042CA092-024","CUNY","City University of New York","Lump Sum","0","0","0" +"042CA202-006","CUNY","City University of New York","Lump Sum","3000","0.00","714031.88" +"042CA203-006","CUNY","City University of New York","Lump Sum","1597000","0","0" +"042CC045-019","CUNY","City University of New York","Lump Sum","1200000","0","0" +"042CC048-020","CUNY","City University of New York","Lump Sum","2000000","0","0" +"042HC003-025","CUNY","City University of New York","Lump Sum","200000","0","0" +"042HU002-022","CUNY","City University of New York","Lump Sum","4000000","0","0" +"042HU002-026","CUNY","City University of New York","Lump Sum","1600000","0","0" +"042HU003-021","CUNY","City University of New York","Lump Sum","4000000","0","0" +"042HU039-018","CUNY","City University of New York","Lump Sum","3500000","0","0" +"042HU043-020","CUNY","City University of New York","Lump Sum","4000000","0","0" +"042KG030-012","CUNY","City University of New York","Lump Sum","221000","28740.84","3782251.43" +"042LM035-018","CUNY","City University of New York","Lump Sum","0","0","0" +"042MC001-025","CUNY","City University of New York","Lump Sum","350000","0","0" +"042ME001-024","CUNY","City University of New York","Lump Sum","4500000","0","0" +"042ME001-026","CUNY","City University of New York","Lump Sum","4500000","0","0" +"042ME002-025","CUNY","City University of New York","Lump Sum","2500000","0","0" +"042ME042-019","CUNY","City University of New York","Lump Sum","2250000","0","0" +"042OSW01BY25","CUNY","City University of New York","Lump Sum","210000","209387","0" +"042QB001-025","CUNY","City University of New York","Lump Sum","290000","0","0" +"042QC001-024","CUNY","City University of New York","Lump Sum","0","0","0" +"042QC006-022","CUNY","City University of New York","Lump Sum","1150000","0","0" +"042QC075-020","CUNY","City University of New York","Lump Sum","1000000","0","0" +"056PO79-ADA","NYPD","Police Department","Lump Sum","27063000","2922254.89","1105720.34" +"056PO79-ADA2","NYPD","Police Department","Lump Sum","31852000","0","0" +"056PO79BMAJQ","NYPD","Police Department","Lump Sum","8661000","0","0" +"056PO79BMAKG","NYPD","Police Department","Lump Sum","2756000","0","0" +"056PO79CWAC","NYPD","Police Department","Lump Sum","15335000","3183570","1984231" +"056SANDCD3","NYPD","Police Department","Lump Sum","300000","41117.90","118999.20" +"056SANDCD7","NYPD","Police Department","Lump Sum","777000","48468.62","157847.00" +"057F175EMS7C","FDNY","Fire Department","Lump Sum","500000","0","0" +"057F175-FAC","FDNY","Fire Department","Lump Sum","0","0","0" +"057F175FHRN2","FDNY","Fire Department","Lump Sum","0","0","0" +"057F175FSR15","FDNY","Fire Department","Lump Sum","107000","0","0" +"057F175WS270","FDNY","Fire Department","Lump Sum","103000","102750.78","0" +"057F204FTREN","FDNY","Fire Department","Lump Sum","0","0","0" +"057F204INFRC","FDNY","Fire Department","Lump Sum","12000","77587.79","35736.96" +"057FK175BFIF","FDNY","Fire Department","Lump Sum","300000","0","0" +"057FKBFISYSM","FDNY","Fire Department","Lump Sum","150000","0","0" +"068APPMOD","ACS","Administration for Children's Services","Lump Sum","0","0","0" +"068AUDITDILI","ACS","Administration for Children's Services","Lump Sum","2860000","0","0" +"068CAPC","ACS","Administration for Children's Services","Lump Sum","100000","0","0" +"068SERVENOW","ACS","Administration for Children's Services","Lump Sum","2396000","0","0" +"071HH105CIDA","DHS","Department of Homeless Services","Lump Sum","500000","0","0" +"071HH105EAMA","DHS","Department of Homeless Services","Lump Sum","4256000","0","0" +"071HH112KNUG","DHS","Department of Homeless Services","Lump Sum","20329000","0","0" +"071HRCN100VA","DHS","Department of Homeless Services","Lump Sum","908000","0","0" +"071PWNC059","DHS","Department of Homeless Services","Lump Sum","59000","0","0" +"072C117IAM","DOC","Department of Correction","Lump Sum","1514000","0","0" +"072C117INVST","DOC","Department of Correction","Lump Sum","0","5670459.00","7499335.12" +"072C117PRSVC","DOC","Department of Correction","Lump Sum","1000","381242.75","131241.25" +"072C117WORKF","DOC","Department of Correction","Lump Sum","0","0","0" +"072C75ADACOM","DOC","Department of Correction","Lump Sum","0","0","0" +"072C75ADACVT","DOC","Department of Correction","Lump Sum","0","81208.47","1161537.98" +"072C75ADAGRV","DOC","Department of Correction","Lump Sum","0","0.00","409486.71" +"072C75ADARMS","DOC","Department of Correction","Lump Sum","0","274451.04","93418.72" +"072C-75MISC","DOC","Department of Correction","Lump Sum","52500000","0.00","480241.14" +"072C75PMBBJ","DOC","Department of Correction","Lump Sum","0","0","0" +"072C75SUPFC","DOC","Department of Correction","Lump Sum","200000","0","0" +"096HR120IDAM","HRA","Human Resources Administration","Lump Sum","583000","0","0" +"096HR120IDN3","HRA","Human Resources Administration","Lump Sum","2881000","857663.8","0" +"096HR120IVSS","HRA","Human Resources Administration","Lump Sum","289000","410519.94","2405516.19" +"096HR120OLAW","HRA","Human Resources Administration","Lump Sum","360000","0.0","481750.0" +"096HR120SNOW","HRA","Human Resources Administration","Lump Sum","1301000","0","0" +"096HR120WFDC","HRA","Human Resources Administration","Lump Sum","995000","0","0" +"096HR25VAND","HRA","Human Resources Administration","Lump Sum","2001000","0","0" +"096HRD1WSE","HRA","Human Resources Administration","Lump Sum","4145000","0","0" +"096HRDMIXTEC","HRA","Human Resources Administration","Lump Sum","677000","0","0" +"096HRDN1WOR","HRA","Human Resources Administration","Lump Sum","500000","0","0" +"096HRDNCOPF","HRA","Human Resources Administration","Lump Sum","1480000","0","0" +"096HRDNNYIC","HRA","Human Resources Administration","Lump Sum","3250000","0","0" +"096HRDNRGFL","HRA","Human Resources Administration","Lump Sum","1000000","0","0" +"096HRDNRISE","HRA","Human Resources Administration","Lump Sum","500000","0","0" +"096HRKNMIXA","HRA","Human Resources Administration","Lump Sum","1900000","0","0" +"096HRKNONEWC","HRA","Human Resources Administration","Lump Sum","4000000","0","0" +"096HRKNRISEW","HRA","Human Resources Administration","Lump Sum","1000000","0","0" +"096HRMIXCS","HRA","Human Resources Administration","Lump Sum","1200000","0","0" +"096HRMNNYICP","HRA","Human Resources Administration","Lump Sum","0","0","0" +"096JJASS","HRA","Human Resources Administration","Lump Sum","0","0.00","1338393.27" +"111CITY3NGE1","UK","Unknown","Lump Sum","0","603170.60","6250921.84" +"111CITY3NGE2","UK","Unknown","Lump Sum","-132000","59256.53","6151895.88" +"111DCP4CSCLM","UK","Unknown","Lump Sum","4076000","0","0" +"111DCP5GEOS","UK","Unknown","Lump Sum","11137000","0","0" +"111DCP5GSM1","UK","Unknown","Lump Sum","0","0","0" +"111DDC1MNGMT","UK","Unknown","Lump Sum","4000000","0","0" +"111DOF4WRKDY","UK","Unknown","Lump Sum","688000","2831890.61","2394416.39" +"111DOIT5MWBE","UK","Unknown","Lump Sum","316000","97728.94","954704.68" +"111MOCS9E2E","UK","Unknown","Lump Sum","0","0.00","10102754.40" +"111OATH3SEHD","UK","Unknown","Lump Sum","297000","440","98560" +"111OMB3CASMT","UK","Unknown","Lump Sum","56000","0.00","1174716.84" +"111PO163-CAC","UK","Unknown","Lump Sum","280000","0","0" +"111PO163ECMS","UK","Unknown","Lump Sum","0","0.09","5492499.91" +"111PO163-PKI","UK","Unknown","Lump Sum","1064000","0","0" +"111PO187-PH6","UK","Unknown","Lump Sum","726000","0","182122" +"111PO46-2","UK","Unknown","Lump Sum","0","0","0" +"125AGCAPISCU","DFTA","Department for the Aging","Lump Sum","6000000","0","0" +"125AGCPCHVAC","DFTA","Department for the Aging","Lump Sum","400000","0","0" +"125AGCPCKTCN","DFTA","Department for the Aging","Lump Sum","100000","0","0" +"125AGHOMECRT","DFTA","Department for the Aging","Lump Sum","2525000","0","0" +"125AGREDHOOK","DFTA","Department for the Aging","Lump Sum","1260000","0","0" +"126PV00492NY","DCLA","Department of Cultural Affairs","Lump Sum","10514000","0","0" +"126PV028HOLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV031-ADA","DCLA","Department of Cultural Affairs","Lump Sum","1738000","0","0" +"126PV04WUNDC","DCLA","Department of Cultural Affairs","Lump Sum","2500000","0","0" +"126PV067HLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV196HOLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV198HOLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV236-NSY","DCLA","Department of Cultural Affairs","Lump Sum","5900000","0","0" +"126PV262HOLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV263MOH5","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV429TFAN","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV467-ABP","DCLA","Department of Cultural Affairs","Lump Sum","5000","0","0" +"126PV467BKLN","DCLA","Department of Cultural Affairs","Lump Sum","1700000","0","0" +"126PV467-CC","DCLA","Department of Cultural Affairs","Lump Sum","19000","0","0" +"126PV467HOLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV467-MON","DCLA","Department of Cultural Affairs","Lump Sum","3548000","0","0" +"126PV467PCTS","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV471-HLD","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV490STMA","DCLA","Department of Cultural Affairs","Lump Sum","0","0","0" +"126PV501-LSI","DCLA","Department of Cultural Affairs","Lump Sum","1000000","0","0" +"801ACQFUND","SBS","Department of Small Business Services","Lump Sum","24190000","0","0" +"801BAYRIGCDC","SBS","Department of Small Business Services","Lump Sum","10000000","0","0" +"801BKBUREAU2","SBS","Department of Small Business Services","Lump Sum","1500000","0","0" +"801BNYB92MBE","BNY","Brooklyn Navy Yard","Lump Sum","300000","204208","0" +"801COMMCMS","SBS","Department of Small Business Services","Lump Sum","1000000","0","0" +"801CSSIBP2","SBS","Department of Small Business Services","Lump Sum","24500000","0","0" +"801DF520GATE","SBS","Department of Small Business Services","Lump Sum","1128000","0","0" +"801EDCDOT","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801EDCDPR","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801EDCHPD","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801EDCLUMP","SBS","Department of Small Business Services","Lump Sum","11759000","0","0" +"801ENFOODHUB","SBS","Department of Small Business Services","Lump Sum","0","0","1450000" +"801ENYROOF","SBS","Department of Small Business Services","Lump Sum","0","0.00","252330.22" +"801GIF-RPI","SBS","Department of Small Business Services","Lump Sum","8400000","0","0" +"801GIF-SURGE","SBS","Department of Small Business Services","Lump Sum","4800000","0","0" +"801GRANDST80","SBS","Department of Small Business Services","Lump Sum","0","77469","3093263" +"801HEARTSHAR","SBS","Department of Small Business Services","Lump Sum","233000","0.00","974230.37" +"801HHCN014","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HLDNCOMPJ","SBS","Department of Small Business Services","Lump Sum","749000","0","0" +"801HLDNCWCHC","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HLKNBWNSV","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HLQNWANG","SBS","Department of Small Business Services","Lump Sum","100000","0","5046000" +"801HOMCOMSER","SBS","Department of Small Business Services","Lump Sum","2525000","0","0" +"801HPFORWARD","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HRDN01JB","SBS","Department of Small Business Services","Lump Sum","644000","0","6645690" +"801FSHELTER","SBS","Department of Small Business Services","Lump Sum","0","0.00","70173.21" +"801HRDN482","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HRMIXTECA","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HRQNHANAC","SBS","Department of Small Business Services","Lump Sum","1430000","0","0" +"801HRQNKAFC","SBS","Department of Small Business Services","Lump Sum","2403000","0","0" +"801HUNTSPTR2","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801HWQ1209","SBS","Department of Small Business Services","Lump Sum","21504000","733406.53","3025164.47" +"801INDUSFUND","SBS","Department of Small Business Services","Lump Sum","5400000","0","0" +"801INFNEIG-H","SBS","Department of Small Business Services","Lump Sum","63647000","0","0" +"801INFRAHOUS","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801INFRANEIG","SBS","Department of Small Business Services","Lump Sum","11341000","0","0" +"801INFRASEED","SBS","Department of Small Business Services","Lump Sum","5000","0","0" +"801JDCCOACQ","SBS","Department of Small Business Services","Lump Sum","1325000","0","0" +"801KCSCOMCTR","SBS","Department of Small Business Services","Lump Sum","4053000","0","0" +"801LAMARQUE2","SBS","Department of Small Business Services","Lump Sum","0","0.00","1497964.88" +"801LEGALSERV","SBS","Department of Small Business Services","Lump Sum","0","0","2519575" +"801MANHYOUTH","SBS","Department of Small Business Services","Lump Sum","1250000","0","0" +"801MANINDFUN","SBS","Department of Small Business Services","Lump Sum","500000","0","0" +"801MEKONGNYC","SBS","Department of Small Business Services","Lump Sum","600000","0","0" +"801NOSTRAND","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801NRELUMP","SBS","Department of Small Business Services","Lump Sum","387365000","0","0" +"801NYCFACCES","SBS","Department of Small Business Services","Lump Sum","1500000","0","0" +"801P-213SCR1","SBS","Department of Small Business Services","Lump Sum","5282000","4694789","0" +"801PIER1SEED","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801PIER42CNT","SBS","Department of Small Business Services","Lump Sum","10130000","9655053.15","34601129.42" +"801PROGDOMIN","SBS","Department of Small Business Services","Lump Sum","0","36474.03","707680.97" +"801PSG6-7","SBS","Department of Small Business Services","Lump Sum","53000","0.00","5414759.56" +"801PWD05GLC2","SBS","Department of Small Business Services","Lump Sum","0","0","4500460" +"801PWD5CFTH","SBS","Department of Small Business Services","Lump Sum","0","0.00","473292.43" +"801PWDCCCS","SBS","Department of Small Business Services","Lump Sum","0","0.00","808670.93" +"801PWDMEALS2","SBS","Department of Small Business Services","Lump Sum","8005000","0","0" +"801PWDNFSC","SBS","Department of Small Business Services","Lump Sum","688000","0","0" +"801PWDNWHEDC","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801PWHISPFED","SBS","Department of Small Business Services","Lump Sum","600000","0","0" +"801PWMNHISP","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801PWQNSAMFL","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801PWSDANNEX","SBS","Department of Small Business Services","Lump Sum","1000000","0","0" +"801RIVERFUND","SBS","Department of Small Business Services","Lump Sum","2872000","0","0" +"801ROOSEOPER","SBS","Department of Small Business Services","Lump Sum","144000","0","0" +"801SAND000","SBS","Department of Small Business Services","Lump Sum","0","2523813.54","26989319.46" +"801SAND1112","SBS","Department of Small Business Services","Lump Sum","0","169423.00","2036874.48" +"801SAND2601C","SBS","Department of Small Business Services","Lump Sum","240000","96866.99","7816944.73" +"801SAND2605","SBS","Department of Small Business Services","Lump Sum","67456000","8947039.01","691091094.38" +"801SANDBATTR","SBS","Department of Small Business Services","Lump Sum","26255000","58714355.94","115313677.54" +"801SANDEDCAM","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801SANDTWOBR","SBS","Department of Small Business Services","Lump Sum","2044000","1776202.31","25856752.69" +"801SASIANCON","SBS","Department of Small Business Services","Lump Sum","0","0","2362500" +"801SEED-JNP","SBS","Department of Small Business Services","Lump Sum","7000000","0","0" +"801SEEDPIER1","SBS","Department of Small Business Services","Lump Sum","8500000","0","0" +"801STEINWAYS","SBS","Department of Small Business Services","Lump Sum","874000","0","0" +"801TENANTIMP","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801TMOMFUND","SBS","Department of Small Business Services","Lump Sum","0","203014.00","483128.68" +"801WATERLUMP","SBS","Department of Small Business Services","Lump Sum","285899000","0","0" +"801WILLETS23","SBS","Department of Small Business Services","Lump Sum","100000","0","0" +"801WLPMCTPH4","SBS","Department of Small Business Services","Lump Sum","75713000","5455518.92","3966207.93" +"801WOOLWORTH","SBS","Department of Small Business Services","Lump Sum","679000","0","0" +"801YESHPSYCH","SBS","Department of Small Business Services","Lump Sum","1025000","0","0" +"801YMYWHADAN","SBS","Department of Small Business Services","Lump Sum","3603000","0","0" +"8067AVC22","HPD","Housing Preservation and Development","Lump Sum","29000","638266.9","3050122.1" +"8068ALC17","HPD","Housing Preservation and Development","Lump Sum","-147000","1120075.00","32182452.26" +"8068ALC26","HPD","Housing Preservation and Development","Lump Sum","91755000","8993132.87","60746040.13" +"8068ALC27","HPD","Housing Preservation and Development","Lump Sum","168231000","0","0" +"8068ALC28","HPD","Housing Preservation and Development","Lump Sum","170365000","0","0" +"8068ALC29","HPD","Housing Preservation and Development","Lump Sum","189700000","0","0" +"8068ALC32","HPD","Housing Preservation and Development","Lump Sum","121705000","0","0" +"8068ALC33","HPD","Housing Preservation and Development","Lump Sum","126422000","0","0" +"8068ALC34","HPD","Housing Preservation and Development","Lump Sum","130594000","0","0" +"8068ALC35","HPD","Housing Preservation and Development","Lump Sum","134903000","0","0" +"806ADU26","HPD","Housing Preservation and Development","Lump Sum","2727000","0","0" +"806ADU27","HPD","Housing Preservation and Development","Lump Sum","11825000","0","0" +"806ADU28","HPD","Housing Preservation and Development","Lump Sum","20921000","0","0" +"806ADU29","HPD","Housing Preservation and Development","Lump Sum","39018000","0","0" +"806ADU30","HPD","Housing Preservation and Development","Lump Sum","3120000","0","0" +"806ADU31","HPD","Housing Preservation and Development","Lump Sum","3226000","0","0" +"806ADU32","HPD","Housing Preservation and Development","Lump Sum","3336000","0","0" +"806ADU33","HPD","Housing Preservation and Development","Lump Sum","3450000","0","0" +"806ADU34","HPD","Housing Preservation and Development","Lump Sum","3557000","0","0" +"806ADU35","HPD","Housing Preservation and Development","Lump Sum","3688000","0","0" +"806ANCP20","HPD","Housing Preservation and Development","Lump Sum","4327000","0.00","24058630.66" +"806ANCP21","HPD","Housing Preservation and Development","Lump Sum","3162000","7085071.00","73191458.90" +"806ANCP23","HPD","Housing Preservation and Development","Lump Sum","5247000","5247829.00","30420590.97" +"806ANCP25","HPD","Housing Preservation and Development","Lump Sum","-1452000","0.00","70698706.83" +"806ANCP26","HPD","Housing Preservation and Development","Lump Sum","119329000","0","0" +"806ANCP27","HPD","Housing Preservation and Development","Lump Sum","67803000","0","0" +"806ANCP28","HPD","Housing Preservation and Development","Lump Sum","70435000","0","0" +"806ANCP29","HPD","Housing Preservation and Development","Lump Sum","73707000","0","0" +"806ANCP30","HPD","Housing Preservation and Development","Lump Sum","60897000","0","0" +"806ANCP31","HPD","Housing Preservation and Development","Lump Sum","58042000","0","0" +"806ANCP32","HPD","Housing Preservation and Development","Lump Sum","59753000","0","0" +"806ANCP33","HPD","Housing Preservation and Development","Lump Sum","69740000","0","0" +"806ANCP34","HPD","Housing Preservation and Development","Lump Sum","72041000","0","0" +"806ANCP35","HPD","Housing Preservation and Development","Lump Sum","74419000","0","0" +"806BASEMENTS","HPD","Housing Preservation and Development","Lump Sum","1520000","0","120000" +"806BCARLTAVE","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806BJOENYCCO","HPD","Housing Preservation and Development","Lump Sum","600000","0","0" +"806BKSOLAR","HPD","Housing Preservation and Development","Lump Sum","1119000","0","880520" +"806BNEWDESTI","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806BPRATTACC","HPD","Housing Preservation and Development","Lump Sum","200000","0","0" +"806BRISECOMP","HPD","Housing Preservation and Development","Lump Sum","4000000","0","0" +"806CARROLL","HPD","Housing Preservation and Development","Lump Sum","44000","265250","141161" +"806CBXASSOC","HPD","Housing Preservation and Development","Lump Sum","0","184201.00","1857221.49" +"806CCJOHNTYN","HPD","Housing Preservation and Development","Lump Sum","1500000","0","0" +"806CLUSTERS","HPD","Housing Preservation and Development","Lump Sum","6078000","0","749476345" +"806DOOR25","HPD","Housing Preservation and Development","Lump Sum","-1677000","0.00","22280639.08" +"806DOOR26","HPD","Housing Preservation and Development","Lump Sum","167102000","1139689.48","59813802.52" +"806DOOR27","HPD","Housing Preservation and Development","Lump Sum","110811000","0","0" +"806DOOR28","HPD","Housing Preservation and Development","Lump Sum","109245000","0","0" +"806DOOR29","HPD","Housing Preservation and Development","Lump Sum","113550000","0","0" +"806DOOR30","HPD","Housing Preservation and Development","Lump Sum","59054000","0","0" +"806DOOR31","HPD","Housing Preservation and Development","Lump Sum","56525000","0","0" +"806DOOR32","HPD","Housing Preservation and Development","Lump Sum","58183000","0","0" +"806DOOR33","HPD","Housing Preservation and Development","Lump Sum","56371000","0","0" +"806DOOR34","HPD","Housing Preservation and Development","Lump Sum","58231000","0","0" +"806DOOR35","HPD","Housing Preservation and Development","Lump Sum","60153000","0","0" +"806EDPC","HPD","Housing Preservation and Development","Lump Sum","206440000","55750.00","3087963.60" +"806ELLA22","HPD","Housing Preservation and Development","Lump Sum","1000","0.00","266401753.44" +"806ELLA25","HPD","Housing Preservation and Development","Lump Sum","-1785000","39300000.00","313518012.73" +"806ELLA26","HPD","Housing Preservation and Development","Lump Sum","1323260000","3647043.30","542450337.70" +"806ELLA27","HPD","Housing Preservation and Development","Lump Sum","350823000","0","0" +"806ELLA28","HPD","Housing Preservation and Development","Lump Sum","485033000","0","0" +"806ELLA29","HPD","Housing Preservation and Development","Lump Sum","476304000","0","0" +"806ELLA30","HPD","Housing Preservation and Development","Lump Sum","488660000","0","0" +"806ELLA31","HPD","Housing Preservation and Development","Lump Sum","477742000","0","0" +"806ELLA32","HPD","Housing Preservation and Development","Lump Sum","253941000","0","0" +"806ELLA33","HPD","Housing Preservation and Development","Lump Sum","260650000","0","0" +"806ELLA34","HPD","Housing Preservation and Development","Lump Sum","278326000","0","0" +"806ELLA35","HPD","Housing Preservation and Development","Lump Sum","295336000","0","0" +"806FEGS","HPD","Housing Preservation and Development","Lump Sum","69000","0","431309" +"806GREEN23","HPD","Housing Preservation and Development","Lump Sum","3858000","3511153.00","42668815.64" +"806GREEN25","HPD","Housing Preservation and Development","Lump Sum","22404000","10542596.00","33984482.95" +"806GREEN26","HPD","Housing Preservation and Development","Lump Sum","709000","0","0" +"806GREEN27","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN28","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN29","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN30","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN31","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN32","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN33","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN34","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GREEN35","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806GRHARLEM","HPD","Housing Preservation and Development","Lump Sum","149000","0.0","4400597.5" +"806HAM13GCON","HPD","Housing Preservation and Development","Lump Sum","167297000","0","0" +"806HAM15HMLS","HPD","Housing Preservation and Development","Lump Sum","967000","6682323.72","9662884.01" +"806HAM15SLVA","HPD","Housing Preservation and Development","Lump Sum","10306000","1366089.18","42854001.09" +"806HAM18CDLP","HPD","Housing Preservation and Development","Lump Sum","460129000","330574905.99","121220156.68" +"806HAM18CDWM","HPD","Housing Preservation and Development","Lump Sum","330907000","132883858.68","73818565.75" +"806HAM18HEAT","HPD","Housing Preservation and Development","Lump Sum","545000","10628236.86","111461924.46" +"806HAM20WMEX","HPD","Housing Preservation and Development","Lump Sum","150000","0","0" +"806HAM22GISW","HPD","Housing Preservation and Development","Lump Sum","44441000","3518162.77","1090203.00" +"806HAM23SCCM","HPD","Housing Preservation and Development","Lump Sum","1161000","0","0" +"806HIF","HPD","Housing Preservation and Development","Lump Sum","73723000","0","76235618" +"806HIFARVE","HPD","Housing Preservation and Development","Lump Sum","0","2695100.37","78832558.63" +"806HMFIRST34","HPD","Housing Preservation and Development","Lump Sum","9000000","0","0" +"806HMFIRST35","HPD","Housing Preservation and Development","Lump Sum","9000000","0","0" +"806HOMEFIX22","HPD","Housing Preservation and Development","Lump Sum","58000","0.00","1042838.50" +"806HOMEFIX23","HPD","Housing Preservation and Development","Lump Sum","142000","0.00","2613232.68" +"806HOMEFIX24","HPD","Housing Preservation and Development","Lump Sum","118000","0.00","719617.53" +"806HOMEFIX25","HPD","Housing Preservation and Development","Lump Sum","779000","0","906456" +"806HOMEFIX26","HPD","Housing Preservation and Development","Lump Sum","2306000","0","57981" +"806HOMEFIX27","HPD","Housing Preservation and Development","Lump Sum","3467000","0","0" +"806HOMEFIX28","HPD","Housing Preservation and Development","Lump Sum","3679000","0","0" +"806HOMEFIX29","HPD","Housing Preservation and Development","Lump Sum","3582000","0","0" +"806HOMEFIX30","HPD","Housing Preservation and Development","Lump Sum","3480000","0","0" +"806HOMEFIX31","HPD","Housing Preservation and Development","Lump Sum","3374000","0","0" +"806HOMEFIX32","HPD","Housing Preservation and Development","Lump Sum","3495000","0","0" +"806HOMEFIX33","HPD","Housing Preservation and Development","Lump Sum","3620000","0","0" +"806HOMEFIX34","HPD","Housing Preservation and Development","Lump Sum","3746000","0","0" +"806HUDDIS","HPD","Housing Preservation and Development","Lump Sum","810000","0","11689885" +"806KSELFHELP","HPD","Housing Preservation and Development","Lump Sum","500000","0","0" +"806LIHTC20","HPD","Housing Preservation and Development","Lump Sum","-117000","0.00","13270107.53" +"806LIHTC23","HPD","Housing Preservation and Development","Lump Sum","-228000","0.00","28178835.46" +"806LIHTC25","HPD","Housing Preservation and Development","Lump Sum","-2072000","4412612.20","452190428.21" +"806LIHTC26","HPD","Housing Preservation and Development","Lump Sum","71146000","26783361.37","10281161.63" +"806LIHTC27","HPD","Housing Preservation and Development","Lump Sum","48205000","0","0" +"806LIHTC28","HPD","Housing Preservation and Development","Lump Sum","50133000","0","0" +"806LIHTC29","HPD","Housing Preservation and Development","Lump Sum","52139000","0","0" +"806LIHTC30","HPD","Housing Preservation and Development","Lump Sum","54225000","0","0" +"806LIHTC31","HPD","Housing Preservation and Development","Lump Sum","56394000","0","0" +"806LIHTC32","HPD","Housing Preservation and Development","Lump Sum","58367000","0","0" +"806LIHTC33","HPD","Housing Preservation and Development","Lump Sum","60409000","0","0" +"806LIHTC34","HPD","Housing Preservation and Development","Lump Sum","62402000","0","0" +"806LIHTC35","HPD","Housing Preservation and Development","Lump Sum","64462000","0","0" +"806LOWINC","HPD","Housing Preservation and Development","Lump Sum","600000","0.00","332463662.50" +"806M228E46","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806METCOUNC","HPD","Housing Preservation and Development","Lump Sum","1697000","0","406777" +"806MFHOME26","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806MFHOME27","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806MMI26","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806MMI27","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806MMI28","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806MMI29","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806MSTRIVERS","HPD","Housing Preservation and Development","Lump Sum","100000","0","1435000" +"806MULTI21","HPD","Housing Preservation and Development","Lump Sum","50000","1023035.00","13602230.82" +"806MULTI26","HPD","Housing Preservation and Development","Lump Sum","110950000","496109.14","98937247.86" +"806MULTI27","HPD","Housing Preservation and Development","Lump Sum","47398000","0","0" +"806MULTI28","HPD","Housing Preservation and Development","Lump Sum","45413000","0","0" +"806MULTI29","HPD","Housing Preservation and Development","Lump Sum","51266000","0","0" +"806MULTI30","HPD","Housing Preservation and Development","Lump Sum","53317000","0","0" +"806MULTI31","HPD","Housing Preservation and Development","Lump Sum","55449000","0","0" +"806MULTI32","HPD","Housing Preservation and Development","Lump Sum","57389000","0","0" +"806MULTI33","HPD","Housing Preservation and Development","Lump Sum","59397000","0","0" +"806MULTI34","HPD","Housing Preservation and Development","Lump Sum","61357000","0","0" +"806MULTI35","HPD","Housing Preservation and Development","Lump Sum","63382000","0","0" +"806MXMT25","HPD","Housing Preservation and Development","Lump Sum","-6084000","0.00","126877113.17" +"806MXMT26","HPD","Housing Preservation and Development","Lump Sum","602822000","2008059.82","158072475.18" +"806MXMT27","HPD","Housing Preservation and Development","Lump Sum","240405000","0","0" +"806MXMT28","HPD","Housing Preservation and Development","Lump Sum","201772000","0","0" +"806MXMT29","HPD","Housing Preservation and Development","Lump Sum","227776000","0","0" +"806MXMT30","HPD","Housing Preservation and Development","Lump Sum","189107000","0","0" +"806MXMT31","HPD","Housing Preservation and Development","Lump Sum","192574000","0","0" +"806MXMT32","HPD","Housing Preservation and Development","Lump Sum","124314000","0","0" +"806MXMT33","HPD","Housing Preservation and Development","Lump Sum","131289000","0","0" +"806MXMT34","HPD","Housing Preservation and Development","Lump Sum","138097000","0","0" +"806NAVY","HPD","Housing Preservation and Development","Lump Sum","130000","0","550000" +"806NCATALA","HPD","Housing Preservation and Development","Lump Sum","1500000","0","0" +"806NCP25","HPD","Housing Preservation and Development","Lump Sum","-441000","23693421.00","110405681.29" +"806NCP26","HPD","Housing Preservation and Development","Lump Sum","127904000","0","79883782" +"806NCP27","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP28","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP29","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP30","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP31","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP32","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP33","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP34","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NCP35","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NIHOP26","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NIHOP27","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NIHOP28","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NIHOP29","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806NMELMHANY","HPD","Housing Preservation and Development","Lump Sum","1000000","0","0" +"806NMELROSE","HPD","Housing Preservation and Development","Lump Sum","200000","0","0" +"806NPARTPROJ","HPD","Housing Preservation and Development","Lump Sum","2014000","0","986000" +"806NTSINY","HPD","Housing Preservation and Development","Lump Sum","500000","0","0" +"806PLP14","HPD","Housing Preservation and Development","Lump Sum","-4609000","0","47719948" +"806PLP18","HPD","Housing Preservation and Development","Lump Sum","-319000","0.00","72974367.11" +"806PLP21","HPD","Housing Preservation and Development","Lump Sum","-1604000","51662.00","102422395.89" +"806PLP22","HPD","Housing Preservation and Development","Lump Sum","6456000","0.00","77718817.35" +"806PLP23","HPD","Housing Preservation and Development","Lump Sum","5195000","0.00","57210085.02" +"806PLP24","HPD","Housing Preservation and Development","Lump Sum","-3226000","903072.00","143943460.29" +"806PLP25","HPD","Housing Preservation and Development","Lump Sum","41369000","0.00","216882632.80" +"806PLP26","HPD","Housing Preservation and Development","Lump Sum","331407000","3509683.79","2590316.21" +"806PLP27","HPD","Housing Preservation and Development","Lump Sum","239022000","0","0" +"806PLP28","HPD","Housing Preservation and Development","Lump Sum","243489000","0","0" +"806PLP29","HPD","Housing Preservation and Development","Lump Sum","241847000","0","0" +"806PLP30","HPD","Housing Preservation and Development","Lump Sum","243613000","0","0" +"806PLP31","HPD","Housing Preservation and Development","Lump Sum","259180000","0","0" +"806PLP32","HPD","Housing Preservation and Development","Lump Sum","268112000","0","0" +"806PLP33","HPD","Housing Preservation and Development","Lump Sum","277352000","0","0" +"806PLP34","HPD","Housing Preservation and Development","Lump Sum","286505000","0","0" +"806PLP35","HPD","Housing Preservation and Development","Lump Sum","295959000","0","0" +"806PWCN034","HPD","Housing Preservation and Development","Lump Sum","12500000","0","0" +"806QALIFORN","HPD","Housing Preservation and Development","Lump Sum","8200000","0","0" +"806QPARTNER","HPD","Housing Preservation and Development","Lump Sum","500000","0","0" +"806R1199HC","HPD","Housing Preservation and Development","Lump Sum","10500000","0","6000000" +"806R1199HC2","HPD","Housing Preservation and Development","Lump Sum","0","0","0" +"806R171LEX","HPD","Housing Preservation and Development","Lump Sum","1250000","0","1250000" +"806R551HDFC","HPD","Housing Preservation and Development","Lump Sum","50000","0","0" +"806RCOUNCIL","HPD","Housing Preservation and Development","Lump Sum","788000","0","0" +"806RDAMPSIP","HPD","Housing Preservation and Development","Lump Sum","500000","0","0" +"806REAST23","HPD","Housing Preservation and Development","Lump Sum","478000","0","478000" +"806REAST61","HPD","Housing Preservation and Development","Lump Sum","1059000","0","1059000" +"806RGOUVER","HPD","Housing Preservation and Development","Lump Sum","450000","0","887000" +"806RGRANTAVE","HPD","Housing Preservation and Development","Lump Sum","3000000","0","0" +"806RGREENDF","HPD","Housing Preservation and Development","Lump Sum","1050000","0","0" +"806RHEATOIL","HPD","Housing Preservation and Development","Lump Sum","198000","0","678400" +"806RHUTPKWY","HPD","Housing Preservation and Development","Lump Sum","550000","0","0" +"806RMBSCC","HPD","Housing Preservation and Development","Lump Sum","850000","0","0" +"806RMUTAPT","HPD","Housing Preservation and Development","Lump Sum","2000000","0","0" +"806ROUBHSG","HPD","Housing Preservation and Development","Lump Sum","1500000","0","0" +"806RROSEDALE","HPD","Housing Preservation and Development","Lump Sum","3000000","0","0" +"806RSOLTHERM","HPD","Housing Preservation and Development","Lump Sum","165000","0","234700" +"806RTFF","HPD","Housing Preservation and Development","Lump Sum","375000","0.00","1761532.76" +"806RWESTBETH","HPD","Housing Preservation and Development","Lump Sum","4150000","0","0" +"806RYERSON","HPD","Housing Preservation and Development","Lump Sum","3000000","0","4185000" +"806S1000WEST","HPD","Housing Preservation and Development","Lump Sum","2000000","0","0" +"806SARCHER","HPD","Housing Preservation and Development","Lump Sum","2000000","0","0" +"806SEED-QBRA","HPD","Housing Preservation and Development","Lump Sum","280000","0","0" +"806SEED-QBWP","HPD","Housing Preservation and Development","Lump Sum","102000000","0","0" +"806SENIOR25","HPD","Housing Preservation and Development","Lump Sum","-5314000","0.00","104875172.61" +"806SENIOR26","HPD","Housing Preservation and Development","Lump Sum","150214000","1723364.10","21973699.90" +"806SENIOR27","HPD","Housing Preservation and Development","Lump Sum","85636000","0","0" +"806SENIOR33","HPD","Housing Preservation and Development","Lump Sum","58162000","0","0" +"806SENIOR34","HPD","Housing Preservation and Development","Lump Sum","59619000","0","0" +"806SENIOR35","HPD","Housing Preservation and Development","Lump Sum","61125000","0","0" +"806SHLP25","HPD","Housing Preservation and Development","Lump Sum","16558000","7909207.00","183211501.26" +"806SHLP26","HPD","Housing Preservation and Development","Lump Sum","876127000","3938542.35","170216656.65" +"806SHLP27","HPD","Housing Preservation and Development","Lump Sum","383237000","0","0" +"806SHLP28","HPD","Housing Preservation and Development","Lump Sum","362307000","0","0" +"806SHLP29","HPD","Housing Preservation and Development","Lump Sum","327480000","0","0" +"806SHLP30","HPD","Housing Preservation and Development","Lump Sum","344978000","0","0" +"806SHLP31","HPD","Housing Preservation and Development","Lump Sum","343861000","0","0" +"806SHLP32","HPD","Housing Preservation and Development","Lump Sum","263076000","0","0" +"806SHLP33","HPD","Housing Preservation and Development","Lump Sum","283417000","0","0" +"806SHLP34","HPD","Housing Preservation and Development","Lump Sum","295822000","0","0" +"806SHLP35","HPD","Housing Preservation and Development","Lump Sum","308636000","0","0" +"806SINDIA","HPD","Housing Preservation and Development","Lump Sum","11136000","0","0" +"806SRLCLIP","HPD","Housing Preservation and Development","Lump Sum","0","0.00","110751206.33" +"806SUPPORT","HPD","Housing Preservation and Development","Lump Sum","966000","0","0" +"806TIL25","HPD","Housing Preservation and Development","Lump Sum","199000","45755","0" +"806TIL26","HPD","Housing Preservation and Development","Lump Sum","2500000","0","0" +"806TPT24","HPD","Housing Preservation and Development","Lump Sum","-506000","0.00","103916612.52" +"806TPT26","HPD","Housing Preservation and Development","Lump Sum","18232000","0","0" +"806TPT27","HPD","Housing Preservation and Development","Lump Sum","50397000","0","0" +"806TPT28","HPD","Housing Preservation and Development","Lump Sum","52413000","0","0" +"806TPT29","HPD","Housing Preservation and Development","Lump Sum","54509000","0","0" +"806TPT30","HPD","Housing Preservation and Development","Lump Sum","56689000","0","0" +"806TPT31","HPD","Housing Preservation and Development","Lump Sum","58957000","0","0" +"806TPT32","HPD","Housing Preservation and Development","Lump Sum","61020000","0","0" +"806TPT33","HPD","Housing Preservation and Development","Lump Sum","63155000","0","0" +"806TPT34","HPD","Housing Preservation and Development","Lump Sum","65239000","0","0" +"806TPT35","HPD","Housing Preservation and Development","Lump Sum","67392000","0","0" +"806VILMARIA","HPD","Housing Preservation and Development","Lump Sum","2948000","79209.00","2065890.68" +"806XEVRGREEN","HPD","Housing Preservation and Development","Lump Sum","2000000","0","0" +"816CMEMEDWEB","DOHMH","Department of Health and Mental Hygiene","Lump Sum","320000","0","69492" +"816HL82ASTQN","DOHMH","Department of Health and Mental Hygiene","Lump Sum","0","0","0" +"816HL82CIRHV","DOHMH","Department of Health and Mental Hygiene","Lump Sum","0","0","0" +"816HL82VCLIN","DOHMH","Department of Health and Mental Hygiene","Lump Sum","121833000","0.00","4559927.39" +"81902200901","HHC","Health and Hospitals Corporation","Lump Sum","807000","10703.85","702103.58" +"819022021PM","HHC","Health and Hospitals Corporation","Lump Sum","4800000","0","0" +"81902202444","HHC","Health and Hospitals Corporation","Lump Sum","9933000","0","0" +"81911202106","HHC","Health and Hospitals Corporation","Lump Sum","7743000","561736.64","728315.38" +"81912202102","HHC","Health and Hospitals Corporation","Lump Sum","55000","0","0" +"81913202103","HHC","Health and Hospitals Corporation","Lump Sum","3466000","121248.95","220259.05" +"81913202202","HHC","Health and Hospitals Corporation","Lump Sum","444000","0","0" +"81921202108","HHC","Health and Hospitals Corporation","Lump Sum","10359000","29783.18","274242.82" +"81923202402","HHC","Health and Hospitals Corporation","Lump Sum","200000","0","0" +"81925202106","HHC","Health and Hospitals Corporation","Lump Sum","7396000","3943.27","366137.73" +"81929201942","HHC","Health and Hospitals Corporation","Lump Sum","240000","397337.87","2670795.48" +"81929202114","HHC","Health and Hospitals Corporation","Lump Sum","80000","84009.71","1365184.95" +"81929202243","HHC","Health and Hospitals Corporation","Lump Sum","20000","0","144410" +"81934201401","HHC","Health and Hospitals Corporation","Lump Sum","1149000","0.00","51101.98" +"81948201801","HHC","Health and Hospitals Corporation","Lump Sum","23000","10871.74","201312.61" +"81983202401","HHC","Health and Hospitals Corporation","Lump Sum","500000","0","0" +"819ACEHHC606","HHC","Health and Hospitals Corporation","Lump Sum","32000","723760.50","10281595.90" +"819HOCHS","HHC","Health and Hospitals Corporation","Lump Sum","194356000","0","0" +"819HOPHARMA","HHC","Health and Hospitals Corporation","Lump Sum","0","0","0" +"819RETAILPHA","HHC","Health and Hospitals Corporation","Lump Sum","3759000","0","0" +"819SANDNEW","HHC","Health and Hospitals Corporation","Lump Sum","385078000","0","0" +"819TKYHHC903","HHC","Health and Hospitals Corporation","Lump Sum","4913000","2152912.83","31179741.40" +"819TKYHHC904","HHC","Health and Hospitals Corporation","Lump Sum","2406000","6573551.92","31160212.46" +"826BLUBLTNEW","DEP","Department of Environmental Protection","Lump Sum","411753000","0","0" +"826BWSJOCD26","DEP","Department of Environmental Protection","Lump Sum","2499000","0","0" +"826BWSJOCG26","DEP","Department of Environmental Protection","Lump Sum","32640000","26400000","0" +"826BWSJOCH26","DEP","Department of Environmental Protection","Lump Sum","960000","0","0" +"826BWSJOCI24","DEP","Department of Environmental Protection","Lump Sum","7988000","4030107.87","699357.31" +"826BWS-OC","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826BWSO-PFMQ","DEP","Department of Environmental Protection","Lump Sum","88000","87816","0" +"826BWSOREI26","DEP","Department of Environmental Protection","Lump Sum","10000000","0","0" +"826BWSUJOC","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826CATCHBSN","DEP","Department of Environmental Protection","Lump Sum","87733000","0","0" +"826CLBRST-DS","DEP","Department of Environmental Protection","Lump Sum","0","21644513.00","12534203.83" +"826CLOUDBRST","DEP","Department of Environmental Protection","Lump Sum","175991000","0","0" +"826CM-BWS","DEP","Department of Environmental Protection","Lump Sum","1852000","2391620.95","4117429.93" +"826CQIS","DEP","Department of Environmental Protection","Lump Sum","0","9600000","0" +"826CRO-589","DEP","Department of Environmental Protection","Lump Sum","970000","0","0" +"826CRO-611","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826CSO-CW-RG","DEP","Department of Environmental Protection","Lump Sum","43000000","0","0" +"826CSO-NC","DEP","Department of Environmental Protection","Lump Sum","1153000","919551.29","22792269.88" +"826EC-LC27","DEP","Department of Environmental Protection","Lump Sum","4504000","0","0" +"826EE-CM5","DEP","Department of Environmental Protection","Lump Sum","34982000","0","0" +"826EE-DSGN","DEP","Department of Environmental Protection","Lump Sum","36939000","8595351.18","141031906.86" +"826EE-HSM","DEP","Department of Environmental Protection","Lump Sum","0","1339086.32","38529039.64" +"826EE-RRC","DEP","Department of Environmental Protection","Lump Sum","4501000","4033813.03","84713623.68" +"826EP-BASEHC","DEP","Department of Environmental Protection","Lump Sum","264462000","0","0" +"826EP-EMRNGY","DEP","Department of Environmental Protection","Lump Sum","32182000","0","0" +"826FAD-LAND2","DEP","Department of Environmental Protection","Lump Sum","62273000","0","0" +"826FMC-TOCS","DEP","Department of Environmental Protection","Lump Sum","900000","0","0" +"826FUTUREFAD","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826GI-CD11","DEP","Department of Environmental Protection","Lump Sum","165000","0","0" +"826GI-CON-5B","DEP","Department of Environmental Protection","Lump Sum","0","5588897.36","0" +"826GI-CONS-4","DEP","Department of Environmental Protection","Lump Sum","10105000","0","0" +"826GI-CONS-5","DEP","Department of Environmental Protection","Lump Sum","0","5119907.79","1619373.21" +"826GI-CONS-6","DEP","Department of Environmental Protection","Lump Sum","8326000","0","0" +"826GI-CONS-7","DEP","Department of Environmental Protection","Lump Sum","22000000","0","0" +"826GI-CONS-8","DEP","Department of Environmental Protection","Lump Sum","16000000","0","0" +"826GI-H-DSGN","DEP","Department of Environmental Protection","Lump Sum","2318000","0","0" +"826GI-ON-02","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826GI-ON-03","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826GI-ONSITE","DEP","Department of Environmental Protection","Lump Sum","14667000","6465673.58","4668424.56" +"826GQROWB-01","DEP","Department of Environmental Protection","Lump Sum","23000","107784.54","181940.84" +"826IN-CITYLS","DEP","Department of Environmental Protection","Lump Sum","984242000","0","0" +"826IN-CITYSE","DEP","Department of Environmental Protection","Lump Sum","898507000","0","0" +"826JOC-10-L","DEP","Department of Environmental Protection","Lump Sum","101000","137439.64","51833953.11" +"826JOC-13-L","DEP","Department of Environmental Protection","Lump Sum","0","1312192.82","61287346.66" +"826JOC-16-L","DEP","Department of Environmental Protection","Lump Sum","0","5524876.74","43685618.03" +"826JOC-17-L","DEP","Department of Environmental Protection","Lump Sum","0","25792260.84","113405430.20" +"826JOC-18-L","DEP","Department of Environmental Protection","Lump Sum","0","5663089.98","70913511.36" +"826JOC-19-L","DEP","Department of Environmental Protection","Lump Sum","300000","5264958.08","17239164.86" +"826JOC-20-L","DEP","Department of Environmental Protection","Lump Sum","766000","15847701.33","27840232.35" +"826JOC-22-L","DEP","Department of Environmental Protection","Lump Sum","3836000","49118461.32","70411810.20" +"826JOC-23-L","DEP","Department of Environmental Protection","Lump Sum","150000","15450914.63","7699085.37" +"826JOC-24-L","DEP","Department of Environmental Protection","Lump Sum","2430000","104034760.21","16119103.00" +"826JOC-25-L","DEP","Department of Environmental Protection","Lump Sum","29750000","68679720.14","320279.86" +"826JOC-26-L","DEP","Department of Environmental Protection","Lump Sum","26791000","0","0" +"826JOC-27-L","DEP","Department of Environmental Protection","Lump Sum","152298000","0","0" +"826JOC-28-L","DEP","Department of Environmental Protection","Lump Sum","72010000","0","0" +"826JOC-29-L","DEP","Department of Environmental Protection","Lump Sum","59649000","0","0" +"826JOC-30-L","DEP","Department of Environmental Protection","Lump Sum","90637000","0","0" +"826JOC-31-L","DEP","Department of Environmental Protection","Lump Sum","29138000","0","0" +"826JOC-32-L","DEP","Department of Environmental Protection","Lump Sum","158058000","0","0" +"826JOC-33-L","DEP","Department of Environmental Protection","Lump Sum","132480000","0","0" +"826JOC-34-L","DEP","Department of Environmental Protection","Lump Sum","94792000","0","0" +"826JOC-BWSO","DEP","Department of Environmental Protection","Lump Sum","0","702313.93","25796242.79" +"826JOC-CS3","DEP","Department of Environmental Protection","Lump Sum","0","486193.38","12142128.76" +"826JOC-CS4","DEP","Department of Environmental Protection","Lump Sum","8471000","1121340.77","7883286.03" +"826JOC-CS5","DEP","Department of Environmental Protection","Lump Sum","10388000","0","0" +"826JOC-FMC4","DEP","Department of Environmental Protection","Lump Sum","1760000","1806504.27","3236512.01" +"826JOC-FMC6","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826JOC-FMC7","DEP","Department of Environmental Protection","Lump Sum","3600000","0","0" +"826JOC-FMC8","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826JOC-FMC9","DEP","Department of Environmental Protection","Lump Sum","3600000","0","0" +"826JOC-WSO20","DEP","Department of Environmental Protection","Lump Sum","100000","412436.80","26302347.39" +"826JOC-WSO24","DEP","Department of Environmental Protection","Lump Sum","1201000","315627.56","8864573.42" +"826JOC-WSO25","DEP","Department of Environmental Protection","Lump Sum","32640000","11055623.96","5264376.04" +"826LANDMG-08","DEP","Department of Environmental Protection","Lump Sum","0","0.00","707923.27" +"826LSLRPBX4","DEP","Department of Environmental Protection","Lump Sum","11608000","8969088","0" +"826LSLRPBX5","DEP","Department of Environmental Protection","Lump Sum","2999000","2669329","0" +"826LSLRPGRT","DEP","Department of Environmental Protection","Lump Sum","72000000","0","0" +"826LSLRPQN1","DEP","Department of Environmental Protection","Lump Sum","8149000","8148329.5","0" +"826MED693","DEP","Department of Environmental Protection","Lump Sum","12426000","0","0" +"826MIBBNC05B","DEP","Department of Environmental Protection","Lump Sum","88786000","0","0" +"826MS4-GRANT","DEP","Department of Environmental Protection","Lump Sum","3000000","0","0" +"826MS4-STORM","DEP","Department of Environmental Protection","Lump Sum","45056000","2429018.77","7618420.67" +"826NC-179","DEP","Department of Environmental Protection","Lump Sum","21033000","0","0" +"826OIT-TICK","DEP","Department of Environmental Protection","Lump Sum","7900000","0","0" +"826OUTFALL","DEP","Department of Environmental Protection","Lump Sum","51039000","0","0" +"826PR-151-L","DEP","Department of Environmental Protection","Lump Sum","63817000","60774642.31","9280842.87" +"826PS-TOC","DEP","Department of Environmental Protection","Lump Sum","1118000","7537569.18","26950532.19" +"826PW-112-L","DEP","Department of Environmental Protection","Lump Sum","0","8664905.64","50593589.88" +"826PW-119-L","DEP","Department of Environmental Protection","Lump Sum","0","21812797.40","19402466.60" +"826PW-122-L","DEP","Department of Environmental Protection","Lump Sum","0","34624299.71","10375700.29" +"826PW-CM-L","DEP","Department of Environmental Protection","Lump Sum","263510000","0","0" +"826PW-TOC","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826PW-TOC3","DEP","Department of Environmental Protection","Lump Sum","100785000","0","0" +"826QED-NEW","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826RED-NEW","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826SE842AB","DEP","Department of Environmental Protection","Lump Sum","230602000","0","0" +"826SE883","DEP","Department of Environmental Protection","Lump Sum","116150000","0","0" +"826SE889A","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826SE-BASEHC","DEP","Department of Environmental Protection","Lump Sum","37000000","0","0" +"826SEK002392","DEP","Department of Environmental Protection","Lump Sum","120414000","0","0" +"826SEK002397","DEP","Department of Environmental Protection","Lump Sum","335000000","0","0" +"826SELCDDC","DEP","Department of Environmental Protection","Lump Sum","11848000","0","0" +"826SEN002180","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826SEQ002719","DEP","Department of Environmental Protection","Lump Sum","11946000","0","0" +"826SEQ200616","DEP","Department of Environmental Protection","Lump Sum","54853000","0","0" +"826SEQ-PGRID","DEP","Department of Environmental Protection","Lump Sum","15000000","0","0" +"826SISEAWL-1","DEP","Department of Environmental Protection","Lump Sum","115000000","0","87115163" +"826STMEOH-08","DEP","Department of Environmental Protection","Lump Sum","0","0.00","3562100.47" +"826STMEOH-18","DEP","Department of Environmental Protection","Lump Sum","0","7000000","15000000" +"826STMEOH-25","DEP","Department of Environmental Protection","Lump Sum","493000","0","0" +"826STM-RETRO","DEP","Department of Environmental Protection","Lump Sum","1800000","280663.45","29779253.63" +"826STMWOH-18","DEP","Department of Environmental Protection","Lump Sum","0","6310000","7410869" +"826STMWOH-25","DEP","Department of Environmental Protection","Lump Sum","5415000","0","0" +"826STREAM-18","DEP","Department of Environmental Protection","Lump Sum","0","5632602.64","40962041.49" +"826STREAM-25","DEP","Department of Environmental Protection","Lump Sum","8170000","22539703","2500297" +"826TOSC4-CM","DEP","Department of Environmental Protection","Lump Sum","1200000","2672648.34","1327351.66" +"826TUNNSUPP","DEP","Department of Environmental Protection","Lump Sum","385007000","0","0" +"826W-BASEHC","DEP","Department of Environmental Protection","Lump Sum","202792000","0","0" +"826WCR-GRANT","DEP","Department of Environmental Protection","Lump Sum","19009000","0","0" +"826WFF-IGAS","DEP","Department of Environmental Protection","Lump Sum","850000","12771819.17","30745641.01" +"826W_HC","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"826WM-BASEHC","DEP","Department of Environmental Protection","Lump Sum","144971000","0","0" +"826WM-EMRNGY","DEP","Department of Environmental Protection","Lump Sum","203811000","0","0" +"826WM-U_HC","DEP","Department of Environmental Protection","Lump Sum","33390000","0","0" +"826WP-BASEHC","DEP","Department of Environmental Protection","Lump Sum","504984000","0","0" +"827S222-420W","DSNY","Department of Sanitation","Lump Sum","1000","1.00","3782925.24" +"827S222-465L","DSNY","Department of Sanitation","Lump Sum","1010000","0","989817" +"841ACEDOT602","DOT","Department of Transportation","Lump Sum","57000","33979.10","381992.45" +"841BR10YR15","DOT","Department of Transportation","Lump Sum","146202000","0","0" +"841BRC156G","DOT","Department of Transportation","Lump Sum","474300000","0","0" +"841BRC253D","DOT","Department of Transportation","Lump Sum","1400000","119193471.12","85502294.92" +"841BRC253E","DOT","Department of Transportation","Lump Sum","540750000","0","0" +"841BUS2030","DOT","Department of Transportation","Lump Sum","1000000","0","0" +"841FACLUMP","DOT","Department of Transportation","Lump Sum","95827000","0","0" +"841FALUMP2","DOT","Department of Transportation","Lump Sum","0","0","0" +"841FALUMP4","DOT","Department of Transportation","Lump Sum","0","0","0" +"841FASEAWALL","DOT","Department of Transportation","Lump Sum","2852000","347603.33","825037.81" +"841GEMN-13","DOT","Department of Transportation","Lump Sum","0","211234.70","24432964.06" +"841HB1070MD","DOT","Department of Transportation","Lump Sum","9403000","61957314.09","455000" +"841HB25FAC","DOT","Department of Transportation","Lump Sum","435000","383700","0" +"841HBC10YR07","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HBC10YR20","DOT","Department of Transportation","Lump Sum","839936000","0","0" +"841HBC19YR29","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HBCD0011","DOT","Department of Transportation","Lump Sum","0","0.00","535483.19" +"841HBCD0011B","DOT","Department of Transportation","Lump Sum","0","5301641.99","1001708.83" +"841HBCD0012","DOT","Department of Transportation","Lump Sum","0","3138436.25","1471179.75" +"841HBCD010","DOT","Department of Transportation","Lump Sum","0","0.00","2612386.45" +"841HBCD013","DOT","Department of Transportation","Lump Sum","305000","2782222.46","312852.23" +"841HBCD013A","DOT","Department of Transportation","Lump Sum","2921000","10851638.17","1166396.02" +"841HBCD013B","DOT","Department of Transportation","Lump Sum","1069000","6306817.25","241994.76" +"841HBCD013C","DOT","Department of Transportation","Lump Sum","594000","3961142.61","0" +"841HBCD014","DOT","Department of Transportation","Lump Sum","0","4712115.12","139150.18" +"841HBCD015","DOT","Department of Transportation","Lump Sum","5400000","0","0" +"841HBCD015A","DOT","Department of Transportation","Lump Sum","16555000","0","0" +"841HBCD015B","DOT","Department of Transportation","Lump Sum","9075000","0","0" +"841HBCD015C","DOT","Department of Transportation","Lump Sum","4291000","0","0" +"841HBCD016","DOT","Department of Transportation","Lump Sum","12802000","0","0" +"841HBCD017","DOT","Department of Transportation","Lump Sum","6480000","0","0" +"841HBCD017A","DOT","Department of Transportation","Lump Sum","18882000","0","0" +"841HBCD017B","DOT","Department of Transportation","Lump Sum","10349000","0","0" +"841HBCD017C","DOT","Department of Transportation","Lump Sum","4866000","0","0" +"841HBCD019","DOT","Department of Transportation","Lump Sum","7776000","0","0" +"841HBCD019A","DOT","Department of Transportation","Lump Sum","21577000","0","0" +"841HBCD019B","DOT","Department of Transportation","Lump Sum","11826000","0","0" +"841HBCD019C","DOT","Department of Transportation","Lump Sum","5532000","0","0" +"841HBDPR31","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HBDPRCNN","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HBORSA21A","DOT","Department of Transportation","Lump Sum","1000","0","0" +"841HBORSA21B","DOT","Department of Transportation","Lump Sum","1000","0","0" +"841HBREP6919","DOT","Department of Transportation","Lump Sum","1676000","2184065.21","26008741.06" +"841HW349LUM","DOT","Department of Transportation","Lump Sum","707143000","0.00","1140847902.31" +"841HWCSCHCW","DOT","Department of Transportation","Lump Sum","65400000","0","0" +"841HWCURB03","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HWCW-VZSR","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HWD10115","DOT","Department of Transportation","Lump Sum","235000","0","0" +"841HWD10217","DOT","Department of Transportation","Lump Sum","50000","0","0" +"841HWD10312","DOT","Department of Transportation","Lump Sum","300000","0","0" +"841HWD10327","DOT","Department of Transportation","Lump Sum","2000000","0","0" +"841HWINSP13","DOT","Department of Transportation","Lump Sum","27270000","1718539.46","6880063.68" +"841HWK1669B","DOT","Department of Transportation","Lump Sum","0","940.58","201654.42" +"841HWKMGB","DOT","Department of Transportation","Lump Sum","24300000","0","0" +"841HWM1687","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HWNBVZ","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HWPRINSTL","DOT","Department of Transportation","Lump Sum","176962000","0","0" +"841HWPRREHAB","DOT","Department of Transportation","Lump Sum","1225817000","0","0" +"841HWQ1200","DOT","Department of Transportation","Lump Sum","79611000","159038.65","279289.76" +"841HWQ1203","DOT","Department of Transportation","Lump Sum","8928000","0","0" +"841HWQ1209","DOT","Department of Transportation","Lump Sum","1616000","0","0" +"841HWQ789","DOT","Department of Transportation","Lump Sum","21984000","7098.29","155943.23" +"841HWQF4200V","DOT","Department of Transportation","Lump Sum","227000","203000","0" +"841HWR00513","DOT","Department of Transportation","Lump Sum","1500000","0","0" +"841HWR61A","DOT","Department of Transportation","Lump Sum","2848000","0.00","111050.62" +"841HWR72017","DOT","Department of Transportation","Lump Sum","250000","0","0" +"841HBBA07664","DOT","Department of Transportation","Lump Sum","61629000","0","0" +"841HWSCD50","DOT","Department of Transportation","Lump Sum","3000000","0","0" +"841HWWTCLUMP","DOT","Department of Transportation","Lump Sum","0","0","0" +"841HWXFMDYD","DOT","Department of Transportation","Lump Sum","0","1230.00","120075.05" +"841P-6BRGREP","DOT","Department of Transportation","Lump Sum","0","0","0" +"841PEDRAMP2","DOT","Department of Transportation","Lump Sum","6348000","876625.43","420113.12" +"841P-PAINT1","DOT","Department of Transportation","Lump Sum","7659000","0","0" +"841P-PAINT2","DOT","Department of Transportation","Lump Sum","6948000","0","0" +"841PRKMLUMP","DOT","Department of Transportation","Lump Sum","9906000","0","0" +"841SEQPGRD4","DOT","Department of Transportation","Lump Sum","0","0","0" +"841SEQPGRD5","DOT","Department of Transportation","Lump Sum","0","0","0" +"841SEQUEENS","DOT","Department of Transportation","Lump Sum","4595000","0","0" +"841SIGNALSVZ","DOT","Department of Transportation","Lump Sum","30973000","15289810.17","2511383.83" +"841SLMNTLUMP","DOT","Department of Transportation","Lump Sum","0","0","0" +"841TD199302B","DOT","Department of Transportation","Lump Sum","5000000","0","0" +"841TD19-9925","DOT","Department of Transportation","Lump Sum","5086000","0","0" +"841TD199934","DOT","Department of Transportation","Lump Sum","881000","241051.25","4151781.16" +"841TD19ARTS","DOT","Department of Transportation","Lump Sum","5250000","0","0" +"841TD19OPENR","DOT","Department of Transportation","Lump Sum","0","98481.20","3649893.44" +"841TD19PROJM","DOT","Department of Transportation","Lump Sum","183000","6509.5","163490.5" +"841TF01APS2","DOT","Department of Transportation","Lump Sum","0","0","0" +"841TF01APS3","DOT","Department of Transportation","Lump Sum","0","0","0" +"841TF18-LUMP","DOT","Department of Transportation","Lump Sum","5832000","0","0" +"841TFR0103","DOT","Department of Transportation","Lump Sum","0","0.00","888451.92" +"841TFVISIONZ","DOT","Department of Transportation","Lump Sum","0","832759.73","3822240.27" +"841TYPLILL","DOT","Department of Transportation","Lump Sum","0","0","0" +"841TYPLREP","DOT","Department of Transportation","Lump Sum","600000","0","0" +"841TYPLSGM","DOT","Department of Transportation","Lump Sum","76982000","0","0" +"846ACEDPR702","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-0PRC23C","DPR","Department of Parks and Recreation","Lump Sum","4200000","0","0" +"846P-0PRC23D","DPR","Department of Parks and Recreation","Lump Sum","12870000","9900000","0" +"846P-1BWCBP1","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1761258.66" +"846P-1TRE17A","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","2384517.09" +"846P-1TRE19A","DPR","Department of Parks and Recreation","Lump Sum","-122000","0.00","1025067.72" +"846P-1TRE19B","DPR","Department of Parks and Recreation","Lump Sum","-22000","0.0","1118274.5" +"846P-1TRE20A","DPR","Department of Parks and Recreation","Lump Sum","0","0.0","32604.6" +"846P-1TRE20B","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","38480.81" +"846P-1TREL21","DPR","Department of Parks and Recreation","Lump Sum","2369000","442129.80","11299493.20" +"846P-213SCRN","DPR","Department of Parks and Recreation","Lump Sum","0","0","601300" +"846P-213SPBC","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-214PARK","DPR","Department of Parks and Recreation","Lump Sum","780000","0","0" +"846P-2BWK11J","DPR","Department of Parks and Recreation","Lump Sum","0","26473.01","552144.63" +"846NDF-CPFSP","DPR","Department of Parks and Recreation","Lump Sum","1022000","198201.40","4247253.47" +"846P-216D17A","DPR","Department of Parks and Recreation","Lump Sum","0","119897.11","776950.30" +"846P-1CPIADC","DPR","Department of Parks and Recreation","Lump Sum","2977000","0","0" +"846P-1CPITDC","DPR","Department of Parks and Recreation","Lump Sum","4062000","0","0" +"846P-2GNWY23","DPR","Department of Parks and Recreation","Lump Sum","361000","1023490.71","1070447.97" +"846P-2TRE16B","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","2052219.57" +"846P-2TRE23A","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","10315.84" +"846P-2TRE23B","DPR","Department of Parks and Recreation","Lump Sum","0","8638.61","3080600.66" +"846P-2TRE24G","DPR","Department of Parks and Recreation","Lump Sum","1000000","1683175.5","566672.5" +"846P-2TREL21","DPR","Department of Parks and Recreation","Lump Sum","16000","451366.40","11640633.60" +"846P-2TREP23","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","9880.04" +"846P-300LMDC","DPR","Department of Parks and Recreation","Lump Sum","0","329498.67","16025444.03" +"846P-312FTDR","DPR","Department of Parks and Recreation","Lump Sum","2080000","0","0" +"846P-312INNG","DPR","Department of Parks and Recreation","Lump Sum","66000","49991","0" +"846P-3HGLNRC","DPR","Department of Parks and Recreation","Lump Sum","2517000","0","0" +"846P-3HLGATE","DPR","Department of Parks and Recreation","Lump Sum","965000","0","0" +"846P-3SRISKM","DPR","Department of Parks and Recreation","Lump Sum","-623000","0.00","851933.04" +"846P-3TREL21","DPR","Department of Parks and Recreation","Lump Sum","2975000","1354021.88","13358978.12" +"846P-3TREMTA","DPR","Department of Parks and Recreation","Lump Sum","185000","56851.51","1414522.15" +"846P-3TRESM2","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","88995.99" +"846P-3TRESM3","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","89913.25" +"846P-3TRESM4","DPR","Department of Parks and Recreation","Lump Sum","0","0.0","90197.5" +"846P-406QM24","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","667727.43" +"846P-4BWIDEA","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","2069910.60" +"846P-4BWIDEB","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1078523.89" +"846P-4BWIDEC","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1148790.36" +"846P-4BWIDED","DPR","Department of Parks and Recreation","Lump Sum","0","8442.00","1867711.47" +"846P-4BWIDEG","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1894828.05" +"846P-4BWTURF","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","5823279.78" +"846P-4QNHSRC","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","561.28" +"846P-4RCKHQS","DPR","Department of Parks and Recreation","Lump Sum","2606000","0","0" +"846P-4TREL21","DPR","Department of Parks and Recreation","Lump Sum","1000","447913.67","9326127.95" +"846P-4TREP23","DPR","Department of Parks and Recreation","Lump Sum","824000","190963.61","4156305.15" +"846P-302SSQP","DPR","Department of Parks and Recreation","Lump Sum","0","570237.58","5123913.74" +"846P-311RIWR","DPR","Department of Parks and Recreation","Lump Sum","5645000","344948.57","135006.68" +"846P-3BWWATE","DPR","Department of Parks and Recreation","Lump Sum","0","54675.00","669761.18" +"846P-6SITEIN","DPR","Department of Parks and Recreation","Lump Sum","398000","1097217.32","329068.48" +"846P-6CGDWTR","DPR","Department of Parks and Recreation","Lump Sum","397000","100749.09","410963.86" +"846P-310EDGE","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","662091.79" +"846P-413QFMF","DPR","Department of Parks and Recreation","Lump Sum","101000","0.00","1161516.15" +"846P-304CPLS","DPR","Department of Parks and Recreation","Lump Sum","40000","0","0" +"846P-5TRE17A","DPR","Department of Parks and Recreation","Lump Sum","0","7410.00","1331014.95" +"846P-5TRE18A","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","3293861.20" +"846P-5TRE21A","DPR","Department of Parks and Recreation","Lump Sum","490000","353122.43","2578747.96" +"846P-6APPMOD","DPR","Department of Parks and Recreation","Lump Sum","889000","0","0" +"846P-6AZUR24","DPR","Department of Parks and Recreation","Lump Sum","1954000","0.00","1671103.53" +"846P-6BORDRS","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6BSBE07","DPR","Department of Parks and Recreation","Lump Sum","0","0","443370" +"846P-6CB8220","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","430832.10" +"846P-6CPIPH2","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6CPSTR1","DPR","Department of Parks and Recreation","Lump Sum","5388000","0","0" +"846P-6CW1250","DPR","Department of Parks and Recreation","Lump Sum","0","15696.86","426785.17" +"846P-6CW5131","DPR","Department of Parks and Recreation","Lump Sum","7266000","0","0" +"846P-6CWASBR","DPR","Department of Parks and Recreation","Lump Sum","0","9419.10","788626.36" +"846P-6CWBLDG","DPR","Department of Parks and Recreation","Lump Sum","0","47606.25","928685.70" +"846P-6CWBLDS","DPR","Department of Parks and Recreation","Lump Sum","41116000","0","0" +"846P-6CWCMFT","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6CWEXST","DPR","Department of Parks and Recreation","Lump Sum","755000","0","0" +"846P-6CWGRNT","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6CWLAND","DPR","Department of Parks and Recreation","Lump Sum","7094000","0.00","155984.27" +"846P-6CWMARI","DPR","Department of Parks and Recreation","Lump Sum","1803000","0","0" +"846P-6CWPLGD","DPR","Department of Parks and Recreation","Lump Sum","64570000","0","0" +"846P-6CWPOOL","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","651891.71" +"846P-6CWR22C","DPR","Department of Parks and Recreation","Lump Sum","1151000","0","0" +"846P-6CWRWAL","DPR","Department of Parks and Recreation","Lump Sum","120507000","0","0" +"846P-6CWWALK","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","215373.64" +"846P-6DTREE7","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","623049.75" +"846P-6EABS25","DPR","Department of Parks and Recreation","Lump Sum","1409000","626904","0" +"846P-6EABTRE","DPR","Department of Parks and Recreation","Lump Sum","46890000","0","0" +"846P-6EABTRS","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","321559.00" +"846P-6ENVTST","DPR","Department of Parks and Recreation","Lump Sum","266000","0","0" +"846P-6EQU22S","DPR","Department of Parks and Recreation","Lump Sum","411797000","0","0" +"846P-6GBPTMS","DPR","Department of Parks and Recreation","Lump Sum","442000","0.00","88055.16" +"846P-6GIGRST","DPR","Department of Parks and Recreation","Lump Sum","599000","0","0" +"846P-6PKTR18","DPR","Department of Parks and Recreation","Lump Sum","219000","210926","140139" +"846P-6PKTR24","DPR","Department of Parks and Recreation","Lump Sum","1420000","1068275","0" +"846P-6PKTREE","DPR","Department of Parks and Recreation","Lump Sum","1779000","0","0" +"846P-6PLAYFA","DPR","Department of Parks and Recreation","Lump Sum","2841000","0.00","14141.51" +"846P-6PNYCST","DPR","Department of Parks and Recreation","Lump Sum","3498000","0","0" +"846P-6PNYDOT","DPR","Department of Parks and Recreation","Lump Sum","1689000","0","0" +"846P-6PNYR23","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","256635.69" +"846P-6PNYT19","DPR","Department of Parks and Recreation","Lump Sum","0","664.79","744037.21" +"846P-6PNYT21","DPR","Department of Parks and Recreation","Lump Sum","0","0.0","1151602.1" +"846P-6PNYT23","DPR","Department of Parks and Recreation","Lump Sum","11000","0.00","1997988.21" +"846P-6PNYTP2","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","6138456.52" +"846P-6REQU","DPR","Department of Parks and Recreation","Lump Sum","12997000","0","0" +"846P-6SITEI1","DPR","Department of Parks and Recreation","Lump Sum","37000","142375.9","40306.1" +"846P-6PLHNGR","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1645233.51" +"846P-5FRESHM","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","9106306.50" +"846P-6CWCGDN","DPR","Department of Parks and Recreation","Lump Sum","2900000","0","0" +"846P-6SNOW25","DPR","Department of Parks and Recreation","Lump Sum","6106000","1579652.10","4168456.68" +"846P-6SOGRP1","DPR","Department of Parks and Recreation","Lump Sum","22926000","0","0" +"846P-6SOGRP2","DPR","Department of Parks and Recreation","Lump Sum","37628000","0","0" +"846P-6SOGRPL","DPR","Department of Parks and Recreation","Lump Sum","85726000","0","0" +"846P-6SOGRRE","DPR","Department of Parks and Recreation","Lump Sum","22035000","0","0" +"846P-6SOGRT2","DPR","Department of Parks and Recreation","Lump Sum","96499000","0","0" +"846P-6SPT21A","DPR","Department of Parks and Recreation","Lump Sum","2700000","0.00","510984.35" +"846P-6SREMOV","DPR","Department of Parks and Recreation","Lump Sum","15000","4540.00","1732420.12" +"846P-6SWK13A","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","745708.85" +"846P-6SWRS26","DPR","Department of Parks and Recreation","Lump Sum","4376000","0","0" +"846P-6TPR24A","DPR","Department of Parks and Recreation","Lump Sum","7330000","5760000","0" +"846P-6TPR24B","DPR","Department of Parks and Recreation","Lump Sum","7330000","5760000","0" +"846P-6TPSS21","DPR","Department of Parks and Recreation","Lump Sum","1000","411046.08","288293.92" +"846P-6TRE15A","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","556011.55" +"846P-6TRE17A","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1493011.79" +"846P-6TRE18A","DPR","Department of Parks and Recreation","Lump Sum","773000","4910.0","1222279.5" +"846P-6TRE19A","DPR","Department of Parks and Recreation","Lump Sum","958000","0","0" +"846P-6TRE20A","DPR","Department of Parks and Recreation","Lump Sum","2124000","0","2909480" +"846P-6TRE22A","DPR","Department of Parks and Recreation","Lump Sum","1000","13913.75","542486.25" +"846P-6TRE23B","DPR","Department of Parks and Recreation","Lump Sum","867000","58861.75","1477988.25" +"846P-6TRE24A","DPR","Department of Parks and Recreation","Lump Sum","1961000","17747.61","3239714.39" +"846P-6TRE24B","DPR","Department of Parks and Recreation","Lump Sum","2369000","1151979","0" +"846P-6TRE24C","DPR","Department of Parks and Recreation","Lump Sum","1698000","3209538.11","1392171.89" +"846P-6TREEP1","DPR","Department of Parks and Recreation","Lump Sum","6735000","1850601.35","25689363.65" +"846P-6TREEP2","DPR","Department of Parks and Recreation","Lump Sum","225000","27135.03","2988894.71" +"846P-6TREES","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6TREES2","DPR","Department of Parks and Recreation","Lump Sum","214000","0","0" +"846P-6TREESA","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6TREESB","DPR","Department of Parks and Recreation","Lump Sum","273193000","0","0" +"846P-6TREESC","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6TREL21","DPR","Department of Parks and Recreation","Lump Sum","855000","521692.73","2577957.27" +"846P-6TREPLN","DPR","Department of Parks and Recreation","Lump Sum","12617000","0","0" +"846P-6TREPLS","DPR","Department of Parks and Recreation","Lump Sum","19929000","0","0" +"846P-6TREPRV","DPR","Department of Parks and Recreation","Lump Sum","3130000","0","0" +"846P-6TRESUP","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","997939.37" +"846P-6TRPS21","DPR","Department of Parks and Recreation","Lump Sum","1000","543","571557" +"846P-6TRS19A","DPR","Department of Parks and Recreation","Lump Sum","37000","0","1945183" +"846P-6TRSD23","DPR","Department of Parks and Recreation","Lump Sum","3348000","3355842.99","3988377.01" +"846P-6TRSDW1","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6TRSDWK","DPR","Department of Parks and Recreation","Lump Sum","110445000","0","0" +"846P-6WAKPRK","DPR","Department of Parks and Recreation","Lump Sum","25896000","0","0" +"846P-6WATRF1","DPR","Department of Parks and Recreation","Lump Sum","2000","811106.69","2124081.49" +"846P-6ZOOIN1","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-6ZOOINF","DPR","Department of Parks and Recreation","Lump Sum","0","0","50000" +"846SANDEASTS","DPR","Department of Parks and Recreation","Lump Sum","53254000","0","11345741" +"846SANDY2-01","DPR","Department of Parks and Recreation","Lump Sum","18000","103351.50","98979.14" +"846SANDY3-16","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","24832.06" +"846SANDY4330","DPR","Department of Parks and Recreation","Lump Sum","10416000","0","0" +"846SANDY4371","DPR","Department of Parks and Recreation","Lump Sum","5896000","0","0" +"846SANDY6-17","DPR","Department of Parks and Recreation","Lump Sum","0","0","1039000" +"846SANDY6-18","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","499379.90" +"846SANDY6-23","DPR","Department of Parks and Recreation","Lump Sum","69414000","0","0" +"846SANDYCDUT","DPR","Department of Parks and Recreation","Lump Sum","14311000","0","0" +"846SEQ-TREES","DPR","Department of Parks and Recreation","Lump Sum","7363000","52361.01","1549038.99" +"850AGDJCCGCI","DDC","Department of Design and Construction","Lump Sum","311000","0","0" +"850ACEDCA433","DDC","Department of Design and Construction","Lump Sum","250000","13934.12","813815.88" +"850AGDSUNNY4","DDC","Department of Design and Construction","Lump Sum","165000","0","0" +"850AGQNSCS","DDC","Department of Design and Construction","Lump Sum","100000","0","0" +"850AGSAGEING","DDC","Department of Design and Construction","Lump Sum","200000","0","0" +"850AGSERADVO","DDC","Department of Design and Construction","Lump Sum","192000","0","0" +"850BC-10AAA","DDC","Department of Design and Construction","Lump Sum","6000000","0","0" +"850BC-10BBB","DDC","Department of Design and Construction","Lump Sum","3350000","0","0" +"850BC-10HW3","DDC","Department of Design and Construction","Lump Sum","1500000","1667465.46","1547980.04" +"850BC-10HW4","DDC","Department of Design and Construction","Lump Sum","4596000","0","0" +"850BC-10HW5","DDC","Department of Design and Construction","Lump Sum","2000000","0","0" +"850BC-10HW6","DDC","Department of Design and Construction","Lump Sum","6238000","0","0" +"850BC-10YY","DDC","Department of Design and Construction","Lump Sum","0","0.00","4445874.62" +"850BC-10ZZ","DDC","Department of Design and Construction","Lump Sum","2014000","2297027.59","2076402.41" +"850BC-SE-WM3","DDC","Department of Design and Construction","Lump Sum","1500000","2763460.16","1635644.84" +"850BC-SE-WM4","DDC","Department of Design and Construction","Lump Sum","3000000","0","0" +"850BC-SE-WM5","DDC","Department of Design and Construction","Lump Sum","3000000","0","0" +"850BC-SE-WM6","DDC","Department of Design and Construction","Lump Sum","3000000","0","0" +"850BC-SE-WM7","DDC","Department of Design and Construction","Lump Sum","2000000","0","0" +"850BED-785B","DDC","Department of Design and Construction","Lump Sum","1201000","2345742.87","5488931.43" +"850BED-792","DDC","Department of Design and Construction","Lump Sum","-66000","27131.71","1824500.73" +"850BEDA-003","DDC","Department of Design and Construction","Lump Sum","14000","1016720.51","30418781.70" +"850CSDNBENET","DDC","Department of Design and Construction","Lump Sum","2000","0","49459" +"850EC-LC23","DDC","Department of Design and Construction","Lump Sum","108000","809417.15","3567181.14" +"850EC-LC24","DDC","Department of Design and Construction","Lump Sum","864000","1239021.96","5912567.09" +"850EC-LC25","DDC","Department of Design and Construction","Lump Sum","1227000","4027200.98","2064621.13" +"850EC-LC25KR","DDC","Department of Design and Construction","Lump Sum","689000","0","0" +"850EC-LC25M","DDC","Department of Design and Construction","Lump Sum","325000","0","0" +"850EC-LC25QX","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850EC-LC26","DDC","Department of Design and Construction","Lump Sum","6028000","5572523.23","0" +"850EDQNSACSS","DDC","Department of Design and Construction","Lump Sum","21000","0","225233" +"850ERDSTEINW","DDC","Department of Design and Construction","Lump Sum","80000","0","0" +"850GE-359","DDC","Department of Design and Construction","Lump Sum","6000","47384.91","17982804.24" +"850GROWNYC1","DDC","Department of Design and Construction","Lump Sum","525000","0","0" +"850HED603","DDC","Department of Design and Construction","Lump Sum","21516000","0","0" +"850HEDA-003","DDC","Department of Design and Construction","Lump Sum","425000","562693.33","23799452.89" +"850HHURITRAN","DDC","Department of Design and Construction","Lump Sum","0","0","74944" +"850HLBROWNSC","DDC","Department of Design and Construction","Lump Sum","742000","0","0" +"850HLDMHHCIT","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLDN078BC","DDC","Department of Design and Construction","Lump Sum","758000","0","0" +"850HLDNAID51","DDC","Department of Design and Construction","Lump Sum","0","0","144685" +"850HLDNALINE","DDC","Department of Design and Construction","Lump Sum","0","0.00","250654.96" +"850HH112BLEN","DDC","Department of Design and Construction","Lump Sum","25000","0.00","1028154.46" +"850HLDNBOOM","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLDNCH031","DDC","Department of Design and Construction","Lump Sum","0","0.00","1050006.81" +"850HLDNCH034","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLDNCYPVH","DDC","Department of Design and Construction","Lump Sum","51000","51000","0" +"850HLDNHASC","DDC","Department of Design and Construction","Lump Sum","819000","0","0" +"850HLDNHASC1","DDC","Department of Design and Construction","Lump Sum","300000","0","0" +"850HLDNHASC2","DDC","Department of Design and Construction","Lump Sum","320000","0","0" +"850HLDNHASC3","DDC","Department of Design and Construction","Lump Sum","127000","126340","0" +"850HLDNINCUB","DDC","Department of Design and Construction","Lump Sum","215000","0","0" +"850HLDNKNCHL","DDC","Department of Design and Construction","Lump Sum","410000","0","0" +"850HLDNPREMH","DDC","Department of Design and Construction","Lump Sum","600000","0","0" +"850HLDNREFIO","DDC","Department of Design and Construction","Lump Sum","1325000","0","0" +"850HLDNSTART","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLKNHASCC","DDC","Department of Design and Construction","Lump Sum","564000","0","0" +"850HLKNNYBCL","DDC","Department of Design and Construction","Lump Sum","654000","654000","0" +"850HLKNNYCOM","DDC","Department of Design and Construction","Lump Sum","225000","0","0" +"850HLMNAFSMV","DDC","Department of Design and Construction","Lump Sum","50000","0","0" +"850HLMNCOMM","DDC","Department of Design and Construction","Lump Sum","0","0","97561" +"850HLMNEHRLM","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLMNHARLM","DDC","Department of Design and Construction","Lump Sum","0","0","41000" +"850HLQNADDAB","DDC","Department of Design and Construction","Lump Sum","462000","0","0" +"850HLQNEPISC","DDC","Department of Design and Construction","Lump Sum","308000","0","0" +"850HLQNJPAFH","DDC","Department of Design and Construction","Lump Sum","643000","0","0" +"850HRCNSHCS","DDC","Department of Design and Construction","Lump Sum","174000","0","0" +"850HRDMNFUCS","DDC","Department of Design and Construction","Lump Sum","600000","0","0" +"850HRDN4591","DDC","Department of Design and Construction","Lump Sum","1849000","1550790","0" +"850HRKGOOD1","DDC","Department of Design and Construction","Lump Sum","178000","268370","0" +"850HRKNBPIIO","DDC","Department of Design and Construction","Lump Sum","313000","0","0" +"850HRMN567A","DDC","Department of Design and Construction","Lump Sum","178000","0","0" +"850HRMN803","DDC","Department of Design and Construction","Lump Sum","461000","0","0" +"850HRMNSHCS","DDC","Department of Design and Construction","Lump Sum","173000","0","0" +"850HRMNSTRIV","DDC","Department of Design and Construction","Lump Sum","25000","0.00","308863.24" +"850HRXNCTCO","DDC","Department of Design and Construction","Lump Sum","121000","0","0" +"850HW349TOUR","DDC","Department of Design and Construction","Lump Sum","8867000","20254186.4","0" +"850HWCD101G","DDC","Department of Design and Construction","Lump Sum","1781000","227918.04","541285.08" +"850HWCD101H","DDC","Department of Design and Construction","Lump Sum","365000","1407463","92537" +"850HWCSCH3E","DDC","Department of Design and Construction","Lump Sum","430000","95297.57","11045152.05" +"850HWEARC05","DDC","Department of Design and Construction","Lump Sum","9640000","9134459.81","865540.19" +"850HWEARC05A","DDC","Department of Design and Construction","Lump Sum","4500000","10000000","0" +"850HWEARC05B","DDC","Department of Design and Construction","Lump Sum","4500000","10000000","0" +"850HWEARC06","DDC","Department of Design and Construction","Lump Sum","23336000","0","0" +"850HWQ200578","DDC","Department of Design and Construction","Lump Sum","0","1448796.91","3717803.07" +"850HWQ823","DDC","Department of Design and Construction","Lump Sum","11000","255228.36","587306.22" +"850HWSXSURV","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850MED679","DDC","Department of Design and Construction","Lump Sum","21251000","500831.89","474007.11" +"850MEDA-001","DDC","Department of Design and Construction","Lump Sum","164000","0.00","12897844.77" +"850MEDA-002","DDC","Department of Design and Construction","Lump Sum","125000","7460190.65","15740783.99" +"850MEDA-003","DDC","Department of Design and Construction","Lump Sum","0","2210797.45","20251328.01" +"850NDF-JEROM","DDC","Department of Design and Construction","Lump Sum","35686000","271221.70","4842203.30" +"850NDF-SCH4D","DDC","Department of Design and Construction","Lump Sum","1606000","3799999.99","0" +"850PHLDGFND","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PROCONTRL","DDC","Department of Design and Construction","Lump Sum","3889000","2189719.05","4080730.08" +"850PW311390H","DDC","Department of Design and Construction","Lump Sum","-1449000","0.00","975427.07" +"850PW311S19C","DDC","Department of Design and Construction","Lump Sum","1500000","2497049.36","1110375.64" +"850PW311S21C","DDC","Department of Design and Construction","Lump Sum","1000000","0","0" +"850PW335A29","DDC","Department of Design and Construction","Lump Sum","0","772358.45","1844566.55" +"850PW335A30","DDC","Department of Design and Construction","Lump Sum","1500000","1701301.04","593838.96" +"850PW335ABS1","DDC","Department of Design and Construction","Lump Sum","1642000","476775","0" +"850PW335AS21","DDC","Department of Design and Construction","Lump Sum","0","1000000","0" +"850PW335ASLS","DDC","Department of Design and Construction","Lump Sum","0","0.00","2094593.90" +"850PW335BS13","DDC","Department of Design and Construction","Lump Sum","0","28277.52","243720.48" +"850PW335ES17","DDC","Department of Design and Construction","Lump Sum","2000000","3041280.96","4321878.04" +"850PW335ES18","DDC","Department of Design and Construction","Lump Sum","1000000","1856963.81","4891208.38" +"850PW335ES19","DDC","Department of Design and Construction","Lump Sum","7650000","0","0" +"850PW335ES20","DDC","Department of Design and Construction","Lump Sum","4200000","0","0" +"850PW335SSLS","DDC","Department of Design and Construction","Lump Sum","1609000","750000.00","81356.91" +"850PW9BCS02","DDC","Department of Design and Construction","Lump Sum","0","0.00","168164.86" +"850PWD163SH","DDC","Department of Design and Construction","Lump Sum","121000","0","0" +"850PWDJBOD20","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDN63LBG","DDC","Department of Design and Construction","Lump Sum","80000","47292","0" +"850PWDN80PIT","DDC","Department of Design and Construction","Lump Sum","500000","496945","0" +"850PWDN984SV","DDC","Department of Design and Construction","Lump Sum","193000","189741","0" +"850PWDNACEHM","DDC","Department of Design and Construction","Lump Sum","0","100836","0" +"850PWDNCCGC1","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDNLGSVC","DDC","Department of Design and Construction","Lump Sum","907000","706070","0" +"850PWDNUJA20","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDOHEL","DDC","Department of Design and Construction","Lump Sum","489000","0","0" +"850PWDOHEL2","DDC","Department of Design and Construction","Lump Sum","70000","70000","0" +"850PWHLDGFND","DDC","Department of Design and Construction","Lump Sum","2936000","0","0" +"850PWKNGWHF","DDC","Department of Design and Construction","Lump Sum","277000","0","0" +"850PWNWHEDCO","DDC","Department of Design and Construction","Lump Sum","264000","0","0" +"850PWQNSAM20","DDC","Department of Design and Construction","Lump Sum","426000","426000","0" +"850PWQNSAMDD","DDC","Department of Design and Construction","Lump Sum","250000","0","0" +"850PWSAMFIEH","DDC","Department of Design and Construction","Lump Sum","112000","112000","0" +"850QED-1042A","DDC","Department of Design and Construction","Lump Sum","107523000","116048.46","221508.82" +"850SANDHWSRV","DDC","Department of Design and Construction","Lump Sum","330000","78363.03","1287463.00" +"850SANDRESM1","DDC","Department of Design and Construction","Lump Sum","471826000","463723897.83","984014610.91" +"850SE-813","DDC","Department of Design and Construction","Lump Sum","57342000","864960.98","273248.27" +"850SEQCWSRV5","DDC","Department of Design and Construction","Lump Sum","5964000","10000000","0" +"850SE-842A","DDC","Department of Design and Construction","Lump Sum","0","0.00","898497.90" +"850SE-842B","DDC","Department of Design and Construction","Lump Sum","500000","0.0","243679.5" +"850SE-850","DDC","Department of Design and Construction","Lump Sum","1000000","0.00","55467.83" +"850SE-855","DDC","Department of Design and Construction","Lump Sum","0","2864314.00","51848165.13" +"850SE-856","DDC","Department of Design and Construction","Lump Sum","1961000","0.00","2117912.61" +"850SE-859","DDC","Department of Design and Construction","Lump Sum","254000","17302798.09","108480143.39" +"850SE-860","DDC","Department of Design and Construction","Lump Sum","81376000","624981.24","7214010.76" +"850SE-887","DDC","Department of Design and Construction","Lump Sum","25148000","0.00","120746.11" +"850SEK002407","DDC","Department of Design and Construction","Lump Sum","4266000","0","0" +"850SEK20069","DDC","Department of Design and Construction","Lump Sum","262000","1323283.45","15124135.70" +"850SEK20076","DDC","Department of Design and Construction","Lump Sum","7019000","63481.96","76518.04" +"850SEKCWSRV2","DDC","Department of Design and Construction","Lump Sum","0","0.00","4548584.13" +"850SEKCWSRV3","DDC","Department of Design and Construction","Lump Sum","1800000","330004.06","5316626.94" +"850SEKCWSRV4","DDC","Department of Design and Construction","Lump Sum","9729000","9537591","462409" +"850SEKCWSRV5","DDC","Department of Design and Construction","Lump Sum","3774000","8577278.93","1422721.07" +"850SEKCWSRV6","DDC","Department of Design and Construction","Lump Sum","6809000","0","0" +"850SEKCWSRV7","DDC","Department of Design and Construction","Lump Sum","5400000","0","0" +"850SELCDDC10","DDC","Department of Design and Construction","Lump Sum","665000","2258785.75","1921346.21" +"850SELCDDC12","DDC","Department of Design and Construction","Lump Sum","10284000","0","0" +"850SEN002182","DDC","Department of Design and Construction","Lump Sum","2962000","795447.96","149812.13" +"850SEN002184","DDC","Department of Design and Construction","Lump Sum","11454000","0","0" +"850SENCWSRV2","DDC","Department of Design and Construction","Lump Sum","0","2288211.88","4282232.60" +"850SENCWSRV4","DDC","Department of Design and Construction","Lump Sum","5969000","9742502.00","257498.00" +"850SENCWSRV5","DDC","Department of Design and Construction","Lump Sum","5980000","9596970.00","403030.00" +"850SENCWSRV6","DDC","Department of Design and Construction","Lump Sum","4000000","0","0" +"850SENCWSRV7","DDC","Department of Design and Construction","Lump Sum","5400000","0","0" +"850SEPWCWS02","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850SEPWCWS03","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850SEPWCWS04","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850SEPWCWS05","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850SEPWCWS06","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850SEQ002611","DDC","Department of Design and Construction","Lump Sum","-129000","15323.87","760509.67" +"850SEQ002699","DDC","Department of Design and Construction","Lump Sum","123000","131856.44","1696089.34" +"850SEQ200582","DDC","Department of Design and Construction","Lump Sum","0","1120525.94","26855164.09" +"037LN21GDHVA","NYPL","New York Public Library","Fixed Asset","0","0","0" +"850SEQCWSRV2","DDC","Department of Design and Construction","Lump Sum","116000","569176.66","5469425.03" +"850SEQCWSRV3","DDC","Department of Design and Construction","Lump Sum","0","1571384.17","3388940.83" +"850SEQCWSRV4","DDC","Department of Design and Construction","Lump Sum","7648000","9328721.90","671278.10" +"850SER002333","DDC","Department of Design and Construction","Lump Sum","3802000","5365906.81","6717402.23" +"850SER200294","DDC","Department of Design and Construction","Lump Sum","11000","0","0" +"850SERCWSRV2","DDC","Department of Design and Construction","Lump Sum","4000","0.00","5835522.72" +"850SERCWSRV4","DDC","Department of Design and Construction","Lump Sum","6720000","9078032.2","921967.8" +"850SERCWSRV5","DDC","Department of Design and Construction","Lump Sum","6730000","9357135.00","642865.00" +"850SERCWSRV6","DDC","Department of Design and Construction","Lump Sum","4600000","0","0" +"850SERCWSRV7","DDC","Department of Design and Construction","Lump Sum","6000000","0","0" +"850SER-SURV7","DDC","Department of Design and Construction","Lump Sum","0","0.00","16324836.04" +"850SEX002271","DDC","Department of Design and Construction","Lump Sum","0","864747.58","3862165.13" +"850SEX002272","DDC","Department of Design and Construction","Lump Sum","186000","0","0" +"850SEXCWSRV4","DDC","Department of Design and Construction","Lump Sum","5775000","7813350.00","2186650.00" +"850SEXCWSRV5","DDC","Department of Design and Construction","Lump Sum","6712000","8983426","416600" +"850SEXCWSRV6","DDC","Department of Design and Construction","Lump Sum","4000000","0","0" +"850SEXCWSRV7","DDC","Department of Design and Construction","Lump Sum","4000000","0","0" +"856850THRD","DCAS","Department of Citywide Administrative Services","Lump Sum","3065000","0","0" +"856ACEFDN212","DCAS","Department of Citywide Administrative Services","Lump Sum","2783000","0","0" +"856CO264CADA","DCAS","Department of Citywide Administrative Services","Lump Sum","13000","0","0" +"856CO264SIMP","DCAS","Department of Citywide Administrative Services","Lump Sum","202040000","0","0" +"856CO293GCON","DCAS","Department of Citywide Administrative Services","Lump Sum","25754000","1337700.11","521299.89" +"856CO81ADA1","DCAS","Department of Citywide Administrative Services","Lump Sum","1261000","69000","21000" +"856CO-ADA","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856E22-0001","DCAS","Department of Citywide Administrative Services","Lump Sum","630907000","22111239.01","14889580.07" +"856E23-0003","DCAS","Department of Citywide Administrative Services","Lump Sum","3347000","24189237","0" +"856EO26-0036","DCAS","Department of Citywide Administrative Services","Lump Sum","7000","35156.89","80982.11" +"856EO26-0057","DCAS","Department of Citywide Administrative Services","Lump Sum","144000","2006399.66","0" +"856LL97SOLR","DCAS","Department of Citywide Administrative Services","Lump Sum","295000000","0","0" +"856ONE-NYC","DCAS","Department of Citywide Administrative Services","Lump Sum","318886000","0","0" +"856PW291ADA","DCAS","Department of Citywide Administrative Services","Lump Sum","1625000","0","0" +"856PW324CMGT","DCAS","Department of Citywide Administrative Services","Lump Sum","68000","0","0" +"856PW324ITHC","DCAS","Department of Citywide Administrative Services","Lump Sum","4445000","0","0" +"856PW326NYCC","DCAS","Department of Citywide Administrative Services","Lump Sum","6466000","444112.2","1970460.5" +"856PW326TOR2","DCAS","Department of Citywide Administrative Services","Lump Sum","0","39311.14","2633837.30" +"856PW335AS22","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PW340PMQA","DCAS","Department of Citywide Administrative Services","Lump Sum","1164000","0.0","21246917.9" +"856PW77125AD","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PW771CEAD","DCAS","Department of Citywide Administrative Services","Lump Sum","7227000","0","0" +"856PW77501AD","DCAS","Department of Citywide Administrative Services","Lump Sum","7700000","0","0" +"856PW77CTCX4","DCAS","Department of Citywide Administrative Services","Lump Sum","30201000","0","0" +"856PW77CTYAD","DCAS","Department of Citywide Administrative Services","Lump Sum","4839000","0","0" +"856PWDHOUSRV","DCAS","Department of Citywide Administrative Services","Lump Sum","1200000","0","0" +"856PWDJAYMCA","DCAS","Department of Citywide Administrative Services","Lump Sum","1490000","0","0" +"856PWDNBHS","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWDNCA","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWDNCAH","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWDNCAHR","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWDNFSC","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWDNFSR","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWDTCAHFH","DCAS","Department of Citywide Administrative Services","Lump Sum","15800000","0","0" +"856PWKNCAHB","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856PWM77FH","DCAS","Department of Citywide Administrative Services","Lump Sum","457000","0","0" +"856PWR77SICC","DCAS","Department of Citywide Administrative Services","Lump Sum","1000000","0","0" +"856PWXBXWRX","DCAS","Department of Citywide Administrative Services","Lump Sum","1000000","0","0" +"856SCA24ELE","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCA24K191","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCA24M030","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCA24X039","DCAS","Department of Citywide Administrative Services","Lump Sum","-27904000","11307","151072" +"856SCA26ELE","DCAS","Department of Citywide Administrative Services","Lump Sum","84608000","0","0" +"856SCA27ELE","DCAS","Department of Citywide Administrative Services","Lump Sum","74421000","0","0" +"856SCA28ELE","DCAS","Department of Citywide Administrative Services","Lump Sum","115000000","0","0" +"856SCA29ELE","DCAS","Department of Citywide Administrative Services","Lump Sum","240243000","0","0" +"856SCACIP10","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-K162","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-K420","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-M048","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-M129","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-M218","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-M501","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-Q169","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-Q186","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-Q510","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-R041","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCAE-X099","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCASJVPV","DCAS","Department of Citywide Administrative Services","Lump Sum","0","0","0" +"856SCHOOLSET","DCAS","Department of Citywide Administrative Services","Lump Sum","1939000","0","0" +"856TYP-ADA","DCAS","Department of Citywide Administrative Services","Lump Sum","18079000","0","0" +"858BROADBAND","OTI","Office of Technology and Innovation","Lump Sum","56215000","0","0" +"858CITY4NGEN","OTI","Office of Technology and Innovation","Lump Sum","-71000","187345.56","7739380.94" +"998CAP2529","NYCTA","Transit Authority","Lump Sum","1800000000","0","0" +"998REVRAPD95","NYCTA","Transit Authority","Lump Sum","44000000","6096090.56","93903909.44" +"998REVSUR95","NYCTA","Transit Authority","Lump Sum","11000000","1302717.68","23697282.32" +"998TCMISC","NYCTA","Transit Authority","Lump Sum","2690000","0","3346000" +"998TRACK95","NYCTA","Transit Authority","Lump Sum","350000000","3518260","941480728" +"035L103RENO","NYRL","New York Research Libraries","Fixed Asset","0","0","0" +"035L21LPAADA","NYRL","New York Research Libraries","Fixed Asset","515000","0","0" +"035L21SCHOMB","NYRL","New York Research Libraries","Fixed Asset","0","0","0" +"035L23SCHOMB","NYRL","New York Research Libraries","Fixed Asset","2132000","0","0" +"035L25SCHADA","NYRL","New York Research Libraries","Fixed Asset","2400000","0","0" +"035L26LPAHVA","NYRL","New York Research Libraries","Fixed Asset","4250000","0","0" +"037LN18ALRFW","NYPL","New York Public Library","Fixed Asset","1000000","0","0" +"037LN18BEADA","NYPL","New York Public Library","Fixed Asset","500000","0","0" +"037LN18CAFTW","NYPL","New York Public Library","Fixed Asset","216000","1372.00","776136.28" +"037LN18CAHTP","NYPL","New York Public Library","Fixed Asset","65000","105252.17","703944.86" +"037LN18CAMEL","NYPL","New York Public Library","Fixed Asset","80000","94568.48","675065.70" +"037LN18CAPTR","NYPL","New York Public Library","Fixed Asset","41000","81757.68","556066.07" +"037LN18RDADA","NYPL","New York Public Library","Fixed Asset","500000","0","0" +"037LN19CAREN","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LN19MMLIO","NYPL","New York Public Library","Fixed Asset","4000","358.32","3003663.22" +"037LN20CHAIO","NYPL","New York Public Library","Fixed Asset","14000","3349.37","460989.15" +"037LN21INWIO","NYPL","New York Public Library","Fixed Asset","112000","3486.12","1089113.34" +"037LN21TSADA","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LN22CA125","NYPL","New York Public Library","Fixed Asset","30000","1025.00","708014.38" +"037LN22HFIO","NYPL","New York Public Library","Fixed Asset","1188000","618635.54","0" +"037LN22HUDPK","NYPL","New York Public Library","Fixed Asset","4220000","0","0" +"037LN22KPSBY","NYPL","New York Public Library","Fixed Asset","1719000","0","0" +"037LN23EDWCR","NYPL","New York Public Library","Fixed Asset","19116000","0","0" +"037LN23STGHV","NYPL","New York Public Library","Fixed Asset","600000","0","0" +"037LN24GDNEW","NYPL","New York Public Library","Fixed Asset","14023000","0","0" +"037LN24HKIO","NYPL","New York Public Library","Fixed Asset","1000000","637333.83","48180.77" +"037LN24TSCR","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LN25CIHVR","NYPL","New York Public Library","Fixed Asset","4000000","0","0" +"037LN25CLHVA","NYPL","New York Public Library","Fixed Asset","4000000","0","0" +"037LN25CSHVA","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LN26GRKCR","NYPL","New York Public Library","Fixed Asset","500000","0","0" +"037LN26SDHVA","NYPL","New York Public Library","Fixed Asset","4000000","0","0" +"037LN26TMHVA","NYPL","New York Public Library","Fixed Asset","10000000","0","0" +"037LN26WBHVA","NYPL","New York Public Library","Fixed Asset","8000000","0","0" +"037LN26WHWIN","NYPL","New York Public Library","Fixed Asset","2000000","0","0" +"037LN26YVHVA","NYPL","New York Public Library","Fixed Asset","3500000","0","0" +"037LNBEREXRE","NYPL","New York Public Library","Fixed Asset","1000000","0","0" +"037LNGDEXTRO","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LNLCGTSCN","NYPL","New York Public Library","Fixed Asset","26004000","0","0" +"037LNLCGTSDS","NYPL","New York Public Library","Fixed Asset","5100000","0","0" +"037LNRA18RCH","NYPL","New York Public Library","Fixed Asset","450000","0","0" +"037LNSYSBOIL","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LNSYSRFHV","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LN-SYSWID","NYPL","New York Public Library","Fixed Asset","0","0","0" +"037LNVNADABA","NYPL","New York Public Library","Fixed Asset","500000","0","0" +"038LBC18FHSG","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC18GSMR","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC18KBFS","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC18KBHC","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC18MRSI","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC20MPMR","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC21BPIT","BPL","Brooklyn Public Library","Fixed Asset","0","0","73044" +"038LBC21EFFE","BPL","Brooklyn Public Library","Fixed Asset","0","670.74","432404.87" +"038LBC22CDEL","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC22CDOD","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC22RHFE","BPL","Brooklyn Public Library","Fixed Asset","750000","0","0" +"038LBC23BPFE","BPL","Brooklyn Public Library","Fixed Asset","1000000","0","0" +"038LBC23GSBR","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBC25UPIF","BPL","Brooklyn Public Library","Fixed Asset","1300000","0","0" +"038LBC26WIIO","BPL","Brooklyn Public Library","Fixed Asset","250000","0","0" +"038LBCENFCP1","BPL","Brooklyn Public Library","Fixed Asset","362000","51238.84","0" +"038LBCENFCP2","BPL","Brooklyn Public Library","Fixed Asset","1500000","0","0" +"038LBCENP2B","BPL","Brooklyn Public Library","Fixed Asset","20951000","0","0" +"038LBK24CHSA","BPL","Brooklyn Public Library","Fixed Asset","1000000","0","0" +"038LBK26BVIO","BPL","Brooklyn Public Library","Fixed Asset","1850000","0","0" +"038LBK26EPIO","BPL","Brooklyn Public Library","Fixed Asset","1000000","0","0" +"038LBK26WWIO","BPL","Brooklyn Public Library","Fixed Asset","165000","0","0" +"038LBM20ASFE","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM22BHSA","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM25BWAD","BPL","Brooklyn Public Library","Fixed Asset","2000000","0","0" +"038LBM25CGFE","BPL","Brooklyn Public Library","Fixed Asset","71000","0","0" +"038LBM25CTIF","BPL","Brooklyn Public Library","Fixed Asset","9000000","0","0" +"038LBM25DKHC","BPL","Brooklyn Public Library","Fixed Asset","4000000","0","0" +"038LBM25FHAD","BPL","Brooklyn Public Library","Fixed Asset","2000000","0","0" +"038LBM25WBHC","BPL","Brooklyn Public Library","Fixed Asset","6000000","0","0" +"038LBM25WTAD","BPL","Brooklyn Public Library","Fixed Asset","2000000","0","0" +"038LBM26CIIF","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26DKIF","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26HCSB","BPL","Brooklyn Public Library","Fixed Asset","15000000","0","0" +"038LBM26KHHC","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26MRIF","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26PDSA","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26PSIF","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26RYIT","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26SBBR","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM26WBIF","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBM28MPPH","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038LBMECH&FS","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"038SANDYLBLS","BPL","Brooklyn Public Library","Fixed Asset","0","0","0" +"039LQARV-FFE","QPL","Queens Borough Public Library","Fixed Asset","713000","0","0" +"039LQBCHREAD","QPL","Queens Borough Public Library","Fixed Asset","230000","0","0" +"039LQBC-ROOF","QPL","Queens Borough Public Library","Fixed Asset","545000","0","0" +"039LQBR-ROOF","QPL","Queens Borough Public Library","Fixed Asset","1002000","0","0" +"039LQCA20MGR","QPL","Queens Borough Public Library","Fixed Asset","1000000","0","0" +"039LQCELHVAC","QPL","Queens Borough Public Library","Fixed Asset","10232000","0","0" +"039LQEFRENOV","QPL","Queens Borough Public Library","Fixed Asset","21900000","0","0" +"039LQFL-REP","QPL","Queens Borough Public Library","Fixed Asset","9530000","0","0" +"039LQFM-HVAC","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"039LQGORN-25","QPL","Queens Borough Public Library","Fixed Asset","6000000","0","0" +"039LQHILRENO","QPL","Queens Borough Public Library","Fixed Asset","1450000","0","0" +"039LQLAHEXTR","QPL","Queens Borough Public Library","Fixed Asset","1116000","0","0" +"039LQLFK-INT","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"039LQMA-HVAC","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"039LQNFP-REN","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"039LQNO-HVAC","QPL","Queens Borough Public Library","Fixed Asset","4000000","0","0" +"039LQPMRN-23","QPL","Queens Borough Public Library","Fixed Asset","3000000","0","0" +"039LQQA21CTQ","QPL","Queens Borough Public Library","Fixed Asset","2801000","0","0" +"039LQRVRN-25","QPL","Queens Borough Public Library","Fixed Asset","11700000","0","0" +"039SANDYLQLS","QPL","Queens Borough Public Library","Fixed Asset","0","0","0" +"040ACEDOE512","DOE","Department of Education","Fixed Asset","0","1052900.31","7965941.69" +"040ACEFIT901","DOE","Department of Education","Fixed Asset","71000","824500","0" +"040ELP_1638X","DOE","Department of Education","Fixed Asset","2657000","2656858","0" +"040ELP_600HS","DOE","Department of Education","Fixed Asset","3016000","0","0" +"042ACECUN217","CUNY","City University of New York","Fixed Asset","0","833614.86","16002.14" +"042ACECUN218","CUNY","City University of New York","Fixed Asset","0","1322191.28","132099.72" +"042ACECUN221","CUNY","City University of New York","Fixed Asset","781000","8432113.59","109625.41" +"042ACECUN222","CUNY","City University of New York","Fixed Asset","2526000","26937554.33","376913.67" +"042ACECUN223","CUNY","City University of New York","Fixed Asset","4788000","1516969","0" +"042ACECUN507","CUNY","City University of New York","Fixed Asset","119000","172654.51","183060.49" +"042BA001-021","CUNY","City University of New York","Fixed Asset","292000","0","0" +"042BA001-022","CUNY","City University of New York","Fixed Asset","1000000","82309","0" +"042BA001-023","CUNY","City University of New York","Fixed Asset","425000","0","0" +"042BA001-025","CUNY","City University of New York","Fixed Asset","950000","0","0" +"042BA001-026","CUNY","City University of New York","Fixed Asset","2250000","0","0" +"042BA002-024","CUNY","City University of New York","Fixed Asset","450000","0","0" +"042BA007-007","CUNY","City University of New York","Fixed Asset","2000","287.74","673430.28" +"042BA019-016","CUNY","City University of New York","Fixed Asset","0","0","1550457" +"042BA024-018","CUNY","City University of New York","Fixed Asset","250000","0","0" +"042BA025-018","CUNY","City University of New York","Fixed Asset","260000","0","0" +"042BX001-024","CUNY","City University of New York","Fixed Asset","3412000","301770","44706" +"042BX001-025","CUNY","City University of New York","Fixed Asset","1969000","0","0" +"042BX006-022","CUNY","City University of New York","Fixed Asset","998000","151904","0" +"042BX024-011","CUNY","City University of New York","Fixed Asset","1000","2718553.62","13235555.38" +"042BX042-018","CUNY","City University of New York","Fixed Asset","1085000","165113","0" +"042BX044-018","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042BX045-018","CUNY","City University of New York","Fixed Asset","0","0","0" +"042BX046-019","CUNY","City University of New York","Fixed Asset","2593000","406608","0" +"042BX047-020","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042BX049-020","CUNY","City University of New York","Fixed Asset","2564000","435898","0" +"042BX200-017","CUNY","City University of New York","Fixed Asset","1000","545499.21","34270601.79" +"042BY007-004","CUNY","City University of New York","Fixed Asset","46000","0.00","1593223.37" +"042BY012-005","CUNY","City University of New York","Fixed Asset","0","0","31058" +"042BY031-017","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042BY032-018","CUNY","City University of New York","Fixed Asset","2500000","0","0" +"042BY033-019","CUNY","City University of New York","Fixed Asset","0","0","0" +"042BY037-020","CUNY","City University of New York","Fixed Asset","0","0","0" +"042BY078-000","CUNY","City University of New York","Fixed Asset","8000","0.00","1978894.20" +"042CA001-023","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042CA001QB25","CUNY","City University of New York","Fixed Asset","1284000","216000","0" +"042CA002CA01","CUNY","City University of New York","Fixed Asset","104000","495552","0" +"042CA003-023","CUNY","City University of New York","Fixed Asset","350000","0","0" +"042CA004-023","CUNY","City University of New York","Fixed Asset","1500000","0","0" +"042CA005-021","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042CA005-022","CUNY","City University of New York","Fixed Asset","900000","0","0" +"042CA006-022","CUNY","City University of New York","Fixed Asset","50000","0","0" +"042CA007-022","CUNY","City University of New York","Fixed Asset","2600000","0","0" +"042CA008QB01","CUNY","City University of New York","Fixed Asset","632000","1004324.98","112254.02" +"042CA009-022","CUNY","City University of New York","Fixed Asset","335000","0","0" +"042CA022BX01","CUNY","City University of New York","Fixed Asset","29354000","10880274.54","710300.46" +"042CA022KG01","CUNY","City University of New York","Fixed Asset","8866000","1016698.59","117301.41" +"042CA022KG02","CUNY","City University of New York","Fixed Asset","539000","492778.3","1211555.7" +"042CA022QB01","CUNY","City University of New York","Fixed Asset","136000","1249704.76","113910.24" +"042CA025QB04","CUNY","City University of New York","Fixed Asset","2477000","306936","0" +"042CA025QB05","CUNY","City University of New York","Fixed Asset","607000",, +"042CA025QB06","CUNY","City University of New York","Fixed Asset","683000",, +"042CA026YC01","CUNY","City University of New York","Fixed Asset","5143000","5143000","0" +"042CA026YC02","CUNY","City University of New York","Fixed Asset","650000","650000","0" +"042CA032-013","CUNY","City University of New York","Fixed Asset","213000","0","1398164" +"042CA034HS13","CUNY","City University of New York","Fixed Asset","3050000","2353728.60","3521271.40" +"042CA034KG13","CUNY","City University of New York","Fixed Asset","98000","537","27823" +"042CA034QB13","CUNY","City University of New York","Fixed Asset","369000","600458.88","570804.12" +"042CA049-022","CUNY","City University of New York","Fixed Asset","2500000","0","0" +"042CA055QB17","CUNY","City University of New York","Fixed Asset","1467000","152926.66","2782132.34" +"042CA056QB17","CUNY","City University of New York","Fixed Asset","248000","219600","0" +"042CA091-096","CUNY","City University of New York","Fixed Asset","370418000","0","0" +"042CA091BX23","CUNY","City University of New York","Fixed Asset","6129000","39409.84","118468.14" +"042CA091HS96","CUNY","City University of New York","Fixed Asset","6000000","52802.66","947197.34" +"042CA091KG01","CUNY","City University of New York","Fixed Asset","2482000","404601.05","12998.95" +"042CA091KG02","CUNY","City University of New York","Fixed Asset","10000","2704101","0" +"042CA091KG03","CUNY","City University of New York","Fixed Asset","48000","427675","0" +"042CA091LG22","CUNY","City University of New York","Fixed Asset","4659000","4598806.22","217801.78" +"042CA091LG23","CUNY","City University of New York","Fixed Asset","14549000","1326536.23","159864.77" +"042CA091QB23","CUNY","City University of New York","Fixed Asset","295000","2593104.32","111606.68" +"042CA091QB24","CUNY","City University of New York","Fixed Asset","144000","697751.00","75570.00" +"042CA091QB25","CUNY","City University of New York","Fixed Asset","49000","601359","0" +"042CA091QB26","CUNY","City University of New York","Fixed Asset","275000","19950.56","30049.44" +"042CA200BX04","CUNY","City University of New York","Fixed Asset","83000","0.00","742475.35" +"042CA200BX21","CUNY","City University of New York","Fixed Asset","3073000","3031001.18","19426869.82" +"042CA201BX21","CUNY","City University of New York","Fixed Asset","3107000","1969227.44","135650.56" +"042CA201MC03","CUNY","City University of New York","Fixed Asset","49000","0.00","1950999.98" +"042CA201MC25","CUNY","City University of New York","Fixed Asset","222000","993639","0" +"042CA202HS04","CUNY","City University of New York","Fixed Asset","767000","0.00","636848.61" +"042CA234KG13","CUNY","City University of New York","Fixed Asset","2880000","7021857.68","473810.32" +"042CC001-022","CUNY","City University of New York","Fixed Asset","31000","1990549.53","477950.47" +"042CC001-024","CUNY","City University of New York","Fixed Asset","250000","0","0" +"042CC001-025","CUNY","City University of New York","Fixed Asset","2000000","0","0" +"042CC001-026","CUNY","City University of New York","Fixed Asset","3200000","0","0" +"042CC002-025","CUNY","City University of New York","Fixed Asset","200000","0","0" +"042CC003-025","CUNY","City University of New York","Fixed Asset","17100000","17100000","0" +"042CC009-007","CUNY","City University of New York","Fixed Asset","0","17570.48","596023.81" +"042CC015-008","CUNY","City University of New York","Fixed Asset","300000","0","0" +"042CC019-011","CUNY","City University of New York","Fixed Asset","33000","0.00","3304999.99" +"042CC034-016","CUNY","City University of New York","Fixed Asset","250000","0","0" +"042CC039-017","CUNY","City University of New York","Fixed Asset","200000","0","0" +"042CC040-018","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042CC042-018","CUNY","City University of New York","Fixed Asset","1252000","0","0" +"042CL001-024","CUNY","City University of New York","Fixed Asset","9697000","7632057","0" +"042CL001-026","CUNY","City University of New York","Fixed Asset","3700000","0","0" +"042CL018-015","CUNY","City University of New York","Fixed Asset","0","0.00","887326.41" +"042CL020-018","CUNY","City University of New York","Fixed Asset","375000","253151","0" +"042GR001-025","CUNY","City University of New York","Fixed Asset","142000","47250","110250" +"042GR001-026","CUNY","City University of New York","Fixed Asset","1200000","0","0" +"042GR002-026","CUNY","City University of New York","Fixed Asset","117000","0","0" +"042GR005-007","CUNY","City University of New York","Fixed Asset","20000","1597.69","180171.31" +"042GR010-022","CUNY","City University of New York","Fixed Asset","120000","0","0" +"042GR017-014","CUNY","City University of New York","Fixed Asset","87000","52056.58","1446275.74" +"042GR018-015","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042GR022-017","CUNY","City University of New York","Fixed Asset","3604000","0","0" +"042GR023-017","CUNY","City University of New York","Fixed Asset","975000","0","0" +"042GU001-012","CUNY","City University of New York","Fixed Asset","87000","23415.06","282178.94" +"042GU031-013","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042GU051-015","CUNY","City University of New York","Fixed Asset","31000","0","0" +"042HC001-021","CUNY","City University of New York","Fixed Asset","0","0","0" +"042HC001-023","CUNY","City University of New York","Fixed Asset","0","0","0" +"042HC001-026","CUNY","City University of New York","Fixed Asset","750000","0","0" +"042HC002-023","CUNY","City University of New York","Fixed Asset","135000","1","1015140" +"042HC002-024","CUNY","City University of New York","Fixed Asset","300000","0","0" +"042HC005-025","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042HC006-025","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042HC008-002","CUNY","City University of New York","Fixed Asset","1000","0","93420" +"042HC032-017","CUNY","City University of New York","Fixed Asset","0","0","1081605" +"042HC033-019","CUNY","City University of New York","Fixed Asset","0","0","0" +"042HC034-018","CUNY","City University of New York","Fixed Asset","0","0","0" +"042HC075-098","CUNY","City University of New York","Fixed Asset","21000","0.00","16441727.55" +"042HS001-024","CUNY","City University of New York","Fixed Asset","6400000","58973.15","41026.85" +"042HS007-022","CUNY","City University of New York","Fixed Asset","6400000","600000","0" +"042HS055-018","CUNY","City University of New York","Fixed Asset","375000","0","0" +"042HS057-019","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042HU001-023","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042HU001-024","CUNY","City University of New York","Fixed Asset","0","400000","0" +"042HU001-026","CUNY","City University of New York","Fixed Asset","350000","0","0" +"042HU002-023","CUNY","City University of New York","Fixed Asset","100000","92600","0" +"042HU002-025","CUNY","City University of New York","Fixed Asset","478000","0","0" +"042HU003-023","CUNY","City University of New York","Fixed Asset","150000","0","0" +"042HU004-021","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042HU004-025","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042HU008-005","CUNY","City University of New York","Fixed Asset","100000","0.00","1718867.58" +"042HU011-022","CUNY","City University of New York","Fixed Asset","150000","0","0" +"042HU026-013","CUNY","City University of New York","Fixed Asset","0","0","0" +"042HU027-013","CUNY","City University of New York","Fixed Asset","28290000","0","0" +"042HU037-017","CUNY","City University of New York","Fixed Asset","5000000","0","0" +"042HU038-018","CUNY","City University of New York","Fixed Asset","200000","0","0" +"042HU040-018","CUNY","City University of New York","Fixed Asset","1900000","0","0" +"042HU040-019","CUNY","City University of New York","Fixed Asset","250000","0","0" +"042HU041-019","CUNY","City University of New York","Fixed Asset","2285000","0","0" +"042HU042-019","CUNY","City University of New York","Fixed Asset","0","0.00","464961.95" +"042JJ024-017","CUNY","City University of New York","Fixed Asset","650000","0","0" +"042JJ029-018","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042KG001-021","CUNY","City University of New York","Fixed Asset","0","0","0" +"042KG001-022","CUNY","City University of New York","Fixed Asset","450000","0","0" +"042KG001-023","CUNY","City University of New York","Fixed Asset","755000","0","0" +"042KG001-024","CUNY","City University of New York","Fixed Asset","2568000","387809.23","44190.77" +"042KG001-025","CUNY","City University of New York","Fixed Asset","2000000","0","0" +"042KG001-026","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042KG002-026","CUNY","City University of New York","Fixed Asset","2000000","0","0" +"042KG025-009","CUNY","City University of New York","Fixed Asset","25000","61035.12","2211996.88" +"042KG031-013","CUNY","City University of New York","Fixed Asset","1410000","8500526.27","396204.73" +"042KG043-018","CUNY","City University of New York","Fixed Asset","0","0","0" +"042KG045-020","CUNY","City University of New York","Fixed Asset","719000","7244208","0" +"042KG206-006","CUNY","City University of New York","Fixed Asset","5000","389674.51","2887306.49" +"042LAGUARDIA","CUNY","City University of New York","Fixed Asset","72000","6628.69","334535.37" +"042LG001-024","CUNY","City University of New York","Fixed Asset","4190000","810000","0" +"042LG001-025","CUNY","City University of New York","Fixed Asset","2500000","0","0" +"042LG002-021","CUNY","City University of New York","Fixed Asset","75000","0","0" +"042LG002-024","CUNY","City University of New York","Fixed Asset","2000000","0","0" +"042LG003-023","CUNY","City University of New York","Fixed Asset","5866000","1134000","0" +"042LG020-009","CUNY","City University of New York","Fixed Asset","557000","6227.34","8000128.81" +"042LG023-009","CUNY","City University of New York","Fixed Asset","2000","0.00","1140308.66" +"042LG024-009","CUNY","City University of New York","Fixed Asset","0","0.00","185824.93" +"042LG036-014","CUNY","City University of New York","Fixed Asset","4024000","6654780.27","642628.73" +"042LG040-016","CUNY","City University of New York","Fixed Asset","24274000","55178911.87","5159773.13" +"042LG041-016","CUNY","City University of New York","Fixed Asset","5357000","471509.03","643396.97" +"042LG043-018","CUNY","City University of New York","Fixed Asset","7422000","7094943.61","265264.39" +"042LG070-010","CUNY","City University of New York","Fixed Asset","0","0.00","1642583.90" +"042LG071-019","CUNY","City University of New York","Fixed Asset","3332000","0","0" +"042LG072-019","CUNY","City University of New York","Fixed Asset","150000","0","0" +"042LM001-024","CUNY","City University of New York","Fixed Asset","3000000","2373391","0" +"042LM001-026","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042LM002-021","CUNY","City University of New York","Fixed Asset","468000","0","0" +"042LM002-026","CUNY","City University of New York","Fixed Asset","820000","0","0" +"042LM004-022","CUNY","City University of New York","Fixed Asset","0","0","0" +"042LM036-019","CUNY","City University of New York","Fixed Asset","27000","0","1200000" +"042LM041-020","CUNY","City University of New York","Fixed Asset","0","9503.00","690381.00" +"042LM043-021","CUNY","City University of New York","Fixed Asset","125000","369691.64","576450.36" +"042MC001-021","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042MC001-022","CUNY","City University of New York","Fixed Asset","6652000","573085.45","74914.55" +"042MC001-023","CUNY","City University of New York","Fixed Asset","2000000","0","0" +"042MC001-024","CUNY","City University of New York","Fixed Asset","350000","0","0" +"042MC001-026","CUNY","City University of New York","Fixed Asset","200000","0","0" +"042MC002-025","CUNY","City University of New York","Fixed Asset","3000000","0","0" +"042MC040-018","CUNY","City University of New York","Fixed Asset","535000","0","0" +"042MC042-018","CUNY","City University of New York","Fixed Asset","2048000","101698.01","100301.99" +"042MC044-019","CUNY","City University of New York","Fixed Asset","0","0","0" +"042MC045-020","CUNY","City University of New York","Fixed Asset","1198000","102051","0" +"042ME001-022","CUNY","City University of New York","Fixed Asset","0","0","0" +"042ME001-023","CUNY","City University of New York","Fixed Asset","2700000","0","0" +"042ME001-025","CUNY","City University of New York","Fixed Asset","1500000","0","0" +"042ME018-005","CUNY","City University of New York","Fixed Asset","75000","0.00","9651124.52" +"042ME035-016","CUNY","City University of New York","Fixed Asset","49000","0","751352" +"042ME038-016","CUNY","City University of New York","Fixed Asset","1500000","0","0" +"042ME039-017","CUNY","City University of New York","Fixed Asset","1500000","0","0" +"042ME041-018","CUNY","City University of New York","Fixed Asset","1500000","0","0" +"042MH040-014","CUNY","City University of New York","Fixed Asset","285000","0","0" +"042MH053-016","CUNY","City University of New York","Fixed Asset","100000","0","0" +"042NY006-009","CUNY","City University of New York","Fixed Asset","7000","29877.76","785027.96" +"042NY011-011","CUNY","City University of New York","Fixed Asset","533000","0.00","503390.11" +"042NY012-011","CUNY","City University of New York","Fixed Asset","0","0.00","108937.87" +"042NY013-011","CUNY","City University of New York","Fixed Asset","247000","0","0" +"042NY018-014","CUNY","City University of New York","Fixed Asset","0","0","0" +"042NY020-015","CUNY","City University of New York","Fixed Asset","0","0","0" +"042NY024-018","CUNY","City University of New York","Fixed Asset","437000","17896.00","5250000.00" +"042NY033-022","CUNY","City University of New York","Fixed Asset","20000","0","0" +"042NY034-022","CUNY","City University of New York","Fixed Asset","0","0","0" +"042YC001-021","CUNY","City University of New York","Fixed Asset","1035000","0","0" +"042OFFSHRWND","CUNY","City University of New York","Fixed Asset","3758000","0","0" +"042OSW01BX25","CUNY","City University of New York","Fixed Asset","996000","0","0" +"042OSW01NY25","CUNY","City University of New York","Fixed Asset","285000","0","0" +"042OSW01QB25","CUNY","City University of New York","Fixed Asset","1100000","399091","0" +"042OSW01ST25","CUNY","City University of New York","Fixed Asset","451000","0","0" +"042OSW02NY25","CUNY","City University of New York","Fixed Asset","1617000","1616343","0" +"042OSW02ST25","CUNY","City University of New York","Fixed Asset","913000","0","0" +"042QB001-021","CUNY","City University of New York","Fixed Asset","3515000","591264","0" +"042QB001-022","CUNY","City University of New York","Fixed Asset","3207000","1172757.97","111242.03" +"042QB001-023","CUNY","City University of New York","Fixed Asset","5400000","276041.5","47958.5" +"042QB001-026","CUNY","City University of New York","Fixed Asset","3000000","0","0" +"042QB002-024","CUNY","City University of New York","Fixed Asset","21000","0","0" +"042QB002-025","CUNY","City University of New York","Fixed Asset","232000","0","0" +"042QB002-026","CUNY","City University of New York","Fixed Asset","7000000","0","0" +"042QB023-004","CUNY","City University of New York","Fixed Asset","158000","0.00","2342602.88" +"042QB029-006","CUNY","City University of New York","Fixed Asset","84000","0.00","605096.56" +"042QB040-011","CUNY","City University of New York","Fixed Asset","1118000","0.00","1181736.76" +"042QB041-011","CUNY","City University of New York","Fixed Asset","25000","875857.87","1449492.13" +"042QB054-016","CUNY","City University of New York","Fixed Asset","1273000","1169484.88","152629.12" +"042QB062-020","CUNY","City University of New York","Fixed Asset","7063000","134005.5","120446.5" +"042QB063-020","CUNY","City University of New York","Fixed Asset","3000","0","0" +"042QC001-021","CUNY","City University of New York","Fixed Asset","0","0","0" +"042QC001-022","CUNY","City University of New York","Fixed Asset","7058000","5817728","538362" +"042QC001-023","CUNY","City University of New York","Fixed Asset","8197000","113253","347547" +"042QC001-025","CUNY","City University of New York","Fixed Asset","500000","0","0" +"042QC002-024","CUNY","City University of New York","Fixed Asset","1600000","0","0" +"042QC002-026","CUNY","City University of New York","Fixed Asset","874000","0","0" +"042QC003-025","CUNY","City University of New York","Fixed Asset","0","0","0" +"042QC004-025","CUNY","City University of New York","Fixed Asset","0","0","0" +"042QC062-016","CUNY","City University of New York","Fixed Asset","0","0","1998450" +"042QC072-019","CUNY","City University of New York","Fixed Asset","0","0","0" +"042QC074-019","CUNY","City University of New York","Fixed Asset","1450000","0","0" +"042QC076-020","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042QC077-020","CUNY","City University of New York","Fixed Asset","0","0","0" +"042QC078-020","CUNY","City University of New York","Fixed Asset","2500000","0","0" +"042SAND-KG02","CUNY","City University of New York","Fixed Asset","486000","0.00","26743.92" +"042SAND-KG03","CUNY","City University of New York","Fixed Asset","4139000","4208677.18","2716322.82" +"042SAND-MC01","CUNY","City University of New York","Fixed Asset","110000","0","0" +"042SEED-YC27","CUNY","City University of New York","Fixed Asset","5800000","0","0" +"042SJ001-025","CUNY","City University of New York","Fixed Asset","200000","0","0" +"042ST001-021","CUNY","City University of New York","Fixed Asset","615000","0","0" +"042ST001-023","CUNY","City University of New York","Fixed Asset","1200000","0","0" +"042ST002-023","CUNY","City University of New York","Fixed Asset","814000","0","0" +"042ST002-024","CUNY","City University of New York","Fixed Asset","4932000","0","0" +"042ST007-005","CUNY","City University of New York","Fixed Asset","726000","0.00","271429.12" +"042ST039-019","CUNY","City University of New York","Fixed Asset","1934000","0","202160" +"042ST041-020","CUNY","City University of New York","Fixed Asset","876000","320348","53722" +"042YC001-022","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042YC001-025","CUNY","City University of New York","Fixed Asset","0","0","0" +"042YC001-026","CUNY","City University of New York","Fixed Asset","2840000","0","0" +"042YC002-023","CUNY","City University of New York","Fixed Asset","1500000","0","0" +"042YC002-024","CUNY","City University of New York","Fixed Asset","6000000","0","0" +"042YC002-025","CUNY","City University of New York","Fixed Asset","1000000","0","0" +"042YC008-022","CUNY","City University of New York","Fixed Asset","1248000","0","0" +"042YC052-016","CUNY","City University of New York","Fixed Asset","0","1088498.35","2337957.30" +"042YC057-018","CUNY","City University of New York","Fixed Asset","0","0","0" +"042YC059-019","CUNY","City University of New York","Fixed Asset","943000","752815.00","2867635.00" +"042YC061-020","CUNY","City University of New York","Fixed Asset","1099000","0","7027785" +"042YC063-020","CUNY","City University of New York","Fixed Asset","2000000","0","0" +"056ACEPOL241","NYPD","Police Department","Fixed Asset","4393000","0","0" +"056APINYPD02","NYPD","Police Department","Fixed Asset","10520000","0","0" +"056JGHILLBID","NYPD","Police Department","Fixed Asset","25000","0.00","31929.83" +"056PO005PRP1","NYPD","Police Department","Fixed Asset","0","0","0" +"056PO208-COM","NYPD","Police Department","Fixed Asset","-697000","0.00","22569315.39" +"056PO79112H","NYPD","Police Department","Fixed Asset","450000","0","0" +"056PO79137CS","NYPD","Police Department","Fixed Asset","18541000","41952.55","0" +"056PO791PPDR","NYPD","Police Department","Fixed Asset","0","0","0" +"056PO791PPF","NYPD","Police Department","Fixed Asset","13659000","1262009.59","4659526.34" +"056PO791PPSD","NYPD","Police Department","Fixed Asset","0","0","0" +"056PO79-52P","NYPD","Police Department","Fixed Asset","0","0","0" +"056PO79BATH","NYPD","Police Department","Fixed Asset","21000","43738.47","37052809.56" +"056PO79BMAHH","NYPD","Police Department","Fixed Asset","98000","0","0" +"056PO79BMAJX","NYPD","Police Department","Fixed Asset","412000","34815.78","46897.5" +"056PO79BMAJZ","NYPD","Police Department","Fixed Asset","140000","513277.78","4647266.25" +"056PO79BMAKB","NYPD","Police Department","Fixed Asset","112000","9745.22","13444.78" +"056PO79BMAKC","NYPD","Police Department","Fixed Asset","1500000","0","0" +"056PO79BMAKI","NYPD","Police Department","Fixed Asset","9396000","0","0" +"056PO79BMAKJ","NYPD","Police Department","Fixed Asset","0","42934.10","815748.11" +"056PO79BMAKK","NYPD","Police Department","Fixed Asset","365000","45827.51","805172.49" +"056PO79BMAKM","NYPD","Police Department","Fixed Asset","2908000","0","0" +"056PO79BMAKN","NYPD","Police Department","Fixed Asset","1365000","49780","85020" +"056PO79BMAKO","NYPD","Police Department","Fixed Asset","6249000","144000","27500" +"056PO79BMAKW","NYPD","Police Department","Fixed Asset","300000","0","0" +"056PO79BMAKX","NYPD","Police Department","Fixed Asset","2340000","0","0" +"056PO79BMALA","NYPD","Police Department","Fixed Asset","1533000","0","0" +"056PO79BMALC","NYPD","Police Department","Fixed Asset","2557000","129530","32000" +"056PO79BMALG","NYPD","Police Department","Fixed Asset","6783000","210125","25875" +"056PO79BMALI","NYPD","Police Department","Fixed Asset","4000","0.00","301743.38" +"056PO79BMALK","NYPD","Police Department","Fixed Asset","2500000","0","0" +"056PO79BMAHI","NYPD","Police Department","Fixed Asset","920000","173275.88","2241436.83" +"056PO79BMAHO","NYPD","Police Department","Fixed Asset","236000","167375","2254625" +"056PO79BMAHS","NYPD","Police Department","Fixed Asset","10472000","8943662.05","379462.29" +"056PO79BMAHY","NYPD","Police Department","Fixed Asset","4452000","37500","99000" +"056PO79BTOWP","NYPD","Police Department","Fixed Asset","8014000","0","0" +"056PO79ELE13","NYPD","Police Department","Fixed Asset","3211000","246878.16","0" +"056PO79FTTIL","NYPD","Police Department","Fixed Asset","8956000","0","0" +"056PO79HCFDR","NYPD","Police Department","Fixed Asset","3586000","249365.82","314732.2" +"056PO79HQBB","NYPD","Police Department","Fixed Asset","48000","127772.24","7097887.85" +"056PO79HWAVE","NYPD","Police Department","Fixed Asset","9638000","179860.01","179049.99" +"056PO79IAB","NYPD","Police Department","Fixed Asset","14540000","0","0" +"056PO79LABB","NYPD","Police Department","Fixed Asset","1000","0.00","276270.46" +"056PO79LABFR","NYPD","Police Department","Fixed Asset","885000","0","0" +"056PO79-MED","NYPD","Police Department","Fixed Asset","0","0","0" +"056PO79PADRS","NYPD","Police Department","Fixed Asset","1524000","0","0" +"056PO79PAL","NYPD","Police Department","Fixed Asset","0",, +"056PO79-PBXS","NYPD","Police Department","Fixed Asset","6126000","4696500.12","0" +"056POD106REN","NYPD","Police Department","Fixed Asset","4131000","107821.39","261586.68" +"056POD115PRK","NYPD","Police Department","Fixed Asset","0","488.04","186124.96" +"056PO-D19TH","NYPD","Police Department","Fixed Asset","300000","0","0" +"056POD47RENO","NYPD","Police Department","Fixed Asset","936000","54000","10000" +"056PO-Q106","NYPD","Police Department","Fixed Asset","1000000","0","0" +"056SANDCONDT","NYPD","Police Department","Fixed Asset","1616000","0","0" +"056SANDELEC2","NYPD","Police Department","Fixed Asset","1000","0.0","1581374.0" +"057ACEFDN201","FDNY","Fire Department","Fixed Asset","0","44578.76","821557.05" +"057ACEFDN202","FDNY","Fire Department","Fixed Asset","0","22305.43","75243.86" +"057ACEFDN203","FDNY","Fire Department","Fixed Asset","660000","305079.67","221743.94" +"057ACEFDN801","FDNY","Fire Department","Fixed Asset","0","0.00","31256.44" +"057ACEFDN902","FDNY","Fire Department","Fixed Asset","940000","523809.14","1570012.53" +"057F109EXTOR","FDNY","Fire Department","Fixed Asset","63000","0","62500" +"057F109FOM23","FDNY","Fire Department","Fixed Asset","3000000","0","0" +"057F109SPPUM","FDNY","Fire Department","Fixed Asset","2000000","0","0" +"057F1-34STRT","FDNY","Fire Department","Fixed Asset","0","0","0" +"057F175CHILL","FDNY","Fire Department","Fixed Asset","20611000","587965.10","850082.43" +"057F175CHL20","FDNY","Fire Department","Fixed Asset","295000","0","0" +"057F175CHLL2","FDNY","Fire Department","Fixed Asset","11000000","851435.27","0" +"057F175CHM14","FDNY","Fire Department","Fixed Asset","181000","0","0" +"057F175DRMC6","FDNY","Fire Department","Fixed Asset","105000","95514.96","0" +"057F175EMS58","FDNY","Fire Department","Fixed Asset","29374000","60683.93","1253815.82" +"057F175-EMS7","FDNY","Fire Department","Fixed Asset","70500000","0","0" +"057F175-ES55","FDNY","Fire Department","Fixed Asset","0","0","0" +"057F175FHREN","FDNY","Fire Department","Fixed Asset","82036000","0","0" +"057F175FMUSM","FDNY","Fire Department","Fixed Asset","2150000","0","0" +"057F175KIT42","FDNY","Fire Department","Fixed Asset","155000","1491391.97","152686.64" +"057F175KTE22","FDNY","Fire Department","Fixed Asset","23000","141283.58","1468487.21" +"057F175MARN4","FDNY","Fire Department","Fixed Asset","0","0","0" +"057F175MC152","FDNY","Fire Department","Fixed Asset","8360000","0.00","689989.29" +"057F175MC153","FDNY","Fire Department","Fixed Asset","745000","2050539.92","6095955.20" +"057F175MC159","FDNY","Fire Department","Fixed Asset","750000","796538.68","10235233.42" +"057F175MC218","FDNY","Fire Department","Fixed Asset","0","207557.86","8723262.88" +"057F175MC224","FDNY","Fire Department","Fixed Asset","18000","69705.16","10335657.78" +"057F175MC253","FDNY","Fire Department","Fixed Asset","0","16797.66","10445569.85" +"057F175MC266","FDNY","Fire Department","Fixed Asset","7349000","93553.39","571908.15" +"057F175MC288","FDNY","Fire Department","Fixed Asset","6086000","301936.40","428493.07" +"056PO79LOCK","NYPD","Police Department","Fixed Asset","8004000","2557331.17","49137576.75" +"056SANDCD08","NYPD","Police Department","Fixed Asset","709000","37676.00","121326.80" +"056SANDCD13","NYPD","Police Department","Fixed Asset","11000","0","0" +"056SANDCD5","NYPD","Police Department","Fixed Asset","469000","38562.70","124556.90" +"057F175MC304","FDNY","Fire Department","Fixed Asset","4923000","206210.56","431386.81" +"057F175MC307","FDNY","Fire Department","Fixed Asset","7630000","136020.28","694836.28" +"057F175MCE33","FDNY","Fire Department","Fixed Asset","7184000","88478.51","593208.50" +"057F175MCE74","FDNY","Fire Department","Fixed Asset","175000","211961.53","6353615.02" +"057F175MCE91","FDNY","Fire Department","Fixed Asset","168000","917.69","873820.70" +"057F175MCL20","FDNY","Fire Department","Fixed Asset","68000","0.00","961336.76" +"057F175MR1WF","FDNY","Fire Department","Fixed Asset","20288000","0","0" +"057F175MULTI","FDNY","Fire Department","Fixed Asset","65610000","0","0" +"057F175RF161","FDNY","Fire Department","Fixed Asset","181000","11210.06","1832791.08" +"057F175RF264","FDNY","Fire Department","Fixed Asset","5182000","4710349.33","0" +"057F175RFMR9","FDNY","Fire Department","Fixed Asset","4200000","0","0" +"057F175RTU45","FDNY","Fire Department","Fixed Asset","240000","0","0" +"057F175SE263","FDNY","Fire Department","Fixed Asset","257000","257488","0" +"057F175SEWER","FDNY","Fire Department","Fixed Asset","-1000","0.00","1032896.25" +"057F175TPE45","FDNY","Fire Department","Fixed Asset","283000","282765.7","0" +"057F175UPSCO","FDNY","Fire Department","Fixed Asset","1357000","0","0" +"057F175WE291","FDNY","Fire Department","Fixed Asset","993000","0","0" +"057F175WN266","FDNY","Fire Department","Fixed Asset","400000","0","0" +"057F175WN329","FDNY","Fire Department","Fixed Asset","0","400.00","359501.16" +"057F175WP301","FDNY","Fire Department","Fixed Asset","393000","529995.73","4668549.45" +"057F175WP303","FDNY","Fire Department","Fixed Asset","169000","203718.12","2252571.44" +"057F175WP325","FDNY","Fire Department","Fixed Asset","39000","31502.11","2112043.46" +"057F175WU299","FDNY","Fire Department","Fixed Asset","247000","370104.13","2367359.41" +"057F175XIN82","FDNY","Fire Department","Fixed Asset","554000","1024467.91","10474649.72" +"057F1FTRENOV","FDNY","Fire Department","Fixed Asset","2027000","439654.28","0" +"057F1-OAC","FDNY","Fire Department","Fixed Asset","14434000","0.00","492143.23" +"057F204CLEAR","FDNY","Fire Department","Fixed Asset","6000000","298855.84","0" +"057F204FT317","FDNY","Fire Department","Fixed Asset","0","0.00","473086.16" +"057F204FT400","FDNY","Fire Department","Fixed Asset","0","0","0" +"057F204FT420","FDNY","Fire Department","Fixed Asset","1800000","161359.01","0" +"057F204FTGAS","FDNY","Fire Department","Fixed Asset","13071000","0","0" +"057F204MSUMC","FDNY","Fire Department","Fixed Asset","14000","51659.97","88271.41" +"057F204RAND1","FDNY","Fire Department","Fixed Asset","302000","302258.03","0" +"057F204SHADE","FDNY","Fire Department","Fixed Asset","0","0","0" +"057F204TRAN3","FDNY","Fire Department","Fixed Asset","15350000","700046.65","1549528.48" +"057F212APPDM","FDNY","Fire Department","Fixed Asset","0","43877.31","2067859.69" +"057F212FIRES","FDNY","Fire Department","Fixed Asset","5284000","353500","37800" +"057F212NERIS","FDNY","Fire Department","Fixed Asset","1716000","18.94","1325515.02" +"057F212PCS21","FDNY","Fire Department","Fixed Asset","4338000","0","0" +"057FD109FSFS","FDNY","Fire Department","Fixed Asset","85000","0","0" +"057FD175D152","FDNY","Fire Department","Fixed Asset","125000","76911.6","0" +"057FD175D153","FDNY","Fire Department","Fixed Asset","0","0.00","99310.83" +"057FD175D156","FDNY","Fire Department","Fixed Asset","125000","76911.6","0" +"057FD175D214","FDNY","Fire Department","Fixed Asset","0","0.00","52992.61" +"057FD175D230","FDNY","Fire Department","Fixed Asset","0","0.00","50170.41" +"057FD175D241","FDNY","Fire Department","Fixed Asset","0","0.00","57380.41" +"057FD175D262","FDNY","Fire Department","Fixed Asset","0","0","80724" +"057FD175D270","FDNY","Fire Department","Fixed Asset","250000","190899.05","0" +"057FD175D271","FDNY","Fire Department","Fixed Asset","0","0","141950" +"057FD175D281","FDNY","Fire Department","Fixed Asset","0","0.00","125575.83" +"057FD175D287","FDNY","Fire Department","Fixed Asset","0","0.00","102040.33" +"057FD175D288","FDNY","Fire Department","Fixed Asset","280000","157807.29","0" +"057FD175D291","FDNY","Fire Department","Fixed Asset","0","0","138242" +"057FD175D311","FDNY","Fire Department","Fixed Asset","38000","0.00","87084.68" +"057FD175D314","FDNY","Fire Department","Fixed Asset","31000","0.00","94142.82" +"057FD175D316","FDNY","Fire Department","Fixed Asset","0","0.0","67857.6" +"057FD175D324","FDNY","Fire Department","Fixed Asset","0","0","90895" +"057FD175DE15","FDNY","Fire Department","Fixed Asset","0","0.00","118674.83" +"057FD175DE21","FDNY","Fire Department","Fixed Asset","0","0.00","73592.61" +"057FD175DE22","FDNY","Fire Department","Fixed Asset","0","0","138096" +"057FD175DE95","FDNY","Fire Department","Fixed Asset","75000","0","0" +"057FD175DR44","FDNY","Fire Department","Fixed Asset","0","0.00","62194.13" +"057FD175DR70","FDNY","Fire Department","Fixed Asset","35000","89587.12","0" +"057FD175DRE5","FDNY","Fire Department","Fixed Asset","0","0","68023" +"057FD175DRS3","FDNY","Fire Department","Fixed Asset","69000","0","0" +"057FD175DRS4","FDNY","Fire Department","Fixed Asset","70000","0","0" +"057FD175DRS8","FDNY","Fire Department","Fixed Asset","69000","0","0" +"057FD175DS20","FDNY","Fire Department","Fixed Asset","69000","0","0" +"057FD175DS32","FDNY","Fire Department","Fixed Asset","69000","0","0" +"057FD175DS47","FDNY","Fire Department","Fixed Asset","68000","0","0" +"057FD175DS61","FDNY","Fire Department","Fixed Asset","0","0.00","59079.91" +"057FD175E287","FDNY","Fire Department","Fixed Asset","200000","0","0" +"057FD175K221","FDNY","Fire Department","Fixed Asset","1200000","0","0" +"057FD175K316","FDNY","Fire Department","Fixed Asset","1200000","0","0" +"057FD175KT96","FDNY","Fire Department","Fixed Asset","1622000","111989.08","149360.86" +"057FD175M156","FDNY","Fire Department","Fixed Asset","1800000","0","0" +"057FD175M329","FDNY","Fire Department","Fixed Asset","2600000","0","0" +"057FD175MC62","FDNY","Fire Department","Fixed Asset","1400000","0","0" +"057FD175MC96","FDNY","Fire Department","Fixed Asset","2200000","0","0" +"057FD175W154","FDNY","Fire Department","Fixed Asset","0","0.00","370126.43" +"057FD175W166","FDNY","Fire Department","Fixed Asset","0","0.00","431673.53" +"057FD175W245","FDNY","Fire Department","Fixed Asset","0","0.00","261462.09" +"057FD175W248","FDNY","Fire Department","Fixed Asset","0","0.00","160906.64" +"057FD175W288","FDNY","Fire Department","Fixed Asset","300000","0","0" +"057FD175WHZT","FDNY","Fire Department","Fixed Asset","300000","0","0" +"057FD175WN22","FDNY","Fire Department","Fixed Asset","164000","5500.00","384015.85" +"057FD175WN28","FDNY","Fire Department","Fixed Asset","13000","40367.57","514600.87" +"057FK175W257","FDNY","Fire Department","Fixed Asset","600000","0","0" +"057FQ175K307","FDNY","Fire Department","Fixed Asset","1121000","12724.52","65801.29" +"057FX175WN46","FDNY","Fire Department","Fixed Asset","84000","0.00","290603.57" +"057ID21WDR82","FDNY","Fire Department","Fixed Asset","11000","395886.75","2302973.53" +"057SANDCNCAB","FDNY","Fire Department","Fixed Asset","0","512018.14","330649.52" +"057SANDCNDIT","FDNY","Fire Department","Fixed Asset","37852000","0","0" +"057SANDCNINS","FDNY","Fire Department","Fixed Asset","6464000","673097.00","7131783.80" +"057SANDCNJCI","FDNY","Fire Department","Fixed Asset","242000","0","0" +"057SANDHMES4","FDNY","Fire Department","Fixed Asset","1026000","7109.01","180810.37" +"057SEED-EC72","FDNY","Fire Department","Fixed Asset","1500000","1136550.53","361380.78" +"068150RESTAK","ACS","Administration for Children's Services","Fixed Asset","0","0","0" +"068ACSPDF","ACS","Administration for Children's Services","Fixed Asset","32898000","0","0" +"068BARSTOW","ACS","Administration for Children's Services","Fixed Asset","303000","350372.88","703395.53" +"068CROSSHVAC","ACS","Administration for Children's Services","Fixed Asset","3000000","0","0" +"068CSK002NLC","ACS","Administration for Children's Services","Fixed Asset","23000","0","226900" +"068CWFFP","ACS","Administration for Children's Services","Fixed Asset","0","0","0" +"068DCSTRUC","ACS","Administration for Children's Services","Fixed Asset","0","0","0" +"068EMQREN","ACS","Administration for Children's Services","Fixed Asset","50000000","0","0" +"068FAFREPL","ACS","Administration for Children's Services","Fixed Asset","0","0","0" +"068HORIHVAC","ACS","Administration for Children's Services","Fixed Asset","3000000","0","0" +"068HPEEOLEOS","ACS","Administration for Children's Services","Fixed Asset","1883000","184432.74","3044958.64" +"068HQRELOCA","ACS","Administration for Children's Services","Fixed Asset","1184000","1113338.76","8819232.50" +"068HYPERCONV","ACS","Administration for Children's Services","Fixed Asset","318000","0","0" +"068NORTHCLIN","ACS","Administration for Children's Services","Fixed Asset","281000","0","0" +"068WEBGATE","ACS","Administration for Children's Services","Fixed Asset","88000","0.00","978116.48" +"068WEBGATERE","ACS","Administration for Children's Services","Fixed Asset","870000","0","0" +"071ACEDHS801","DHS","Department of Homeless Services","Fixed Asset","115000","0","0" +"071HH105BPAU","DHS","Department of Homeless Services","Fixed Asset","0","130139.52","4250345.72" +"071HH105HEAT","DHS","Department of Homeless Services","Fixed Asset","601000","352371.69","247676.36" +"057FD175E249","FDNY","Fire Department","Fixed Asset","0","0","0" +"057FM175WN76","FDNY","Fire Department","Fixed Asset","0","0.00","339121.54" +"057FQ175W275","FDNY","Fire Department","Fixed Asset","221000","0.00","278998.04" +"071HH112AVED","DHS","Department of Homeless Services","Fixed Asset","2971000","0","0" +"071HH112BAFS","DHS","Department of Homeless Services","Fixed Asset","4978000","0","0" +"071HH112BLSB","DHS","Department of Homeless Services","Fixed Asset","38750000","0","0" +"071HH112BLWB","DHS","Department of Homeless Services","Fixed Asset","4133000","0","0" +"071HH112FRRF","DHS","Department of Homeless Services","Fixed Asset","711000","2339000","0" +"071HH112HBAT","DHS","Department of Homeless Services","Fixed Asset","5920000","0","0" +"071HH112HHAC","DHS","Department of Homeless Services","Fixed Asset","3360000","0","0" +"071HH112HINT","DHS","Department of Homeless Services","Fixed Asset","8600000","0","0" +"071HH112HLET","DHS","Department of Homeless Services","Fixed Asset","14596000","0","0" +"071HH112HSHP","DHS","Department of Homeless Services","Fixed Asset","4400000","0","0" +"071HH112HWFA","DHS","Department of Homeless Services","Fixed Asset","0","0","0" +"071HH112KTFR","DHS","Department of Homeless Services","Fixed Asset","171000","105889.68","864646.30" +"071HH112LEDV","DHS","Department of Homeless Services","Fixed Asset","1000000","0","0" +"071HH112LFER","DHS","Department of Homeless Services","Fixed Asset","450000","42520","37480" +"071HH112LINT","DHS","Department of Homeless Services","Fixed Asset","504000","0","0" +"071HH112LMEP","DHS","Department of Homeless Services","Fixed Asset","1950000","150000","0" +"071HH112LXBR","DHS","Department of Homeless Services","Fixed Asset","2707000","0","0" +"071HH112PJAB","DHS","Department of Homeless Services","Fixed Asset","7093000","0","0" +"071HH112PJFS","DHS","Department of Homeless Services","Fixed Asset","5974000","0","0" +"071HH112PSBH","DHS","Department of Homeless Services","Fixed Asset","2000000","0","0" +"071HH112PSST","DHS","Department of Homeless Services","Fixed Asset","10000000","0","0" +"071HH112RFEL","DHS","Department of Homeless Services","Fixed Asset","23953000","0","0" +"071HH112SWBU","DHS","Department of Homeless Services","Fixed Asset","39720000","0","0" +"071HH112THBH","DHS","Department of Homeless Services","Fixed Asset","10500000","0","0" +"071HH112THBR","DHS","Department of Homeless Services","Fixed Asset","1100000","0","0" +"071HH112THEU","DHS","Department of Homeless Services","Fixed Asset","1000000","0","0" +"071HH112THEV","DHS","Department of Homeless Services","Fixed Asset","748000","68000","0" +"071HH115BEXT","DHS","Department of Homeless Services","Fixed Asset","3400000","0","0" +"071HH115BINT","DHS","Department of Homeless Services","Fixed Asset","7920000","0","0" +"071HH115BWWP","DHS","Department of Homeless Services","Fixed Asset","1000000","0","0" +"071HH115DMEP","DHS","Department of Homeless Services","Fixed Asset","1000000","0","0" +"071HH115FBME","DHS","Department of Homeless Services","Fixed Asset","924000","0","0" +"071HH115HOBU","DHS","Department of Homeless Services","Fixed Asset","9118000","0","0" +"071HH115HOEV","DHS","Department of Homeless Services","Fixed Asset","1000000","0","0" +"071HH115MMEP","DHS","Department of Homeless Services","Fixed Asset","275000","14600","10400" +"072C75RMSCAC","DOC","Department of Correction","Fixed Asset","5000","67238.56","3187915.01" +"071HH112FAFC","DHS","Department of Homeless Services","Fixed Asset","1693000","0","0" +"071HH112HMED","DHS","Department of Homeless Services","Fixed Asset","460000","15000","25000" +"071HH112KTEX","DHS","Department of Homeless Services","Fixed Asset","456000","0","0" +"071HH115BWRF","DHS","Department of Homeless Services","Fixed Asset","5193000","24125.72","58874.28" +"071HH115NLBR","DHS","Department of Homeless Services","Fixed Asset","3845000","0","0" +"071HH115SEXT","DHS","Department of Homeless Services","Fixed Asset","8008000","0","0" +"071HH115SINT","DHS","Department of Homeless Services","Fixed Asset","576000","0","0" +"071HH115SMEP","DHS","Department of Homeless Services","Fixed Asset","384000","0","0" +"071HH115SNBH","DHS","Department of Homeless Services","Fixed Asset","2022000","0","0" +"071HH115STEP","DHS","Department of Homeless Services","Fixed Asset","1056000","0","96000" +"071HH115UNFL","DHS","Department of Homeless Services","Fixed Asset","360000","0","0" +"071HHDN129SP","DHS","Department of Homeless Services","Fixed Asset","719000","0","0" +"071HHDNWPRI","DHS","Department of Homeless Services","Fixed Asset","2157000","0","0" +"071HHMN129SP","DHS","Department of Homeless Services","Fixed Asset","300000","0","0" +"071SOLARDHS1","DHS","Department of Homeless Services","Fixed Asset","0","0","0" +"071SOLARDHS2","DHS","Department of Homeless Services","Fixed Asset","0","0","0" +"071SOLARDHS3","DHS","Department of Homeless Services","Fixed Asset","0","0","0" +"072BBJCCCBK","DOC","Department of Correction","Fixed Asset","1900000","0","0" +"072BBJCCM","DOC","Department of Correction","Fixed Asset","20625000","0","0" +"072BBJCCQ","DOC","Department of Correction","Fixed Asset","20900000","0","0" +"072C-101LRF2","DOC","Department of Correction","Fixed Asset","558000","0","0" +"072C117ADMIN","DOC","Department of Correction","Fixed Asset","0","0","0" +"072C117CITY","DOC","Department of Correction","Fixed Asset","3944000","0","0" +"072C117DWIQA","DOC","Department of Correction","Fixed Asset","1000","1100","665967" +"072C117PISGN","DOC","Department of Correction","Fixed Asset","674000","0","0" +"072C117WATCH","DOC","Department of Correction","Fixed Asset","63000","0","0" +"072C138FSPH2","DOC","Department of Correction","Fixed Asset","1500000","0","0" +"072C138FSYS","DOC","Department of Correction","Fixed Asset","81000","928013.43","21164319.25" +"072C138GRFS2","DOC","Department of Correction","Fixed Asset","145000","7766.53","2561439.82" +"072C138NCFS2","DOC","Department of Correction","Fixed Asset","65000","19870","754123" +"072C75ACCGN","DOC","Department of Correction","Fixed Asset","423000","0","0" +"072C75ADANIC","DOC","Department of Correction","Fixed Asset","17000","22312.75","575369.33" +"072C75BOILER","DOC","Department of Correction","Fixed Asset","1430000","0","0" +"072C75CFEED","DOC","Department of Correction","Fixed Asset","1100000","0","0" +"072C75CTURB","DOC","Department of Correction","Fixed Asset","7586000","4864491.61","2519039.39" +"072C75-ELEV","DOC","Department of Correction","Fixed Asset","1000000","32310.58","3085195.01" +"072C75ENTGRV","DOC","Department of Correction","Fixed Asset","726000","0.00","569789.06" +"072C75ENTNC","DOC","Department of Correction","Fixed Asset","0","42798.00","336194.40" +"072C75FACREC","DOC","Department of Correction","Fixed Asset","0","0","0" +"072C75FENCE1","DOC","Department of Correction","Fixed Asset","0","461709.94","13283476.36" +"072C75FENCE4","DOC","Department of Correction","Fixed Asset","3300000","0","0" +"072C75-GCELL","DOC","Department of Correction","Fixed Asset","0","0","0" +"072C75GPARK","DOC","Department of Correction","Fixed Asset","0","0","0" +"072C75MARINA","DOC","Department of Correction","Fixed Asset","4620000","0","0" +"072C75NBOIL","DOC","Department of Correction","Fixed Asset","7087000","0","0" +"072C75PANEL","DOC","Department of Correction","Fixed Asset","392000","1818845.93","90942.3" +"072C75PIPE","DOC","Department of Correction","Fixed Asset","550000","0","0" +"072C75POWRF","DOC","Department of Correction","Fixed Asset","2703000","18598021.70","1999449.51" +"072C75PTREAT","DOC","Department of Correction","Fixed Asset","14605000","140850.00","346301.33" +"071HH115SNRF","DHS","Department of Homeless Services","Fixed Asset","634000","0","58000" +"071HHCN001MC","DHS","Department of Homeless Services","Fixed Asset","33000","0","100000" +"072C75NICFAC","DOC","Department of Correction","Fixed Asset","0","1713460.34","6423204.39" +"072C75RMPWR","DOC","Department of Correction","Fixed Asset","0","0.00","552308.88" +"072C75SEWR","DOC","Department of Correction","Fixed Asset","0","323799.04","1489299.25" +"072C75STDRN","DOC","Department of Correction","Fixed Asset","0","0","0" +"072C75STEAM","DOC","Department of Correction","Fixed Asset","0","137998.0","345226.8" +"072C75TANKS","DOC","Department of Correction","Fixed Asset","990000","0","0" +"072C75TMTRLR","DOC","Department of Correction","Fixed Asset","700000","211240.15","517881.85" +"072SANDGRVC","DOC","Department of Correction","Fixed Asset","10797000","0","0" +"096AGSIROREH","HRA","Human Resources Administration","Fixed Asset","236000","0","0" +"096HR110E16T","HRA","Human Resources Administration","Fixed Asset","150000","34550.23","421983.91" +"096HR120HIBT","HRA","Human Resources Administration","Fixed Asset","10000","595170.39","1001383.01" +"096HR120QCHU","HRA","Human Resources Administration","Fixed Asset","99000","0","0" +"096HR25103FC","HRA","Human Resources Administration","Fixed Asset","2139000","0","0" +"096HR25103FF","HRA","Human Resources Administration","Fixed Asset","500000","0","0" +"096HR25305RC","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HR2560LAC","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HR2560LAF","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HR258AVBO","HRA","Human Resources Administration","Fixed Asset","7188000","0","0" +"096HR258AVEF","HRA","Human Resources Administration","Fixed Asset","1620000","0","0" +"096HR25CHRYC","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HR25CHRYF","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HR25ENYF","HRA","Human Resources Administration","Fixed Asset","209000","812821.47","6757837.23" +"096HR25FOSD2","HRA","Human Resources Administration","Fixed Asset","9601000","0","0" +"096HR25FOSF2","HRA","Human Resources Administration","Fixed Asset","1323000","0","0" +"096HR25FOST2","HRA","Human Resources Administration","Fixed Asset","407000","405730","0" +"096HR25MUSSC","HRA","Human Resources Administration","Fixed Asset","14397000","0","0" +"096HR25MUSSF","HRA","Human Resources Administration","Fixed Asset","4320000","0","0" +"096HR25NORC","HRA","Human Resources Administration","Fixed Asset","26951000","0","0" +"096HR25NORF","HRA","Human Resources Administration","Fixed Asset","6700000","0","0" +"096HR25PTMFC","HRA","Human Resources Administration","Fixed Asset","88000","146266.48","1678396.42" +"096HR25TREMC","HRA","Human Resources Administration","Fixed Asset","8039000","0","0" +"096HR25TREMF","HRA","Human Resources Administration","Fixed Asset","2573000","0","0" +"096HR25WBRWF","HRA","Human Resources Administration","Fixed Asset","2001000","0","0" +"096HR25WBRWY","HRA","Human Resources Administration","Fixed Asset","7435000","0","0" +"096HRCNSJMS2","HRA","Human Resources Administration","Fixed Asset","190000","0","0" +"096HRCNSJMSC","HRA","Human Resources Administration","Fixed Asset","298000","0","0" +"096HRDN821F1","HRA","Human Resources Administration","Fixed Asset","250000","0","0" +"096HRDN821F2","HRA","Human Resources Administration","Fixed Asset","125000","0","0" +"096HRDN821F3","HRA","Human Resources Administration","Fixed Asset","125000","0","0" +"096HRDNGREEN","HRA","Human Resources Administration","Fixed Asset","2973000","0","0" +"096HRDNRENY","HRA","Human Resources Administration","Fixed Asset","3300000","0","0" +"096HRKNCUFHB","HRA","Human Resources Administration","Fixed Asset","2000000","0","0" +"096HRKNFICR","HRA","Human Resources Administration","Fixed Asset","313000","0","0" +"096HRKNTNF","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HRXNCHOP","HRA","Human Resources Administration","Fixed Asset","0","0","0" +"096HRXNKCC","HRA","Human Resources Administration","Fixed Asset","750000","0","0" +"111DOF5MOPST","UK","Unknown","Fixed Asset","10450000","1136250","0" +"111DOI5PAFIU","UK","Unknown","Fixed Asset","81000","362482.5","1248141.5" +"111LAW3STRNX","UK","Unknown","Fixed Asset","708000","0","0" +"111OLR5CRUG","UK","Unknown","Fixed Asset","48000","1342","209559" +"111PO163CLAB","UK","Unknown","Fixed Asset","29000","54121.83","1406508.85" +"111PO163CYB1","UK","Unknown","Fixed Asset","155000","0.00","6164006.70" +"111PO163ITSD","UK","Unknown","Fixed Asset","0","0.0","16238223.5" +"072C75RMSRFW","DOC","Department of Correction","Fixed Asset","0","282355.86","614834.14" +"072SANDAMKC","DOC","Department of Correction","Fixed Asset","272000","210394.75","4982218.62" +"072SANDRNDC","DOC","Department of Correction","Fixed Asset","239000","12760.85","2554282.48" +"111PO163JOCU","UK","Unknown","Fixed Asset","0","0","0" +"111PO163LAB2","UK","Unknown","Fixed Asset","4305000","0","0" +"111PO163PSRM","UK","Unknown","Fixed Asset","805000","0","0" +"111PO46-CALL","UK","Unknown","Fixed Asset","175000","0.00","2153437.12" +"111PO-D187E","UK","Unknown","Fixed Asset","0","0","0" +"111PWDANYSEC","UK","Unknown","Fixed Asset","0","0.00","1810533.65" +"111SBS5MYCBS","UK","Unknown","Fixed Asset","516000","70437.67","0" +"111TD18CORD2","UK","Unknown","Fixed Asset","0","0","244474" +"111TD18RRMMH","UK","Unknown","Fixed Asset","0","0","2881930" +"111TD18RTO","UK","Unknown","Fixed Asset","6441000","0","0" +"111TLC1CADS","UK","Unknown","Fixed Asset","1500000","0","0" +"125AGARCSRCT","DFTA","Department for the Aging","Fixed Asset","200000","0","0" +"125AGBXWOAC","DFTA","Department for the Aging","Fixed Asset","300000","0","0" +"125AGCCNSOAC","DFTA","Department for the Aging","Fixed Asset","300000","0","0" +"125AGCOTHLED","DFTA","Department for the Aging","Fixed Asset","150000","0","0" +"125AGMOTTOAC","DFTA","Department for the Aging","Fixed Asset","250000","0","0" +"125AGNYCHAG2","DFTA","Department for the Aging","Fixed Asset","20348000","0","0" +"125AGSTARREN","DFTA","Department for the Aging","Fixed Asset","230000","0","0" +"125AGTAB","DFTA","Department for the Aging","Fixed Asset","700000","0","0" +"125AGVARSRCT","DFTA","Department for the Aging","Fixed Asset","7471000","0","0" +"125AGWOODLED","DFTA","Department for the Aging","Fixed Asset","150000","0","0" +"125AGWOODRE1","DFTA","Department for the Aging","Fixed Asset","65000","0","0" +"126PV004-KCH","DCLA","Department of Cultural Affairs","Fixed Asset","1146000","0","0" +"126PV017OXUP","DCLA","Department of Cultural Affairs","Fixed Asset","2124000","0","0" +"126PV01P-LL2","DCLA","Department of Cultural Affairs","Fixed Asset","3550000","0","0" +"126PV01P-LLM","DCLA","Department of Cultural Affairs","Fixed Asset","4441000","0","0" +"126PV022AAOA","DCLA","Department of Cultural Affairs","Fixed Asset","13920000","0","0" +"126PV022ANEG","DCLA","Department of Cultural Affairs","Fixed Asset","18360000","0","0" +"126PV022NSCH","DCLA","Department of Cultural Affairs","Fixed Asset","17250000","0","0" +"126PV028LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","92000","0","0" +"126PV028SEAT","DCLA","Department of Cultural Affairs","Fixed Asset","150000","0","0" +"126PV02YLGT1","DCLA","Department of Cultural Affairs","Fixed Asset","160000","116076.2","0" +"126PV033LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","0","0.00","137513.12" +"126PV034BELN","DCLA","Department of Cultural Affairs","Fixed Asset","16755000","0","0" +"126PV034-INF","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV034RR26","DCLA","Department of Cultural Affairs","Fixed Asset","9600000","0","0" +"126PV038-LX1","DCLA","Department of Cultural Affairs","Fixed Asset","0","0.00","125406.44" +"126PV03HMASN","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV03HROOF","DCLA","Department of Cultural Affairs","Fixed Asset","1057000","0","0" +"126PV040PORT","DCLA","Department of Cultural Affairs","Fixed Asset","2658000","0","0" +"126PV04ZAPER","DCLA","Department of Cultural Affairs","Fixed Asset","1000000","0","0" +"126PV050CORE","DCLA","Department of Cultural Affairs","Fixed Asset","14250000","0","0" +"126PV050CYLT","DCLA","Department of Cultural Affairs","Fixed Asset","1051000","0","0" +"126PV050ENTR","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV05BRENO","DCLA","Department of Cultural Affairs","Fixed Asset","4619000","0","0" +"126PV05LSFL1","DCLA","Department of Cultural Affairs","Fixed Asset","4750000","0","0" +"126PV05YTM21","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV068CNTR","DCLA","Department of Cultural Affairs","Fixed Asset","3000000","0","0" +"126PV06EARTS","DCLA","Department of Cultural Affairs","Fixed Asset","6322000","0","0" +"126PV06PCMAA","DCLA","Department of Cultural Affairs","Fixed Asset","5000000","0","0" +"126PV06WASIA","DCLA","Department of Cultural Affairs","Fixed Asset","2006000","0","0" +"126PV06ZCNJC","DCLA","Department of Cultural Affairs","Fixed Asset","2500000","0","0" +"126PV07DSTUD","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV07ECUS1","DCLA","Department of Cultural Affairs","Fixed Asset","174000","0","0" +"111PO187GCHA","UK","Unknown","Fixed Asset","312000","0.00","256688.58" +"126PV07ZBFA1","DCLA","Department of Cultural Affairs","Fixed Asset","600000","0","0" +"126PV087-NEQ","DCLA","Department of Cultural Affairs","Fixed Asset","392000","0","0" +"126PV088LGT2","DCLA","Department of Cultural Affairs","Fixed Asset","396000","0","0" +"126PV08AICP1","DCLA","Department of Cultural Affairs","Fixed Asset","825000","0","0" +"126PV08JROOF","DCLA","Department of Cultural Affairs","Fixed Asset","50000","0","0" +"126PV091CJH1","DCLA","Department of Cultural Affairs","Fixed Asset","244000","204297","0" +"126PV091ELEV","DCLA","Department of Cultural Affairs","Fixed Asset","450000","0","0" +"126PV101-EDU","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV101HVAC","DCLA","Department of Cultural Affairs","Fixed Asset","12991000","0","0" +"126PV122-HLD","DCLA","Department of Cultural Affairs","Fixed Asset","10813000","0","0" +"126PV123LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","82000","0.0","308641.3" +"126PV143BOIL","DCLA","Department of Cultural Affairs","Fixed Asset","850000","0","0" +"126PV144-EQ1","DCLA","Department of Cultural Affairs","Fixed Asset","179000","0","0" +"126PV144FAC2","DCLA","Department of Cultural Affairs","Fixed Asset","5409000","0","0" +"126PV162VARC","DCLA","Department of Cultural Affairs","Fixed Asset","1653000","0","0" +"126PV175EDUC","DCLA","Department of Cultural Affairs","Fixed Asset","13300000","0","0" +"126PV176AVRY","DCLA","Department of Cultural Affairs","Fixed Asset","2000000","0","0" +"126PV176BLR1","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176BLR3","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176BLR4","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176BLR5","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176BLR6","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176BLR7","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176GELA","DCLA","Department of Cultural Affairs","Fixed Asset","1500000","0","0" +"126PV176LIGH","DCLA","Department of Cultural Affairs","Fixed Asset","1962000","0","0" +"126PV176MONK","DCLA","Department of Cultural Affairs","Fixed Asset","35509000","0","0" +"126PV176WILD","DCLA","Department of Cultural Affairs","Fixed Asset","10600000","0","0" +"126PV185HA11","DCLA","Department of Cultural Affairs","Fixed Asset","8000","0.00","64753.24" +"126PV198ARCH","DCLA","Department of Cultural Affairs","Fixed Asset","9930000","0","0" +"126PV198STUD","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV204HVAC","DCLA","Department of Cultural Affairs","Fixed Asset","4600000","0","0" +"126PV204LTG1","DCLA","Department of Cultural Affairs","Fixed Asset","2401000","0","0" +"126PV204RENO","DCLA","Department of Cultural Affairs","Fixed Asset","13911000","0","0" +"126PV205GLIB","DCLA","Department of Cultural Affairs","Fixed Asset","18179000","0","0" +"126PV205MOSH","DCLA","Department of Cultural Affairs","Fixed Asset","11000000","0","0" +"126PV205-RET","DCLA","Department of Cultural Affairs","Fixed Asset","39000","0","0" +"126PV207APLO","DCLA","Department of Cultural Affairs","Fixed Asset","28710000","0","0" +"126PV209LLEV","DCLA","Department of Cultural Affairs","Fixed Asset","23625000","0","0" +"126PV209RENO","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV222EAST","DCLA","Department of Cultural Affairs","Fixed Asset","42750000","0","0" +"126PV230GLOV","DCLA","Department of Cultural Affairs","Fixed Asset","4985000","0","0" +"126PV230TENS","DCLA","Department of Cultural Affairs","Fixed Asset","582000","0","0" +"126PV235AFAR","DCLA","Department of Cultural Affairs","Fixed Asset","10512000","0","0" +"126PV235AMER","DCLA","Department of Cultural Affairs","Fixed Asset","51234000","0","0" +"126PV235STOR","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV236JHPG","DCLA","Department of Cultural Affairs","Fixed Asset","8000000","0","0" +"126PV236PERG","DCLA","Department of Cultural Affairs","Fixed Asset","3000000","0","0" +"126PV236ROSE","DCLA","Department of Cultural Affairs","Fixed Asset","2000000","0","0" +"126PV241COOL","DCLA","Department of Cultural Affairs","Fixed Asset","2500000","0","0" +"126PV241-STL","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV256HVC2","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV256INFS","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV256MTC5","DCLA","Department of Cultural Affairs","Fixed Asset","52000","0.00","99179.66" +"126PV256MTC7","DCLA","Department of Cultural Affairs","Fixed Asset","251000","0","0" +"126PV262-GEO","DCLA","Department of Cultural Affairs","Fixed Asset","3000000","0","0" +"126PV262HVAC","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV263-FLY","DCLA","Department of Cultural Affairs","Fixed Asset","5350000","0","0" +"126PV264-PJS","DCLA","Department of Cultural Affairs","Fixed Asset","626000","0","0" +"126PV264ROSE","DCLA","Department of Cultural Affairs","Fixed Asset","7000000","0","0" +"126PV264RRHT","DCLA","Department of Cultural Affairs","Fixed Asset","1727000","0","0" +"126PV272-PAV","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV272QUAD","DCLA","Department of Cultural Affairs","Fixed Asset","6699000","0","0" +"126PV274FMLI","DCLA","Department of Cultural Affairs","Fixed Asset","5900000","0","0" +"126PV278CHLL","DCLA","Department of Cultural Affairs","Fixed Asset","1103000","0","0" +"126PV279ELV2","DCLA","Department of Cultural Affairs","Fixed Asset","5309000","0","0" +"126PV279GENE","DCLA","Department of Cultural Affairs","Fixed Asset","960000","0","0" +"126PV285-NBT","DCLA","Department of Cultural Affairs","Fixed Asset","35106000","0","0" +"126PV288EAST","DCLA","Department of Cultural Affairs","Fixed Asset","332000","0","0" +"126PV289ANSP","DCLA","Department of Cultural Affairs","Fixed Asset","11150000","0","0" +"126PV289NWDA","DCLA","Department of Cultural Affairs","Fixed Asset","3000","548396.95","499095.05" +"126PV290LGT2","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV291EXTN","DCLA","Department of Cultural Affairs","Fixed Asset","4811000","0","0" +"126PV291QM2E","DCLA","Department of Cultural Affairs","Fixed Asset","1500000","0","0" +"126PV293-ADD","DCLA","Department of Cultural Affairs","Fixed Asset","1658000","0","0" +"126PV302BPH2","DCLA","Department of Cultural Affairs","Fixed Asset","48000","0","0" +"126PV304-4TH","DCLA","Department of Cultural Affairs","Fixed Asset","3000000","0","0" +"126PV304TRAN","DCLA","Department of Cultural Affairs","Fixed Asset","75000","0","0" +"126PV307NYTW","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV329-HZN","DCLA","Department of Cultural Affairs","Fixed Asset","7779000","0","0" +"126PV332EXT2","DCLA","Department of Cultural Affairs","Fixed Asset","6488000","0","0" +"126PV332POP6","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV333BLD1","DCLA","Department of Cultural Affairs","Fixed Asset","1008000","0","0" +"126PV333LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","143000","76.32","314367.37" +"126PV333-LX1","DCLA","Department of Cultural Affairs","Fixed Asset","148000","782.28","324258.71" +"126PV333PRE4","DCLA","Department of Cultural Affairs","Fixed Asset","23082000","0","0" +"126PV341GALL","DCLA","Department of Cultural Affairs","Fixed Asset","950000","0","0" +"126PV345LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","426000","0","0" +"126PV354ST54","DCLA","Department of Cultural Affairs","Fixed Asset","14489000","0","0" +"126PV364LTG1","DCLA","Department of Cultural Affairs","Fixed Asset","276000","0","1209624" +"126PV364RTN","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV375HLD","DCLA","Department of Cultural Affairs","Fixed Asset","123000","0","0" +"126PV375LGT2","DCLA","Department of Cultural Affairs","Fixed Asset","0","0.08","357549.61" +"126PV381CLIM","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV381ENTR","DCLA","Department of Cultural Affairs","Fixed Asset","27038000","0","0" +"126PV394SCHR","DCLA","Department of Cultural Affairs","Fixed Asset","16925000","0","0" +"126PV394WTR2","DCLA","Department of Cultural Affairs","Fixed Asset","625000","0","0" +"126PV394WVTR","DCLA","Department of Cultural Affairs","Fixed Asset","5436000","0","0" +"126PV409LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","188000","0","0" +"126PV411LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","128000","95900.04","0" +"126PV413RENO","DCLA","Department of Cultural Affairs","Fixed Asset","8064000","0","0" +"126PV420GNCH","DCLA","Department of Cultural Affairs","Fixed Asset","8955000","0","0" +"126PV421RAMP","DCLA","Department of Cultural Affairs","Fixed Asset","200000","0","0" +"126PV422-FAC","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV424KTCH","DCLA","Department of Cultural Affairs","Fixed Asset","9750000","0","0" +"126PV424-PH2","DCLA","Department of Cultural Affairs","Fixed Asset","550000","0","0" +"126PV448-BN2","DCLA","Department of Cultural Affairs","Fixed Asset","3234000","0","0" +"126PV464-ARM","DCLA","Department of Cultural Affairs","Fixed Asset","3158000","0","0" +"126PV464QUAD","DCLA","Department of Cultural Affairs","Fixed Asset","6200000","0","0" +"126PV464RLLX","DCLA","Department of Cultural Affairs","Fixed Asset","37000","0.00","92439.36" +"126PV464SEAT","DCLA","Department of Cultural Affairs","Fixed Asset","8000","0.00","59665.28" +"126PV466LIGH","DCLA","Department of Cultural Affairs","Fixed Asset","2880000","0","0" +"126PV466QTP","DCLA","Department of Cultural Affairs","Fixed Asset","22616000","0","0" +"126PV467651","DCLA","Department of Cultural Affairs","Fixed Asset","175000","0","0" +"126PV467GUG8","DCLA","Department of Cultural Affairs","Fixed Asset","1000000","0","0" +"126PV467-HHM","DCLA","Department of Cultural Affairs","Fixed Asset","21636000","0","0" +"126PV467LIGH","DCLA","Department of Cultural Affairs","Fixed Asset","100000","0.00","340297.94" +"126PV467NEWC","DCLA","Department of Cultural Affairs","Fixed Asset","18835000","0","0" +"126PV467RPH2","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV467SHAS","DCLA","Department of Cultural Affairs","Fixed Asset","600000","0","0" +"126PV489CRN1","DCLA","Department of Cultural Affairs","Fixed Asset","1749000","0","0" +"126PV489CRNR","DCLA","Department of Cultural Affairs","Fixed Asset","6649000","0","0" +"126PV489DAMP","DCLA","Department of Cultural Affairs","Fixed Asset","7330000","0","0" +"126PV489-REV","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV490CHIL","DCLA","Department of Cultural Affairs","Fixed Asset","4377000","0","0" +"126PV490-GOV","DCLA","Department of Cultural Affairs","Fixed Asset","1000000","0","0" +"126PV490INSR","DCLA","Department of Cultural Affairs","Fixed Asset","13925000","0","0" +"126PV490INT","DCLA","Department of Cultural Affairs","Fixed Asset","3429000","0","0" +"126PV490-K","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV490SWTG","DCLA","Department of Cultural Affairs","Fixed Asset","2575000","0","0" +"126PV501CRTY","DCLA","Department of Cultural Affairs","Fixed Asset","9230000","0","0" +"126PV501ELEV","DCLA","Department of Cultural Affairs","Fixed Asset","563000","0","0" +"126PV501ROOF","DCLA","Department of Cultural Affairs","Fixed Asset","3500000","0","0" +"126PV501RPH1","DCLA","Department of Cultural Affairs","Fixed Asset","6224000","0","0" +"126PV502ELEV","DCLA","Department of Cultural Affairs","Fixed Asset","9432000","0","0" +"126PV503-RET","DCLA","Department of Cultural Affairs","Fixed Asset","31000","0","0" +"126PV520LNS","DCLA","Department of Cultural Affairs","Fixed Asset","1750000","0","0" +"126PV520ROOF","DCLA","Department of Cultural Affairs","Fixed Asset","750000","0","0" +"126PV576TSMS","DCLA","Department of Cultural Affairs","Fixed Asset","1267000","0","0" +"126PV591RENO","DCLA","Department of Cultural Affairs","Fixed Asset","7458000","0","0" +"126PV612-THE","DCLA","Department of Cultural Affairs","Fixed Asset","220000","0","0" +"126PV645HVAC","DCLA","Department of Cultural Affairs","Fixed Asset","6092000","0","0" +"126PV653HVAC","DCLA","Department of Cultural Affairs","Fixed Asset","300000","0","0" +"126PV653-INT","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV654BSRC","DCLA","Department of Cultural Affairs","Fixed Asset","52013000","0","0" +"126PV654CULR","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV654-HLD","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV683LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","104398" +"126PV704HSA4","DCLA","Department of Cultural Affairs","Fixed Asset","10695000","0","0" +"126PV766RENO","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV767RTF3","DCLA","Department of Cultural Affairs","Fixed Asset","12000","0.00","71618.17" +"126PV788-TER","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV789ELEV","DCLA","Department of Cultural Affairs","Fixed Asset","1950000","0","0" +"126PV789MEZZ","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV789ROOF","DCLA","Department of Cultural Affairs","Fixed Asset","3870000","0","0" +"126PV791CINO","DCLA","Department of Cultural Affairs","Fixed Asset","7620000","0","0" +"126PV791ROOF","DCLA","Department of Cultural Affairs","Fixed Asset","100000","0","0" +"126PV820HVAC","DCLA","Department of Cultural Affairs","Fixed Asset","2126000","0","0" +"126PV831GGSE","DCLA","Department of Cultural Affairs","Fixed Asset","245000","0","0" +"126PV831LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","1000","0.10","208165.87" +"126PV853INLT","DCLA","Department of Cultural Affairs","Fixed Asset","813000","0","0" +"126PV853-SAW","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV921SPK2","DCLA","Department of Cultural Affairs","Fixed Asset","115000","0","0" +"126PV922-BCM","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV922-PAV","DCLA","Department of Cultural Affairs","Fixed Asset","10950000","0","0" +"126PV959LRTL","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV987LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","0","0.00","43645.75" +"126PV988LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV989LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","133000","0","0" +"126PV989RENO","DCLA","Department of Cultural Affairs","Fixed Asset","8011000","0","0" +"126PV990LGT1","DCLA","Department of Cultural Affairs","Fixed Asset","152000","136999.98","0" +"126PVBHPERET","DCLA","Department of Cultural Affairs","Fixed Asset","50000","0","0" +"126PVCPRBLDG","DCLA","Department of Cultural Affairs","Fixed Asset","1760000","0","0" +"126PVD205ELV","DCLA","Department of Cultural Affairs","Fixed Asset","3500000","0","0" +"126PVMAMARTN","DCLA","Department of Cultural Affairs","Fixed Asset","139000","0","0" +"126TFANARTN","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"801125STCORR","SBS","Department of Small Business Services","Fixed Asset","10000","0.00","1443810.08" +"801126STDEPO","SBS","Department of Small Business Services","Fixed Asset","27370000","274001.37","2673035.19" +"801181STBID2","SBS","Department of Small Business Services","Fixed Asset","151000","0.00","248771.26" +"801391-01","SBS","Department of Small Business Services","Fixed Asset","0","0.00","7336735.87" +"801600FCDRNV","SBS","Department of Small Business Services","Fixed Asset","4005000","1766022.39","203232.05" +"80173RDSTACQ","SBS","Department of Small Business Services","Fixed Asset","46610000","0","0" +"8018THSTPAVE","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801911MEMOR","SBS","Department of Small Business Services","Fixed Asset","347000","411470.55","2131202.45" +"801AMMI2004","SBS","Department of Small Business Services","Fixed Asset","3000","0.00","54735074.51" +"801ARTHURAVE","SBS","Department of Small Business Services","Fixed Asset","3375000","2190803.17","4497929.58" +"801ATLPHASE2","SBS","Department of Small Business Services","Fixed Asset","2000","0.00","1243274.90" +"801BALLPKIMP","SBS","Department of Small Business Services","Fixed Asset","149000","343233.39","1239547.61" +"801AKLBRENO","SBS","Department of Small Business Services","Fixed Asset","4400000","0","0" +"801BATAGFLA","SBS","Department of Small Business Services","Fixed Asset","14520000","282270.86","698639.57" +"801BATAIMPS","SBS","Department of Small Business Services","Fixed Asset","17514000","562638.14","806181.86" +"801BATAPH6RE","SBS","Department of Small Business Services","Fixed Asset","117785000","0","0" +"801BATBIMPRV","SBS","Department of Small Business Services","Fixed Asset","15638000","0","0" +"801BATBIMPS","SBS","Department of Small Business Services","Fixed Asset","19160000","0","266101" +"801BATCIHLC","SBS","Department of Small Business Services","Fixed Asset","100000000","0","0" +"801BATENVEL","SBS","Department of Small Business Services","Fixed Asset","56835000","2940030.84","2059968.16" +"801BATHGATE","SBS","Department of Small Business Services","Fixed Asset","2771000","0.00","2029209.22" +"801BATRPZDEP","SBS","Department of Small Business Services","Fixed Asset","460000","871187.35","3268697.65" +"801BCTP12REP","SBS","Department of Small Business Services","Fixed Asset","88260000","0","0" +"801BEACH20","SBS","Department of Small Business Services","Fixed Asset","41000","0.00","1142720.43" +"801B&GMSGNYR","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801BINYCDDC","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801BKBRESP","SBS","Department of Small Business Services","Fixed Asset","13458000","5107602.45","23933984.55" +"801BMTMATCH","SBS","Department of Small Business Services","Fixed Asset","109200000","0","0" +"801BMTPIER10","SBS","Department of Small Business Services","Fixed Asset","2126000","103033.92","0" +"801BNYB120FS","BNY","Brooklyn Navy Yard","Fixed Asset","4000000","0","0" +"801BNYB12FSP","BNY","Brooklyn Navy Yard","Fixed Asset","3000000","0","0" +"801BNYB131FS","BNY","Brooklyn Navy Yard","Fixed Asset","5000000","0","0" +"801BNYB132RH","BNY","Brooklyn Navy Yard","Fixed Asset","5000000","0","0" +"801BNYB275FS","BNY","Brooklyn Navy Yard","Fixed Asset","2600000","0","0" +"801BNYB275RF","BNY","Brooklyn Navy Yard","Fixed Asset","6500000","303400","0" +"801BNYB292RH","BNY","Brooklyn Navy Yard","Fixed Asset","16500000","0","0" +"801BNYB50REH","BNY","Brooklyn Navy Yard","Fixed Asset","6500000","291164.02","0" +"801BNYB5RFGD","BNY","Brooklyn Navy Yard","Fixed Asset","1000000","0","0" +"801BNYB62REH","BNY","Brooklyn Navy Yard","Fixed Asset","2500000","0","0" +"801BNYB62RFR","BNY","Brooklyn Navy Yard","Fixed Asset","4350000","0","0" +"801BNYB772FL","BNY","Brooklyn Navy Yard","Fixed Asset","3000000","0","0" +"801BNYB77CTW","BNY","Brooklyn Navy Yard","Fixed Asset","1250000","0","0" +"801BNYB77PSG","BNY","Brooklyn Navy Yard","Fixed Asset","2500000","0","0" +"801BNYBER14A","BNY","Brooklyn Navy Yard","Fixed Asset","154000","11950.00","1410878.59" +"801BNYBERTH6","BNY","Brooklyn Navy Yard","Fixed Asset","108000","506644.33","185666.11" +"801BNYCUNY","BNY","Brooklyn Navy Yard","Fixed Asset","7400000","342954","0" +"801BNYELCMTR","BNY","Brooklyn Navy Yard","Fixed Asset","2000000","0","0" +"801BNYMWBEFO","BNY","Brooklyn Navy Yard","Fixed Asset","4000000","0","0" +"801BNYOPENTR","BNY","Brooklyn Navy Yard","Fixed Asset","20000000","0","0" +"801BCTSHOREP","SBS","Department of Small Business Services","Fixed Asset","6000000","5513671","0" +"801BMTPIER8","SBS","Department of Small Business Services","Fixed Asset","1897000","0","0" +"801BNYSTEAM3","BNY","Brooklyn Navy Yard","Fixed Asset","1143000","453475","13425751" +"801BROADWAYJ","SBS","Department of Small Business Services","Fixed Asset","85879000","1778000","0" +"801BUSHMINYC","SBS","Department of Small Business Services","Fixed Asset","98701000","2142772.2","952945.8" +"801BUSHMINYR","SBS","Department of Small Business Services","Fixed Asset","4500000","0","0" +"801BUSHUNTAC","SBS","Department of Small Business Services","Fixed Asset","6556000","8978969.12","159691403.77" +"801BUSHUNTBD","SBS","Department of Small Business Services","Fixed Asset","52093000","5564682.36","2341934.06" +"801BUSHUTIL","SBS","Department of Small Business Services","Fixed Asset","6840000","738714.50","74401976.72" +"801BWAYJPACQ","SBS","Department of Small Business Services","Fixed Asset","33121000","0","0" +"801BWMMPARKI","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801BXWORKS3","SBS","Department of Small Business Services","Fixed Asset","1497000","0","0" +"801CANTONBLK","SBS","Department of Small Business Services","Fixed Asset","973000","1787802.19","794042.93" +"801CASPL1","SBS","Department of Small Business Services","Fixed Asset","180000","392193.5","107806.5" +"801CASPL2","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801CHHAYA","SBS","Department of Small Business Services","Fixed Asset","2613000","0","0" +"801CIVICHAL2","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801CIVICHALL","SBS","Department of Small Business Services","Fixed Asset","5500000","0","0" +"801COLUMBPL","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801COMURBAN","SBS","Department of Small Business Services","Fixed Asset","4315000","0","0" +"801CONEYSIGN","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801CONEYTH","SBS","Department of Small Business Services","Fixed Asset","0","0","95889639" +"801CONEYWIRD","SBS","Department of Small Business Services","Fixed Asset","40516000","1139100","345000" +"801CSGFECM","SBS","Department of Small Business Services","Fixed Asset","842000","0","0" +"801CUNYBYSEA","SBS","Department of Small Business Services","Fixed Asset","296000","0.00","845894.91" +"801DEO-OWLS","SBS","Department of Small Business Services","Fixed Asset","0","62386.00","1286648.06" +"801EASTPARK","SBS","Department of Small Business Services","Fixed Asset","0","0.00","615625.76" +"801ERIVERSPB","SBS","Department of Small Business Services","Fixed Asset","0","0.00","556341.42" +"801ESSEX-C","SBS","Department of Small Business Services","Fixed Asset","0","0.00","2263476.81" +"801F175-MP36","SBS","Department of Small Business Services","Fixed Asset","0","0.00","626251.08" +"801FFREEDOMS","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801FLOYDBNTF","SBS","Department of Small Business Services","Fixed Asset","450000","0","0" +"801FOREST","SBS","Department of Small Business Services","Fixed Asset","412000","490732","0" +"801FORTHAMRD","SBS","Department of Small Business Services","Fixed Asset","4136000","0","0" +"801FOUNTNHOS","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801FREIGHT23","SBS","Department of Small Business Services","Fixed Asset","12246000","0","0" +"801GCRIVERDL","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801GE-343","SBS","Department of Small Business Services","Fixed Asset","1870000","1067034.64","139585457.89" +"801GKCI05-03","SBS","Department of Small Business Services","Fixed Asset","0","0.00","5947212.95" +"801GKNC15-02","SBS","Department of Small Business Services","Fixed Asset","0","130639.60","63561704.73" +"801GOVISB110","TGI","Trust for Governors Island","Fixed Asset","4562000","333254","104880" +"801GOVISB140","TGI","Trust for Governors Island","Fixed Asset","1898000","70081.04","31642.96" +"801GOVISB301","TGI","Trust for Governors Island","Fixed Asset","1400000","1523008.71","2476991.29" +"801GOVISB324","TGI","Trust for Governors Island","Fixed Asset","7290000","448080.29","150679.71" +"801GOVISBL18","TGI","Trust for Governors Island","Fixed Asset","2250000","0","0" +"801GOVISBLNP","TGI","Trust for Governors Island","Fixed Asset","8174000","2482.96","870831.04" +"801GOVISBMBF","TGI","Trust for Governors Island","Fixed Asset","53086000","0","0" +"801GOVISBMBL","TGI","Trust for Governors Island","Fixed Asset","1772000","0","0" +"801GOVISBNP2","TGI","Trust for Governors Island","Fixed Asset","61131000","0","0" +"801GOVISESUB","TGI","Trust for Governors Island","Fixed Asset","68390000","4480029.79","15555555.58" +"801GOVISFCHG","TGI","Trust for Governors Island","Fixed Asset","11130000","745692.61","1123864.53" +"801GOVISGOOD","TGI","Trust for Governors Island","Fixed Asset","0","0.00","2112599.49" +"801GOVISGOV1","SBS","Department of Small Business Services","Fixed Asset","1197000","84000","0" +"801GOVISLIMA","TGI","Trust for Governors Island","Fixed Asset","24484000","41565","654055" +"801GOVISNYCX","TGI","Trust for Governors Island","Fixed Asset","126000000","0","0" +"801GOVISP101","TGI","Trust for Governors Island","Fixed Asset","2700000","0","0" +"801GOVISYANK","TGI","Trust for Governors Island","Fixed Asset","35655000","534881.34","2816931.24" +"801GREEN","SBS","Department of Small Business Services","Fixed Asset","0","725867.73","53881025.66" +"801GROWNYCBK","SBS","Department of Small Business Services","Fixed Asset","0","271584.44","4728415.56" +"801GXHP07-02","SBS","Department of Small Business Services","Fixed Asset","0","3338652.29","40166499.79" +"801HARLMPIER","SBS","Department of Small Business Services","Fixed Asset","63000","0.00","15296784.38" +"801HBMA4501B","SBS","Department of Small Business Services","Fixed Asset","0","46639.36","1328567.40" +"801HEARTLRC","SBS","Department of Small Business Services","Fixed Asset","1000000","0","0" +"801HHXNLYDIA","SBS","Department of Small Business Services","Fixed Asset","504000","0","0" +"801HL82PHL","SBS","Department of Small Business Services","Fixed Asset","117120000","77078622.08","484147863.60" +"801HLCHCRNEW","SBS","Department of Small Business Services","Fixed Asset","4000000","0","0" +"801HLDNMHHCI","SBS","Department of Small Business Services","Fixed Asset","10752000","0","0" +"801HLDNRUMC2","SBS","Department of Small Business Services","Fixed Asset","9000000","0","0" +"801HLDNSTJHN","SBS","Department of Small Business Services","Fixed Asset","4077000","0","0" +"801HLKNBLOOD","SBS","Department of Small Business Services","Fixed Asset","555000","0","0" +"801HLKNBRKDL","SBS","Department of Small Business Services","Fixed Asset","1045000","0","0" +"801HLQNJPAFH","SBS","Department of Small Business Services","Fixed Asset","880000","0","0" +"801HLQNLIJFH","SBS","Department of Small Business Services","Fixed Asset","4000000","0","0" +"801HLRICHMON","SBS","Department of Small Business Services","Fixed Asset","7700000","0","0" +"801HLRNCHCRI","SBS","Department of Small Business Services","Fixed Asset","3750000","0","0" +"801HLRYANACQ","SBS","Department of Small Business Services","Fixed Asset","3420000","0","0" +"801HBGRWESPN","SBS","Department of Small Business Services","Fixed Asset","141165000","9058962.90","2775708.61" +"801HLSTARTRE","SBS","Department of Small Business Services","Fixed Asset","2870000","0","0" +"801HOMEPORT","SBS","Department of Small Business Services","Fixed Asset","0","0.0","1193908.5" +"801HP-FOOD","SBS","Department of Small Business Services","Fixed Asset","19277000","808858.16","139895.84" +"801HPMTINFRA","SBS","Department of Small Business Services","Fixed Asset","28300000","0","0" +"801HPPRODUCE","SBS","Department of Small Business Services","Fixed Asset","405000000","0","0" +"801HRDN9421","SBS","Department of Small Business Services","Fixed Asset","1550000","218000","1332000" +"801HRDNALPH","SBS","Department of Small Business Services","Fixed Asset","511000","0","0" +"801HRKN1531","SBS","Department of Small Business Services","Fixed Asset","1725000","0","0" +"801HUNT600BL","SBS","Department of Small Business Services","Fixed Asset","0","0.00","450916.61" +"801HUNTSAOU2","SBS","Department of Small Business Services","Fixed Asset","5968000","0.00","799647.64" +"801HUNTSGATE","SBS","Department of Small Business Services","Fixed Asset","150000","0","0" +"801HWKBCCTWF","SBS","Department of Small Business Services","Fixed Asset","1667000","0","0" +"801HWKDAREWF","SBS","Department of Small Business Services","Fixed Asset","1527000","0","0" +"801HWKFANEWF","SBS","Department of Small Business Services","Fixed Asset","1257000","0","0" +"801HWKFHAWF","SBS","Department of Small Business Services","Fixed Asset","15466000","123817.44","585109.67" +"801HWQ102WF","SBS","Department of Small Business Services","Fixed Asset","1917000","0","0" +"801HWQBCH6WF","SBS","Department of Small Business Services","Fixed Asset","5974000","186836.02","88306.4" +"801HWQBCH8WF","SBS","Department of Small Business Services","Fixed Asset","6249000","2526.21","0" +"801HWQSHORWF","SBS","Department of Small Business Services","Fixed Asset","19524000","0","0" +"801HWQWF164","SBS","Department of Small Business Services","Fixed Asset","171000","0","0" +"801HWRLASEWF","SBS","Department of Small Business Services","Fixed Asset","3418000","421056.07","395956.1" +"801ICAHNHOUS","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801INWDGRWAY","SBS","Department of Small Business Services","Fixed Asset","222000000","0","0" +"801JAMCMFEE","SBS","Department of Small Business Services","Fixed Asset","0","0.00","158134.38" +"801JAMECODEV","SBS","Department of Small Business Services","Fixed Asset","0","0.00","8581367.80" +"801JAMSTATN","SBS","Department of Small Business Services","Fixed Asset","360000","0.00","568063.78" +"801KINGBRARM","SBS","Department of Small Business Services","Fixed Asset","115000000","0","0" +"801LAFFAVELT","SBS","Department of Small Business Services","Fixed Asset","0","168711.39","788049.96" +"801LAMARQPLZ","SBS","Department of Small Business Services","Fixed Asset","0","232969.72","7523290.28" +"801LAMARQUE3","SBS","Department of Small Business Services","Fixed Asset","0","14069.47","655575.33" +"801LAMRQGRNT","SBS","Department of Small Business Services","Fixed Asset","1250000","0","0" +"801HWQ187A","SBS","Department of Small Business Services","Fixed Asset","4414000","1852922.58","42097027.87" +"801HWQFHRPWF","SBS","Department of Small Business Services","Fixed Asset","7588000","0","0" +"801LCNPARK","SBS","Department of Small Business Services","Fixed Asset","2911000","20758015.00","11739039.50" +"801LMAQFACIL","SBS","Department of Small Business Services","Fixed Asset","0","57149.48","262614.78" +"801LN22WNBCR","SBS","Department of Small Business Services","Fixed Asset","18331000","1210597.0","93984.3" +"801LNC018CHA","SBS","Department of Small Business Services","Fixed Asset","0","0.00","15875515.22" +"801LNEA16125","SBS","Department of Small Business Services","Fixed Asset","95000","647854.72","30911581.63" +"801LNEA16FWT","SBS","Department of Small Business Services","Fixed Asset","117000","744244.97","35068998.03" +"801LNEA16HPT","SBS","Department of Small Business Services","Fixed Asset","57000","353229.88","30237129.12" +"801LNEA16MLR","SBS","Department of Small Business Services","Fixed Asset","40000","1162570.80","33280582.20" +"801LNEA16PRT","SBS","Department of Small Business Services","Fixed Asset","154000","805478.76","25746667.24" +"801LS-BIOBAT","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801LS-BNY303","BNY","Brooklyn Navy Yard","Fixed Asset","12800000","0","0" +"801LS-C4PH","SBS","Department of Small Business Services","Fixed Asset","8000000","0","0" +"801LS-MONTE","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801LS-ROCKU","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801LS-STEM","SBS","Department of Small Business Services","Fixed Asset","6500000","0","0" +"801MADSQUARE","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801MAIMRE","SBS","Department of Small Business Services","Fixed Asset","1000000","0","0" +"801MANHGREEN","SBS","Department of Small Business Services","Fixed Asset","408000","98467.76","172867455.24" +"801MCRUISE","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801MCTFEND","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801MCTROOFSV","SBS","Department of Small Business Services","Fixed Asset","51100000","0","0" +"801MECAFIT","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801MILLREHAB","SBS","Department of Small Business Services","Fixed Asset","0","7282.07","2943038.66" +"801MMCCROOFF","SBS","Department of Small Business Services","Fixed Asset","1083000","0","0" +"801MOCADAMUS","SBS","Department of Small Business Services","Fixed Asset","10000","0.00","470869.52" +"801MSBGCOLUM","SBS","Department of Small Business Services","Fixed Asset","911000","0","0" +"801MYRTLEBK","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801NDF-3HRGL","SBS","Department of Small Business Services","Fixed Asset","45804000","12765557.43","24901569.57" +"801NDFATLBB","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801NDF-BROAD","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801NDF-EHWF1","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801NDF-IBMOD","SBS","Department of Small Business Services","Fixed Asset","1049000","142231.29","7608135.49" +"801NDF-INWCC","SBS","Department of Small Business Services","Fixed Asset","15000000","0","0" +"801NDF-INWD","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801NDF-LAMAR","SBS","Department of Small Business Services","Fixed Asset","24816000","85505.90","98659.41" +"801NDF-NWOOD","SBS","Department of Small Business Services","Fixed Asset","65672000","2904311.03","2381470.56" +"801NDF-TOMPK","SBS","Department of Small Business Services","Fixed Asset","13900000","31200110.69","3399057.77" +"801NHARLEMGW","SBS","Department of Small Business Services","Fixed Asset","170000000","0","0" +"801NICKSALIN","SBS","Department of Small Business Services","Fixed Asset","2600000","0","0" +"801NRCOGEN","SBS","Department of Small Business Services","Fixed Asset","1237000",, +"801NYCCAVES","SBS","Department of Small Business Services","Fixed Asset","2136000","0","0" +"801NYCFBAYRI","SBS","Department of Small Business Services","Fixed Asset","835000","0","0" +"801NYCFNOWIL","SBS","Department of Small Business Services","Fixed Asset","892000","0","0" +"801NYCFROCKA","SBS","Department of Small Business Services","Fixed Asset","836000","0","0" +"801NYCFROOSE","SBS","Department of Small Business Services","Fixed Asset","842000","0","0" +"801OFFSHRWND","SBS","Department of Small Business Services","Fixed Asset","35000000","0","0" +"801OHELPWDN1","SBS","Department of Small Business Services","Fixed Asset","1500000","1500000","0" +"801P-100CACG","SBS","Department of Small Business Services","Fixed Asset","13000","515122","0" +"801LN26SEWCR","SBS","Department of Small Business Services","Fixed Asset","53000000","0","0" +"801P-102LADY","SBS","Department of Small Business Services","Fixed Asset","4722000","0","0" +"801P-109SVSK","SBS","Department of Small Business Services","Fixed Asset","5838000","1683851.67","300593.48" +"801P-111BXSK","SBS","Department of Small Business Services","Fixed Asset","2092000","1286825.52","270294.51" +"801P-200PPL1","SBS","Department of Small Business Services","Fixed Asset","8738000","958292.01","117651.22" +"801P-200PPU1","SBS","Department of Small Business Services","Fixed Asset","6458000","798133.16","0" +"801P-208BRSK","SBS","Department of Small Business Services","Fixed Asset","2075000","1407160.92","259781.57" +"801P-2BRPLAZ","SBS","Department of Small Business Services","Fixed Asset","76000","424178","0" +"801P-307RIVP","SBS","Department of Small Business Services","Fixed Asset","19411000","0","0" +"801P-309RVP2","SBS","Department of Small Business Services","Fixed Asset","48703000","6457715.59","5774980.25" +"801P-3HRP132","SBS","Department of Small Business Services","Fixed Asset","138014000","107675077.71","54744747.29" +"801P-3HRP135","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801P-3RODGRD","SBS","Department of Small Business Services","Fixed Asset","15000","584390","0" +"801P-3SHCRPL","SBS","Department of Small Business Services","Fixed Asset","1635000","0","0" +"801P-401QSE1","SBS","Department of Small Business Services","Fixed Asset","0","0.00","5819737.06" +"801P-401RANP","SBS","Department of Small Business Services","Fixed Asset","10227000","0","0" +"801P-410BYR1","SBS","Department of Small Business Services","Fixed Asset","5376000","4778339","0" +"801P-4QNSWAY","SBS","Department of Small Business Services","Fixed Asset","48324000","2679242.25","3473959.93" +"801P-501NSEP","SBS","Department of Small Business Services","Fixed Asset","750000","0","0" +"801P79ROOFRP","SBS","Department of Small Business Services","Fixed Asset","2887000","0","0" +"801PARACHUT2","SBS","Department of Small Business Services","Fixed Asset","0","10020.00","2468698.39" +"801PASSSHIP2","SBS","Department of Small Business Services","Fixed Asset","464000","70651.31","201244956.88" +"801PCEMETERY","SBS","Department of Small Business Services","Fixed Asset","11000","0.00","908961.76" +"801PFLANDING","SBS","Department of Small Business Services","Fixed Asset","0","0.00","2867747.37" +"801PIER11DOT","SBS","Department of Small Business Services","Fixed Asset","0","3796.90","2996350.95" +"801PIER12PH2","SBS","Department of Small Business Services","Fixed Asset","11813000","726362.30","1103790.72" +"801PIER36","SBS","Department of Small Business Services","Fixed Asset","91960000","13947062.24","9246805.75" +"801PIER36STR","SBS","Department of Small Business Services","Fixed Asset","4596000","7507.93","9027308.26" +"801PIER4","SBS","Department of Small Business Services","Fixed Asset","1302000","64312.12","524416.07" +"801P-1CPIFIR","SBS","Department of Small Business Services","Fixed Asset","4530000","0","0" +"801P-3CPIRPR","SBS","Department of Small Business Services","Fixed Asset","4530000","0","0" +"801P-2CIB22H","SBS","Department of Small Business Services","Fixed Asset","1150272000","0","0" +"801RAISESHOR","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801RCBBALLPK","SBS","Department of Small Business Services","Fixed Asset","891000","1790872.88","6693058.02" +"801REDHOOKDE","SBS","Department of Small Business Services","Fixed Asset","48094000","0","0" +"801RENYOUTH","SBS","Department of Small Business Services","Fixed Asset","1000000","0","0" +"801RICHMEDAQ","SBS","Department of Small Business Services","Fixed Asset","1434000","0","0" +"801RISEBOROY","SBS","Department of Small Business Services","Fixed Asset","1159000","0","0" +"801ROCKINFRA","SBS","Department of Small Business Services","Fixed Asset","25000000","0","0" +"801ROOSISLTH","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801P-401AST","SBS","Department of Small Business Services","Fixed Asset","1771000","0","0" +"801PIER94ENC","SBS","Department of Small Business Services","Fixed Asset","39842000","5477358.02","10071195.43" +"801PIERS35N6","SBS","Department of Small Business Services","Fixed Asset","876000","625690.10","803435.56" +"801PIR11MONO","SBS","Department of Small Business Services","Fixed Asset","612000","0.00","1627939.15" +"801PRATT3","SBS","Department of Small Business Services","Fixed Asset","0","0.00","617000.57" +"801PREMHEAL","SBS","Department of Small Business Services","Fixed Asset","1500000","0","0" +"801P-SWEDISH","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PV02ODTPS","SBS","Department of Small Business Services","Fixed Asset","785000","260004.8","524995.2" +"801PV034GRUV","SBS","Department of Small Business Services","Fixed Asset","14218000","0","14218000" +"801PV05APTP","SBS","Department of Small Business Services","Fixed Asset","10675000","0","0" +"801PV256-MEP","SBS","Department of Small Business Services","Fixed Asset","7783000","7783000","0" +"801PV279-STU","SBS","Department of Small Business Services","Fixed Asset","0","0","2162927" +"801PV290-GRE","SBS","Department of Small Business Services","Fixed Asset","13436000","0","0" +"801PV364ROOF","SBS","Department of Small Business Services","Fixed Asset","8950000","669375.35","257693.65" +"801PV467-PCT","SBS","Department of Small Business Services","Fixed Asset","500000","459187.95","40812.05" +"801PV471SWA2","SBS","Department of Small Business Services","Fixed Asset","13817000","16832666.72","21253424.77" +"801PV503FACD","SBS","Department of Small Business Services","Fixed Asset","27019000","27006000","0" +"801PV503SDWK","SBS","Department of Small Business Services","Fixed Asset","0","0","1469000" +"801PV540WEP2","SBS","Department of Small Business Services","Fixed Asset","5620000","0","0" +"801PV653GALL","SBS","Department of Small Business Services","Fixed Asset","2456000","0","0" +"801PV994FLXX","SBS","Department of Small Business Services","Fixed Asset","0","0","3999990" +"801PVTFNA-OF","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PWCCCSSPL","SBS","Department of Small Business Services","Fixed Asset","1547000","0","0" +"801PWDFLTCJO","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PWK471GJC","SBS","Department of Small Business Services","Fixed Asset","513000","0","0" +"801PWKNTH2","SBS","Department of Small Business Services","Fixed Asset","250000","0","0" +"801PWMNYMYW","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PWSAMFIE2","SBS","Department of Small Business Services","Fixed Asset","2600000","0","0" +"801PWURIACQ","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801PWWHEDMEL","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PWXNKINGS","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PV195IRE2","SBS","Department of Small Business Services","Fixed Asset","20350000","0","0" +"801QUEENSC","SBS","Department of Small Business Services","Fixed Asset","500000","0","172000" +"801QUEENSCAS","SBS","Department of Small Business Services","Fixed Asset","200000","0","0" +"801QUEENSCRK","SBS","Department of Small Business Services","Fixed Asset","200000","0","0" +"801QUEENSCSA","SBS","Department of Small Business Services","Fixed Asset","100000","0","0" +"801RS-CIC","SBS","Department of Small Business Services","Fixed Asset","47000000","0","0" +"801RS-PH1","SBS","Department of Small Business Services","Fixed Asset","38458000","11978838.22","5457202.33" +"801SAND79BAS","SBS","Department of Small Business Services","Fixed Asset","28281000","0","0" +"801SANDB4123","BNY","Brooklyn Navy Yard","Fixed Asset","1011000","36316","7785267" +"801SANDB4269","BNY","Brooklyn Navy Yard","Fixed Asset","4001000","0","0" +"801SANDEDCG5","SBS","Department of Small Business Services","Fixed Asset","670000","0","0" +"801SANDG4DOC","SBS","Department of Small Business Services","Fixed Asset","22335000","67688933.50","43585216.50" +"801SANDHPRX2","SBS","Department of Small Business Services","Fixed Asset","4892000","1329309.89","7610891.12" +"801SANDHWMO","SBS","Department of Small Business Services","Fixed Asset","379000","258046.13","11357.81" +"801SANDRLE34","SBS","Department of Small Business Services","Fixed Asset","281000","1681267.07","259197.65" +"801SANDRLLIC","SBS","Department of Small Business Services","Fixed Asset","11998000","535585.00","291480.00" +"801SANDTGIBM","TGI","Trust for Governors Island","Fixed Asset","1100000","0","0" +"801SANDY3-01","SBS","Department of Small Business Services","Fixed Asset","73000","0.00","1046667.09" +"801SBMTBKHD","SBS","Department of Small Business Services","Fixed Asset","-139000","4.00","9803446.54" +"801SAND1104","SBS","Department of Small Business Services","Fixed Asset","0","0.00","438066.31" +"801SAND3702","SBS","Department of Small Business Services","Fixed Asset","0","0.00","86968.79" +"801SAND6705","SBS","Department of Small Business Services","Fixed Asset","0","0.00","1587883.94" +"801SBMTFRT","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801SBMTSIM","SBS","Department of Small Business Services","Fixed Asset","10000000","0","0" +"801SEEDDAVID","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801SEEDVANST","SBS","Department of Small Business Services","Fixed Asset","11495000","2569512","0" +"801SHEEPBULK","SBS","Department of Small Business Services","Fixed Asset","-1000","1332.24","18146374.07" +"801SIPIER1","SBS","Department of Small Business Services","Fixed Asset","0","0.00","1512347.35" +"801SIPIER1RE","SBS","Department of Small Business Services","Fixed Asset","12538000","700243.17","262045.95" +"801SIRRAIL","SBS","Department of Small Business Services","Fixed Asset","281000","15462.53","71968280.54" +"801SNSTFRGH2","SBS","Department of Small Business Services","Fixed Asset","6831000","6307919.12","24390985.19" +"801SSFERRY","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801SSYARDS","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801STGEOREBP","SBS","Department of Small Business Services","Fixed Asset","14648000","843367.86","122782.14" +"801STHBRXGRN","SBS","Department of Small Business Services","Fixed Asset","85000","308886.06","32607818.39" +"801STHMARINE","SBS","Department of Small Business Services","Fixed Asset","-27000","0.00","1745823.06" +"801STUYBULK2","SBS","Department of Small Business Services","Fixed Asset","2329000","131068.85","439725.26" +"801SUTPHIN","SBS","Department of Small Business Services","Fixed Asset","3050000","0","0" +"801SVIEWDIAB","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801SWBXINFRA","SBS","Department of Small Business Services","Fixed Asset","55069000","2976643.35","60515578.39" +"801SWBXLCACQ","SBS","Department of Small Business Services","Fixed Asset","2709000","0.00","9648572.60" +"801TINMARKET","SBS","Department of Small Business Services","Fixed Asset","0","12605.99","7808321.17" +"801TRAVSIDEW","SBS","Department of Small Business Services","Fixed Asset","34000","1904027.30","62788.87" +"801TREATREC","SBS","Department of Small Business Services","Fixed Asset","1155000","0","0" +"801VOCALNY1","SBS","Department of Small Business Services","Fixed Asset","510000","0","0" +"801W125THST","SBS","Department of Small Business Services","Fixed Asset","23000","0.00","2996677.60" +"801W125TRANS","SBS","Department of Small Business Services","Fixed Asset","8751000","2028897.80","21830098.14" +"801WALLST","SBS","Department of Small Business Services","Fixed Asset","226000","0.00","373945.62" +"801WATERST","SBS","Department of Small Business Services","Fixed Asset","3107000","12721430.48","7977446.93" +"801WCSNONPW","SBS","Department of Small Business Services","Fixed Asset","1673000","3060287","558312" +"801WILLETDEM","SBS","Department of Small Business Services","Fixed Asset","0","0.00","8089997.67" +"801WILLTFAOF","SBS","Department of Small Business Services","Fixed Asset","0","43114293.85","80339611.15" +"801WILLTFAON","SBS","Department of Small Business Services","Fixed Asset","1000","25614841.15","92745203.85" +"801WLPIER6","SBS","Department of Small Business Services","Fixed Asset","31254000","3781423.59","2350174.66" +"801WLPIER7","SBS","Department of Small Business Services","Fixed Asset","8163000","1001554.98","298444.47" +"801WOODLAWNC","SBS","Department of Small Business Services","Fixed Asset","931000","0","0" +"801YTHPOOL","SBS","Department of Small Business Services","Fixed Asset","638000","0.0","975853.2" +"8067AVC30","HPD","Housing Preservation and Development","Fixed Asset","6867000","0","0" +"8067AVC31","HPD","Housing Preservation and Development","Fixed Asset","7142000","0","0" +"8068ALC30","HPD","Housing Preservation and Development","Fixed Asset","112386000","0","0" +"8068ALC31","HPD","Housing Preservation and Development","Fixed Asset","117152000","0","0" +"806BSTNICKJE","HPD","Housing Preservation and Development","Fixed Asset","3000000","0","0" +"806CAMHGTS","HPD","Housing Preservation and Development","Fixed Asset","97000","0","0" +"806CLB-CLINT","HPD","Housing Preservation and Development","Fixed Asset","4994000","0","0" +"806CYPRESS","HPD","Housing Preservation and Development","Fixed Asset","100000","0","0" +"806ENTPRES","HPD","Housing Preservation and Development","Fixed Asset","5000","0","0" +"806GI-MARC","HPD","Housing Preservation and Development","Fixed Asset","700000","0","0" +"806GI-RH-GR","HPD","Housing Preservation and Development","Fixed Asset","100000","0","0" +"806HAM11IHWH","HPD","Housing Preservation and Development","Fixed Asset","514000","2180800.18","26876373.21" +"806HAM13VAEL","HPD","Housing Preservation and Development","Fixed Asset","98000","56117.78","9814819.22" +"806HAM16FACD","HPD","Housing Preservation and Development","Fixed Asset","0","967424.62","38066883.82" +"806HAM16MRVR","HPD","Housing Preservation and Development","Fixed Asset","0","141323677.96","838131302.31" +"806HAM16UPGI","HPD","Housing Preservation and Development","Fixed Asset","189000","2568623.00","5206945.12" +"806HAM17BASK","HPD","Housing Preservation and Development","Fixed Asset","7000","24632.73","468021.87" +"806HAM17THUR","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM17WGPA","HPD","Housing Preservation and Development","Fixed Asset","89000","0","410316" +"806HAM18ATBC","HPD","Housing Preservation and Development","Fixed Asset","64000","0","336196" +"806HAM18BLGR","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM18BOIL","HPD","Housing Preservation and Development","Fixed Asset","5508000","1377575.28","2413828.22" +"806HAM18BRCB","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM18BSVB","HPD","Housing Preservation and Development","Fixed Asset","4200000","206197.13","8309665.87" +"806HAM18CDCH","HPD","Housing Preservation and Development","Fixed Asset","34176000","6553111.77","22032257.39" +"806HAM18CDCP","HPD","Housing Preservation and Development","Fixed Asset","3458000","37271706.64","98538630.13" +"806HAM18CDEE","HPD","Housing Preservation and Development","Fixed Asset","4889000","6842877.68","23195488.54" +"806HAM18CDHO","HPD","Housing Preservation and Development","Fixed Asset","1410000000","0","0" +"806HAM18CHBW","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","8730525.49" +"806HAM18CSVA","HPD","Housing Preservation and Development","Fixed Asset","7424000","4465009.98","10292309.78" +"806HAM18FSBO","HPD","Housing Preservation and Development","Fixed Asset","8628000","0","0" +"806HAM18GOBR","HPD","Housing Preservation and Development","Fixed Asset","119000","297110.09","2084708.18" +"806HAM18GRLM","HPD","Housing Preservation and Development","Fixed Asset","405000","1081369.16","358630.84" +"806HAM18HYEL","HPD","Housing Preservation and Development","Fixed Asset","1665000","1293832.93","879090.59" +"806HAM18IGIR","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","342451.05" +"806HAM18IHWH","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM18INBC","HPD","Housing Preservation and Development","Fixed Asset","51000","118883.60","230782.24" +"806HAM18JOCC","HPD","Housing Preservation and Development","Fixed Asset","115000","1433521.41","0" +"806HAM18LIPG","HPD","Housing Preservation and Development","Fixed Asset","57000","96176.4","112221.6" +"806HAM18MRP1","HPD","Housing Preservation and Development","Fixed Asset","11000","55629.80","208302.34" +"806HAM18MRPG","HPD","Housing Preservation and Development","Fixed Asset","12000","21600.00","465805.14" +"806HAM18NLAC","HPD","Housing Preservation and Development","Fixed Asset","145000","4115.10","273930.97" +"806HAM18PCCK","HPD","Housing Preservation and Development","Fixed Asset","214000","0.00","585709.29" +"806HAM18PNAP","HPD","Housing Preservation and Development","Fixed Asset","8689000","0","0" +"806HAM18RAEX","HPD","Housing Preservation and Development","Fixed Asset","237000","200130.86","7064598.87" +"806HAM18RSPL","HPD","Housing Preservation and Development","Fixed Asset","42985000","12266589.48","17412684.85" +"806HAM18RTBC","HPD","Housing Preservation and Development","Fixed Asset","4000","6983.11","132667.59" +"806HAM18SOMO","HPD","Housing Preservation and Development","Fixed Asset","4250000","0","0" +"806HAM18TNCR","HPD","Housing Preservation and Development","Fixed Asset","319000","1280875.3","0" +"806HAM18WAGD","HPD","Housing Preservation and Development","Fixed Asset","3000","167885.58","628922.38" +"806HAM18WHIT","HPD","Housing Preservation and Development","Fixed Asset","0","342427","0" +"806HAM18WIPG","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM18WKCC","HPD","Housing Preservation and Development","Fixed Asset","270000","143879.28","0" +"806HAM18WKLG","HPD","Housing Preservation and Development","Fixed Asset","28000","518471.54","753462.57" +"806HAM18WSEC","HPD","Housing Preservation and Development","Fixed Asset","29000","0","371195" +"806HAM18WSWT","HPD","Housing Preservation and Development","Fixed Asset","0","154214.09","1236969.91" +"806HAM19AMEL","HPD","Housing Preservation and Development","Fixed Asset","5691000","9219284.65","15153244.57" +"806HAM19BPWS","HPD","Housing Preservation and Development","Fixed Asset","2212000","77155.60","196924.4" +"806HAM19BRSC","HPD","Housing Preservation and Development","Fixed Asset","16000","238155.29","743809.76" +"806HAM19CAGR","HPD","Housing Preservation and Development","Fixed Asset","9573000","8859087.5","382437.5" +"806HAM19CLHS","HPD","Housing Preservation and Development","Fixed Asset","69000","583217.70","27401.8" +"806HAM19CMHP","HPD","Housing Preservation and Development","Fixed Asset","1000","74115.72","919625.44" +"806HAM19CSVE","HPD","Housing Preservation and Development","Fixed Asset","302000","533239.65","1197787.51" +"806HAM19DCCR","HPD","Housing Preservation and Development","Fixed Asset","20000","0.00","280245.85" +"806HAM19DHPR","HPD","Housing Preservation and Development","Fixed Asset","62000","0","437771" +"806HAM19FHSE","HPD","Housing Preservation and Development","Fixed Asset","34000","0","547300" +"806HAM19GHEL","HPD","Housing Preservation and Development","Fixed Asset","25000","0","474921" +"806HAM19HBBR","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","177721.57" +"806HAM19MARE","HPD","Housing Preservation and Development","Fixed Asset","224000","3116335.52","5277037.11" +"806HAM19MOCJ","HPD","Housing Preservation and Development","Fixed Asset","0","4327884.63","390227.79" +"806HAM19PHBC","HPD","Housing Preservation and Development","Fixed Asset","0","0","475791" +"806HAM19STEL","HPD","Housing Preservation and Development","Fixed Asset","462000","4461350.28","6343144.92" +"806HAM19TCPU","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","455441.15" +"806HAM19WHRB","HPD","Housing Preservation and Development","Fixed Asset","50000","173752.5","376247.5" +"806HAM20ALPU","HPD","Housing Preservation and Development","Fixed Asset","125000","0.0","124890.5" +"806HAM20BCCG","HPD","Housing Preservation and Development","Fixed Asset","2570000","0","0" +"806HAM20BHLL","HPD","Housing Preservation and Development","Fixed Asset","13000","32105.85","254255.18" +"806HAM20BHNE","HPD","Housing Preservation and Development","Fixed Asset","147000","1087636.51","0" +"806HAM20BHPU","HPD","Housing Preservation and Development","Fixed Asset","300000","110261.65","0" +"806HAM20CHHT","HPD","Housing Preservation and Development","Fixed Asset","920000","0","0" +"806HAM20CPPU","HPD","Housing Preservation and Development","Fixed Asset","403000","96600","0" +"806HAM20CSKR","HPD","Housing Preservation and Development","Fixed Asset","29000","211473.25","259792.75" +"806HAM20CUSD","HPD","Housing Preservation and Development","Fixed Asset","3000000","0","0" +"806HAM20DMSC","HPD","Housing Preservation and Development","Fixed Asset","3000000","0","0" +"806HAM20GHCL","HPD","Housing Preservation and Development","Fixed Asset","985000","0","0" +"806HAM20JYCL","HPD","Housing Preservation and Development","Fixed Asset","1674000","0.01","0" +"806HAM20KRWJ","HPD","Housing Preservation and Development","Fixed Asset","0","605413.79","1131760.51" +"806HAM20LESD","HPD","Housing Preservation and Development","Fixed Asset","32000","903759.97","439171.03" +"806HAM20QWGR","HPD","Housing Preservation and Development","Fixed Asset","600000","0","0" +"806HAM20RCCB","HPD","Housing Preservation and Development","Fixed Asset","600000","378106.36","0" +"806HAM20SBLU","HPD","Housing Preservation and Development","Fixed Asset","15000","180295.88","4967.13" +"806HAM20SGCU","HPD","Housing Preservation and Development","Fixed Asset","100000","0","0" +"806HAM20SHDR","HPD","Housing Preservation and Development","Fixed Asset","620000","72947.77","6721.65" +"806HAM20SHEL","HPD","Housing Preservation and Development","Fixed Asset","24000","103461.36","171294.64" +"806HAM20SISC","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","248020.12" +"806HAM20SPER","HPD","Housing Preservation and Development","Fixed Asset","18000","841562.09","380906.43" +"806HAM20TCCU","HPD","Housing Preservation and Development","Fixed Asset","426000","0","0" +"806HAM20THRR","HPD","Housing Preservation and Development","Fixed Asset","50000","0","0" +"806HAM20TUSD","HPD","Housing Preservation and Development","Fixed Asset","7000000","0","0" +"806HAM21BHEL","HPD","Housing Preservation and Development","Fixed Asset","24000","10614.18","365294.82" +"806HAM21BRST","HPD","Housing Preservation and Development","Fixed Asset","2199000","10702105.72","407461" +"806HAM21CHRE","HPD","Housing Preservation and Development","Fixed Asset","1177000","0","0" +"806HAM21EWGR","HPD","Housing Preservation and Development","Fixed Asset","9900000","0","0" +"806HAM21EXTL","HPD","Housing Preservation and Development","Fixed Asset","2000","28482.42","268863.58" +"806HAM21GHCC","HPD","Housing Preservation and Development","Fixed Asset","45000","90269.86","0" +"806HAM21JHPR","HPD","Housing Preservation and Development","Fixed Asset","175000","0","0" +"806HAM21LSCB","HPD","Housing Preservation and Development","Fixed Asset","280000","0","0" +"806HAM21MHCC","HPD","Housing Preservation and Development","Fixed Asset","5007000","410550.4","254282.4" +"806HAM21MHOA","HPD","Housing Preservation and Development","Fixed Asset","93000","0","0" +"806HAM21MICC","HPD","Housing Preservation and Development","Fixed Asset","6861000","509819","380630" +"806HAM21MLCC","HPD","Housing Preservation and Development","Fixed Asset","1976000","509900.1","174271.8" +"806HAM21NLCI","HPD","Housing Preservation and Development","Fixed Asset","47000","460140.06","17528.35" +"806HAM21PHCC","HPD","Housing Preservation and Development","Fixed Asset","5645000","5060000.15","488949" +"806HAM21RCCK","HPD","Housing Preservation and Development","Fixed Asset","76000","718561.88","14386.8" +"806HAM21SJWW","HPD","Housing Preservation and Development","Fixed Asset","160000","17881.66","127338.75" +"806HAM21SORF","HPD","Housing Preservation and Development","Fixed Asset","44124000","18628982.5","3627017.5" +"806HAM21SOST","HPD","Housing Preservation and Development","Fixed Asset","3719000","1421095","19401389" +"806HAM21SWTI","HPD","Housing Preservation and Development","Fixed Asset","600000","413486.75","0" +"806HAM21THCR","HPD","Housing Preservation and Development","Fixed Asset","882000","0","0" +"806HAM21USPR","HPD","Housing Preservation and Development","Fixed Asset","175000","0","0" +"806HAM21WHBC","HPD","Housing Preservation and Development","Fixed Asset","180000","0","0" +"806HAM21WSUG","HPD","Housing Preservation and Development","Fixed Asset","70000","0","0" +"806HAM22AHSL","HPD","Housing Preservation and Development","Fixed Asset","693000","26144.4","61355.6" +"806HAM22ASEL","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM22BCCY","HPD","Housing Preservation and Development","Fixed Asset","900000","0","0" +"806HAM22BPCC","HPD","Housing Preservation and Development","Fixed Asset","13000000","0","0" +"806HAM22CTDR","HPD","Housing Preservation and Development","Fixed Asset","800000","0","0" +"806HAM22FACD","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM22FCCB","HPD","Housing Preservation and Development","Fixed Asset","1058000","0","0" +"806HAM22LSTM","HPD","Housing Preservation and Development","Fixed Asset","501000","445922.13","0" +"806HAM22PBBQ","HPD","Housing Preservation and Development","Fixed Asset","41000","182915.95","25966.05" +"806HAM22SJCB","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM22SLAD","HPD","Housing Preservation and Development","Fixed Asset","26000","71778.88","1070617.12" +"806HAM22SMGR","HPD","Housing Preservation and Development","Fixed Asset","9075000","0","0" +"806HAM22SMRA","HPD","Housing Preservation and Development","Fixed Asset","477000","0","0" +"806HAM22SREB","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806HAM22TAEL","HPD","Housing Preservation and Development","Fixed Asset","9075000","0","0" +"806HAM22USLM","HPD","Housing Preservation and Development","Fixed Asset","350000","0","0" +"806HAM22UTPR","HPD","Housing Preservation and Development","Fixed Asset","138000","48549.42","563355.98" +"806HAM22WAPL","HPD","Housing Preservation and Development","Fixed Asset","550000","0","0" +"806HAM23ALPL","HPD","Housing Preservation and Development","Fixed Asset","5000","494956.58","0" +"806HAM23DHOR","HPD","Housing Preservation and Development","Fixed Asset","791000","1971169.19","4237954.81" +"806HAM23GPED","HPD","Housing Preservation and Development","Fixed Asset","4622000","0","0" +"806HAM23M1ST","HPD","Housing Preservation and Development","Fixed Asset","9556000","1944160","0" +"806HAM23M2ST","HPD","Housing Preservation and Development","Fixed Asset","8000000","0","0" +"806HAM23MAST","HPD","Housing Preservation and Development","Fixed Asset","2500000","0","0" +"806HAM23MCSC","HPD","Housing Preservation and Development","Fixed Asset","8000000","0","0" +"806HAM23MHSD","HPD","Housing Preservation and Development","Fixed Asset","402000","0","0" +"806HAM23MRSC","HPD","Housing Preservation and Development","Fixed Asset","2359000","0","0" +"806HAM23POHP","HPD","Housing Preservation and Development","Fixed Asset","51419000","0","0" +"806HAM23SAPC","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM23SFFB","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM23SIWD","HPD","Housing Preservation and Development","Fixed Asset","1039000","0","0" +"806HAM23SVHP","HPD","Housing Preservation and Development","Fixed Asset","30581000","0","0" +"806HAM24BCHS","HPD","Housing Preservation and Development","Fixed Asset","1237000","0","0" +"806HAM24GBCR","HPD","Housing Preservation and Development","Fixed Asset","1588000","0","0" +"806HAM24HOAC","HPD","Housing Preservation and Development","Fixed Asset","150000","0","0" +"806HAM24JSDR","HPD","Housing Preservation and Development","Fixed Asset","200000","0","0" +"806HAM24LIDM","HPD","Housing Preservation and Development","Fixed Asset","300000","0","0" +"806HAM24LSDB","HPD","Housing Preservation and Development","Fixed Asset","250000","0","0" +"806HAM24MRDO","HPD","Housing Preservation and Development","Fixed Asset","1165000","701125.85","0" +"806HAM24MRHW","HPD","Housing Preservation and Development","Fixed Asset","15063000","13629922.83","0" +"806HAM24MRLE","HPD","Housing Preservation and Development","Fixed Asset","2055000","7388264.64","138008.4" +"806HAM24MRMC","HPD","Housing Preservation and Development","Fixed Asset","9641000","7807583.21","0" +"806HAM24MRPA","HPD","Housing Preservation and Development","Fixed Asset","38280000","355500","0" +"806HAM24MRRA","HPD","Housing Preservation and Development","Fixed Asset","0","10125834.48","0" +"806HAM24MRTN","HPD","Housing Preservation and Development","Fixed Asset","48347000","43918031.17","0" +"806HAM24MRVR","HPD","Housing Preservation and Development","Fixed Asset","213442000","12768098.75","6898198.71" +"806HAM24MRWC","HPD","Housing Preservation and Development","Fixed Asset","1576000","8867.16","499115.28" +"806HAM24MRWH","HPD","Housing Preservation and Development","Fixed Asset","24673000","21922919.65","137000" +"806HAM24QNSB","HPD","Housing Preservation and Development","Fixed Asset","817000","1064867.11","618284.99" +"806HAM24VDGR","HPD","Housing Preservation and Development","Fixed Asset","650000","0","0" +"806HAM25BXRA","HPD","Housing Preservation and Development","Fixed Asset","8757000","7823852","0" +"806HAM25FORS","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806HAM25GIPP","HPD","Housing Preservation and Development","Fixed Asset","1480000","0","0" +"806HAM25MBLG","HPD","Housing Preservation and Development","Fixed Asset","1600000","0","0" +"806HAM25MCCC","HPD","Housing Preservation and Development","Fixed Asset","300000","0","0" +"806HAM25MITC","HPD","Housing Preservation and Development","Fixed Asset","869000","0","0" +"806HAM25NOST","HPD","Housing Preservation and Development","Fixed Asset","28240000","21850550.78","3821813.22" +"806HAM25PSCK","HPD","Housing Preservation and Development","Fixed Asset","1500000","0","0" +"806HAM25SHBC","HPD","Housing Preservation and Development","Fixed Asset","395000","0","0" +"806HAM25SJHV","HPD","Housing Preservation and Development","Fixed Asset","275000","0","0" +"806HAM25SUCC","HPD","Housing Preservation and Development","Fixed Asset","3131000","0","0" +"806HAM25UNTO","HPD","Housing Preservation and Development","Fixed Asset","8700000","0","0" +"806HAM25WAGP","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806HAM25WHIT","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806HAM26ABAT","HPD","Housing Preservation and Development","Fixed Asset","19696000","0","0" +"806HAM26DAMP","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806HAM26DSCH","HPD","Housing Preservation and Development","Fixed Asset","674000","0","0" +"806HAM26HAHP","HPD","Housing Preservation and Development","Fixed Asset","38400000","0","0" +"806HAM26HSCC","HPD","Housing Preservation and Development","Fixed Asset","650000","0","0" +"806HAM26LIDL","HPD","Housing Preservation and Development","Fixed Asset","2500000","0","0" +"806HAM26MCLD","HPD","Housing Preservation and Development","Fixed Asset","3500000","0","0" +"806HAM26QBDC","HPD","Housing Preservation and Development","Fixed Asset","1500000","0","0" +"806HAM26WGCC","HPD","Housing Preservation and Development","Fixed Asset","14200000","0","0" +"806HMSAREA","HPD","Housing Preservation and Development","Fixed Asset","19771000","9253.12","1376684.98" +"806KINGSBAY","HPD","Housing Preservation and Development","Fixed Asset","1860000","0.0","4810999.4" +"806KITTAY","HPD","Housing Preservation and Development","Fixed Asset","1311000","0","1200461" +"806LONGWOOD","HPD","Housing Preservation and Development","Fixed Asset","25000","0","1415500" +"806MXMT35","HPD","Housing Preservation and Development","Fixed Asset","145129000","0","0" +"806N1182WOOD","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806N1250WILL","HPD","Housing Preservation and Development","Fixed Asset","1500000","0","0" +"806N197ROEBL","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806N3285FULT","HPD","Housing Preservation and Development","Fixed Asset","10559000","0","10559000" +"806N521ETRE","HPD","Housing Preservation and Development","Fixed Asset","1500000","0","1500000" +"806NARVEASTD","HPD","Housing Preservation and Development","Fixed Asset","2500000","0","2500000" +"806NBARTLETT","HPD","Housing Preservation and Development","Fixed Asset","4000000","0","4000000" +"806NBROWNHAB","HPD","Housing Preservation and Development","Fixed Asset","1477000","0","1585000" +"806NCLRMNT","HPD","Housing Preservation and Development","Fixed Asset","2700000","0","0" +"806NDF-18BOI","HPD","Housing Preservation and Development","Fixed Asset","711000","16003094.83","541548.96" +"806NDF-18GAS","HPD","Housing Preservation and Development","Fixed Asset","1943000","1583754.51","1698585.49" +"806NDF-18ROF","HPD","Housing Preservation and Development","Fixed Asset","20000","0.0","2378121.6" +"806NDF-18VNT","HPD","Housing Preservation and Development","Fixed Asset","7574000","30079.17","12416440.02" +"806NHABPASS","HPD","Housing Preservation and Development","Fixed Asset","300000","0","1000000" +"806NHILLTOP","HPD","Housing Preservation and Development","Fixed Asset","1050000","0","0" +"806NMHDOOR","HPD","Housing Preservation and Development","Fixed Asset","1100000","0","0" +"806NMOTTGATE","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806NMSHABAZZ","HPD","Housing Preservation and Development","Fixed Asset","2875000","0","2875000" +"806NPOWER","HPD","Housing Preservation and Development","Fixed Asset","750000","0","0" +"806NRISEFOX","HPD","Housing Preservation and Development","Fixed Asset","1500000","0","0" +"806NWESTQ","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806OURSPACE","HPD","Housing Preservation and Development","Fixed Asset","7350000","0","416715000" +"806PV05NINDY","HPD","Housing Preservation and Development","Fixed Asset","6713000","0","0" +"806PV991RENO","HPD","Housing Preservation and Development","Fixed Asset","32550000","0","22000000" +"806R158RIVER","HPD","Housing Preservation and Development","Fixed Asset","1300000","0","0" +"806R160CHLDC","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806R228E46","HPD","Housing Preservation and Development","Fixed Asset","1465000","0","0" +"806R248ARAVE","HPD","Housing Preservation and Development","Fixed Asset","1700000","0","0" +"806R334E92","HPD","Housing Preservation and Development","Fixed Asset","415000","0","415000" +"806R337AMAC","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806R80CANAL","HPD","Housing Preservation and Development","Fixed Asset","2125000","0","0" +"806RADA333","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806RBERGEN","HPD","Housing Preservation and Development","Fixed Asset","250000","0","616000" +"806RBIGSIX","HPD","Housing Preservation and Development","Fixed Asset","400000","0","0" +"806RBROADCOM","HPD","Housing Preservation and Development","Fixed Asset","300000","0","0" +"806RCADMAN","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806RCADMANPL","HPD","Housing Preservation and Development","Fixed Asset","100000","0","0" +"806RCASABE","HPD","Housing Preservation and Development","Fixed Asset","1700000","0","0" +"806RCLAYTON","HPD","Housing Preservation and Development","Fixed Asset","100000","0","1000000" +"806RCOOPRCLT","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806RDEANST","HPD","Housing Preservation and Development","Fixed Asset","950000","0","0" +"806RE22STSEN","HPD","Housing Preservation and Development","Fixed Asset","918000","0","918000" +"806RE54ST","HPD","Housing Preservation and Development","Fixed Asset","641000","0","641000" +"806REARLJIM","HPD","Housing Preservation and Development","Fixed Asset","3400000","0","0" +"806RECLARKE","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806RFLEMH","HPD","Housing Preservation and Development","Fixed Asset","200000","0","0" +"806RFOUND","HPD","Housing Preservation and Development","Fixed Asset","524000","0","0" +"806RGORMAN","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806RGRANDPA","HPD","Housing Preservation and Development","Fixed Asset","1800000","0","0" +"806RHARGARD","HPD","Housing Preservation and Development","Fixed Asset","100000","0","0" +"806RHARMONY","HPD","Housing Preservation and Development","Fixed Asset","170000","0","0" +"806RJAMIETW","HPD","Housing Preservation and Development","Fixed Asset","4000000","0","0" +"806RLEE","HPD","Housing Preservation and Development","Fixed Asset","36000","0","0" +"806RLUNAGRN","HPD","Housing Preservation and Development","Fixed Asset","830000","0","0" +"806RMAPLECT","HPD","Housing Preservation and Development","Fixed Asset","675000","0","1200000" +"806RMUTREDEV","HPD","Housing Preservation and Development","Fixed Asset","200000","0","0" +"806RMUTUAL","HPD","Housing Preservation and Development","Fixed Asset","700000","0","0" +"806RNCSHDFC","HPD","Housing Preservation and Development","Fixed Asset","338000","0","0" +"806RNYFOUND","HPD","Housing Preservation and Development","Fixed Asset","434000","0","0" +"806ROAK3260","HPD","Housing Preservation and Development","Fixed Asset","2500000","0","0" +"806ROBIN","HPD","Housing Preservation and Development","Fixed Asset","2000000","0","0" +"806RPRATTTWR","HPD","Housing Preservation and Development","Fixed Asset","500000","0","1600000" +"806RREDHOOKG","HPD","Housing Preservation and Development","Fixed Asset","2000000","0","0" +"806RRESESP","HPD","Housing Preservation and Development","Fixed Asset","45000","0","0" +"806RSAMBURT","HPD","Housing Preservation and Development","Fixed Asset","1305000","0","0" +"806RSTRYCKER","HPD","Housing Preservation and Development","Fixed Asset","300000","0","0" +"806RTWRGARD","HPD","Housing Preservation and Development","Fixed Asset","4500000","0","0" +"806RUNIONST","HPD","Housing Preservation and Development","Fixed Asset","430000","0","0" +"806RVIPSOLAR","HPD","Housing Preservation and Development","Fixed Asset","200000","0","0" +"806RWALES","HPD","Housing Preservation and Development","Fixed Asset","860000","0","0" +"806RWASHSQ","HPD","Housing Preservation and Development","Fixed Asset","750000","0","0" +"806S9STREET","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806SANNEX","HPD","Housing Preservation and Development","Fixed Asset","2500000","0","4000000" +"806SBROOME","HPD","Housing Preservation and Development","Fixed Asset","1600000","0","0" +"806SCARMENV","HPD","Housing Preservation and Development","Fixed Asset","3750000","0","0" +"806SEAGLE","HPD","Housing Preservation and Development","Fixed Asset","2770000","0","0" +"806SEAST156","HPD","Housing Preservation and Development","Fixed Asset","1500000","0","0" +"806SEED-JRCC","HPD","Housing Preservation and Development","Fixed Asset","5300000","0","0" +"806SEED-QBPR","HPD","Housing Preservation and Development","Fixed Asset","1900000","0","0" +"806SEQ-SJH","HPD","Housing Preservation and Development","Fixed Asset","216000","3036580.69","2796784.01" +"806SHARTLEY","HPD","Housing Preservation and Development","Fixed Asset","3750000","0","0" +"806SHLARG26","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806SHLARG27","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806SHLARG28","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806SHLARG29","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806SKISSENA","HPD","Housing Preservation and Development","Fixed Asset","2000000","0","0" +"806SNR97W169","HPD","Housing Preservation and Development","Fixed Asset","4550000","0","0" +"806SREDHOOKA","HPD","Housing Preservation and Development","Fixed Asset","2000000","0","0" +"806SREDHOOKB","HPD","Housing Preservation and Development","Fixed Asset","3000000","0","0" +"806SW108","HPD","Housing Preservation and Development","Fixed Asset","1750000","0","1500000" +"806TIFFANY","HPD","Housing Preservation and Development","Fixed Asset","35000","0","465000" +"806XCANNONH","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"806XOUBHSG","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"806XRIVCOMS","HPD","Housing Preservation and Development","Fixed Asset","500000","0","500000" +"806XSTEVECOM","HPD","Housing Preservation and Development","Fixed Asset","9500000","0","0" +"806XWOODLAWN","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"816ACEDOH211","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","1000","37088.23","871363.77" +"816ACEDOH701","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","-48000","0.00","71725.72" +"816CME520FPC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","500000","0","0" +"816CMEARTEL","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0.00","77701.63" +"816CMEFACP","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","1170000","0","0" +"816CMENETCOM","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","741000","219468.74","7509363.94" +"816CMESYNSNS","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","500000","0","0" +"816HL82125VI","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","2500000","0","0" +"816HL82BERGN","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","172000","553.18","1316631.4" +"816HL82BERIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"816HL82BRKIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","821000","0","0" +"816HL82BRTEH","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","175000","0","0" +"816HL82BRXIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","4037000","2464798.33","0" +"816HL82CRISR","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","4000000","0","0" +"816HL82CROWH","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"816HL82FACIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","7196.99","468653.42" +"816HL82FGCHI","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","2387000","2053360.24","0" +"816HL82FORTG","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","5994000","0","0" +"816HL82FTGTB","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"816HL82GLEEB","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"816HL82MANIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","235000","0.00","15171.25" +"816HL82PCC","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","1500000","0","0" +"816HL82PHLOF","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","31119000","12600713.98","3356276.44" +"816HL82PRSWH","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"816HL82RELOF","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","285000","0","0" +"816HL82REOPS","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","5000000","0","0" +"816HL82TREMF","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","6000000","0","0" +"816HL82WAHIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","0","0","0" +"816HL82WARIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","546000","0.00","175193.37" +"816HL82ZERGA","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","236000","0.0","4274560.1" +"816HL82ZRGIO","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","83000","29271.68","280320.10" +"816HLDMSWHOS","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","75000","0","0" +"816SEED-QJNP","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","8300000","0","0" +"81902201521","HHC","Health and Hospitals Corporation","Fixed Asset","633000","0.00","5253885.42" +"81902201601","HHC","Health and Hospitals Corporation","Fixed Asset","24272000","0","0" +"81902201602","HHC","Health and Hospitals Corporation","Fixed Asset","37796000","219887.49","20390308.39" +"81902201723","HHC","Health and Hospitals Corporation","Fixed Asset","560000","1237501.23","5831872.75" +"81902201802","HHC","Health and Hospitals Corporation","Fixed Asset","0","12401.03","759451.28" +"81902201804","HHC","Health and Hospitals Corporation","Fixed Asset","110000","0.00","2763677.53" +"81902201805","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","826276.67" +"81902201901","HHC","Health and Hospitals Corporation","Fixed Asset","1000","596.44","30246258.47" +"81902202407","HHC","Health and Hospitals Corporation","Fixed Asset","24000000","0","0" +"81902202429","HHC","Health and Hospitals Corporation","Fixed Asset","890000","0","0" +"81902202431","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","8765679.13" +"81902202435","HHC","Health and Hospitals Corporation","Fixed Asset","22100000","0","0" +"81911200908","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","356295" +"81911201705","HHC","Health and Hospitals Corporation","Fixed Asset","65000","171594.88","3652200.42" +"81911201803","HHC","Health and Hospitals Corporation","Fixed Asset","676000","47158.4","839009.6" +"81911201841","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81911200912","HHC","Health and Hospitals Corporation","Fixed Asset","28000","0","523829" +"81911201843","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.0","750325.4" +"81911201903","HHC","Health and Hospitals Corporation","Fixed Asset","1097000","16237.46","0" +"81911202101","HHC","Health and Hospitals Corporation","Fixed Asset","92000","10000.00","869868.82" +"81911202104","HHC","Health and Hospitals Corporation","Fixed Asset","600000","2219678.67","391237.49" +"81924202202","HHC","Health and Hospitals Corporation","Fixed Asset","502000","0","0" +"81911202201","HHC","Health and Hospitals Corporation","Fixed Asset","28866000","529418.48","1604613.52" +"81911202202","HHC","Health and Hospitals Corporation","Fixed Asset","283000","60485.40","1108942.42" +"81911202205","HHC","Health and Hospitals Corporation","Fixed Asset","8489000","0","338908" +"81911202209","HHC","Health and Hospitals Corporation","Fixed Asset","3177000","10883631.04","3227809.22" +"81911202243","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","159888.38" +"81911202343","HHC","Health and Hospitals Corporation","Fixed Asset","5000","0","206900" +"81911202403","HHC","Health and Hospitals Corporation","Fixed Asset","10573000","214784.12","218917.38" +"81911202442","HHC","Health and Hospitals Corporation","Fixed Asset","103000","16888.87","880529.93" +"81911202609","HHC","Health and Hospitals Corporation","Fixed Asset","12000000","0","0" +"81911202614","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81911202615","HHC","Health and Hospitals Corporation","Fixed Asset","48240000","0","0" +"81912201801","HHC","Health and Hospitals Corporation","Fixed Asset","46000","0.00","244783.41" +"81912201802","HHC","Health and Hospitals Corporation","Fixed Asset","9000","0.00","80260.46" +"81912201804","HHC","Health and Hospitals Corporation","Fixed Asset","21000","0.00","175281.47" +"81912201902","HHC","Health and Hospitals Corporation","Fixed Asset","105000","49000.0","227628.8" +"81912202202","HHC","Health and Hospitals Corporation","Fixed Asset","80000","0","0" +"81912202341","HHC","Health and Hospitals Corporation","Fixed Asset","47000","0","102800" +"81912202401","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81912202402","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81912202403","HHC","Health and Hospitals Corporation","Fixed Asset","125000","0","0" +"81913201803","HHC","Health and Hospitals Corporation","Fixed Asset","227000","227381.86","1533689.62" +"81913202001","HHC","Health and Hospitals Corporation","Fixed Asset","190000","67704.07","5627367.56" +"81913202101","HHC","Health and Hospitals Corporation","Fixed Asset","26000","0","123950" +"81913202102","HHC","Health and Hospitals Corporation","Fixed Asset","3083000","78251.41","704348.16" +"81913202201","HHC","Health and Hospitals Corporation","Fixed Asset","375000","458106.33","7103258.48" +"81913202341","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","1003152" +"81913202401","HHC","Health and Hospitals Corporation","Fixed Asset","10000000","0","0" +"81913202402","HHC","Health and Hospitals Corporation","Fixed Asset","3000000","0","0" +"81918201801","HHC","Health and Hospitals Corporation","Fixed Asset","10000","0.00","81578.15" +"81918202001","HHC","Health and Hospitals Corporation","Fixed Asset","1093000","0","0" +"81918202201","HHC","Health and Hospitals Corporation","Fixed Asset","250000","0","0" +"81918202441","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81920201801","HHC","Health and Hospitals Corporation","Fixed Asset","10000","0.00","84856.65" +"81920202301","HHC","Health and Hospitals Corporation","Fixed Asset","4245000","97152.44","915329.89" +"81920202401","HHC","Health and Hospitals Corporation","Fixed Asset","325000","0","0" +"81921201901","HHC","Health and Hospitals Corporation","Fixed Asset","0","3092.29","342425.01" +"81921202004","HHC","Health and Hospitals Corporation","Fixed Asset","0","192049.91","3521201.09" +"81921202109","HHC","Health and Hospitals Corporation","Fixed Asset","7015000","10868001.28","3893896.93" +"81921202110","HHC","Health and Hospitals Corporation","Fixed Asset","9731000","7805973.46","2485646.21" +"81921202242","HHC","Health and Hospitals Corporation","Fixed Asset","2000","0.00","620171.35" +"81921202343","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","1069145" +"81921202402","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81921202403","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81921202404","HHC","Health and Hospitals Corporation","Fixed Asset","15000000","0","0" +"81921202443","HHC","Health and Hospitals Corporation","Fixed Asset","4000","0","125750" +"81921202605","HHC","Health and Hospitals Corporation","Fixed Asset","201000","0","0" +"81922201901","HHC","Health and Hospitals Corporation","Fixed Asset","250000","151340","628660" +"81922202001","HHC","Health and Hospitals Corporation","Fixed Asset","182000","0.00","145681.32" +"81922202201","HHC","Health and Hospitals Corporation","Fixed Asset","1575000","28699.44","86720.56" +"81922202302","HHC","Health and Hospitals Corporation","Fixed Asset","375000","0","0" +"81922202304","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81922202503","HHC","Health and Hospitals Corporation","Fixed Asset","600000","0","0" +"81922202504","HHC","Health and Hospitals Corporation","Fixed Asset","3500000","0","0" +"81922202602","HHC","Health and Hospitals Corporation","Fixed Asset","100000","0","0" +"81923202001","HHC","Health and Hospitals Corporation","Fixed Asset","100000","0","0" +"81923202101","HHC","Health and Hospitals Corporation","Fixed Asset","6865000","15350","99383" +"81923202401","HHC","Health and Hospitals Corporation","Fixed Asset","1000000","0","0" +"81923202601","HHC","Health and Hospitals Corporation","Fixed Asset","400000","0","0" +"81924201901","HHC","Health and Hospitals Corporation","Fixed Asset","40000000","290943.25","597206.75" +"81924201920","HHC","Health and Hospitals Corporation","Fixed Asset","55000","0.00","157381.36" +"81924201942","HHC","Health and Hospitals Corporation","Fixed Asset","64000","0","0" +"81924202001","HHC","Health and Hospitals Corporation","Fixed Asset","522000","137770.44","1134418.87" +"81924202104","HHC","Health and Hospitals Corporation","Fixed Asset","3294000","113326","192270" +"81924202205","HHC","Health and Hospitals Corporation","Fixed Asset","8862000","9172215.47","965740.53" +"81924202207","HHC","Health and Hospitals Corporation","Fixed Asset","59835000","412576.53","752510.47" +"81924202208","HHC","Health and Hospitals Corporation","Fixed Asset","13751000","9078489.77","2055479.02" +"81924202343","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.0","390476.6" +"81925201602","HHC","Health and Hospitals Corporation","Fixed Asset","-789000","0.00","18816124.47" +"81925201604","HHC","Health and Hospitals Corporation","Fixed Asset","10335000","0","0" +"81925201701","HHC","Health and Hospitals Corporation","Fixed Asset","457000","316514.63","5528956.22" +"81925201742","HHC","Health and Hospitals Corporation","Fixed Asset","19000","0","107074" +"81925201801","HHC","Health and Hospitals Corporation","Fixed Asset","1000","3907.76","859367.9" +"81925201803","HHC","Health and Hospitals Corporation","Fixed Asset","1000","0","130309" +"81925201805","HHC","Health and Hospitals Corporation","Fixed Asset","16000","0.00","394925.26" +"81925201807","HHC","Health and Hospitals Corporation","Fixed Asset","1000","0.00","472648.46" +"81925201901","HHC","Health and Hospitals Corporation","Fixed Asset","201000","455668.68","153981.21" +"81925202001","HHC","Health and Hospitals Corporation","Fixed Asset","236000","0","0" +"81925202002","HHC","Health and Hospitals Corporation","Fixed Asset","500000","0","0" +"81925202003","HHC","Health and Hospitals Corporation","Fixed Asset","92000","0.00","422493.54" +"81925202142","HHC","Health and Hospitals Corporation","Fixed Asset","0","520","2598629" +"81925202143","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.0","732577.1" +"81925202201","HHC","Health and Hospitals Corporation","Fixed Asset","2518000","19105.75","461984.25" +"81925202203H","HHC","Health and Hospitals Corporation","Fixed Asset","1042000","264645.56","4823287.44" +"81925202204","HHC","Health and Hospitals Corporation","Fixed Asset","15828000","152749","388113" +"81925202244","HHC","Health and Hospitals Corporation","Fixed Asset","140000","0","992031" +"81925202402","HHC","Health and Hospitals Corporation","Fixed Asset","12644000","1385634.63","969818.72" +"81925202404","HHC","Health and Hospitals Corporation","Fixed Asset","15000000","0","0" +"81925202406","HHC","Health and Hospitals Corporation","Fixed Asset","2000000","0","0" +"81925202501","HHC","Health and Hospitals Corporation","Fixed Asset","1420000","89687","0" +"81925202502","HHC","Health and Hospitals Corporation","Fixed Asset","4800000","0","0" +"81925202503","HHC","Health and Hospitals Corporation","Fixed Asset","1500000","0","0" +"81926201750","HHC","Health and Hospitals Corporation","Fixed Asset","3000","0","123900" +"81926201941","HHC","Health and Hospitals Corporation","Fixed Asset","206000","0.00","1210774.66" +"81926201942","HHC","Health and Hospitals Corporation","Fixed Asset","412000","0","0" +"81926201946","HHC","Health and Hospitals Corporation","Fixed Asset","257000","0","0" +"81926201948","HHC","Health and Hospitals Corporation","Fixed Asset","30000","0","130750" +"81926202001","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","4275004.29" +"81926202049","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81926202101","HHC","Health and Hospitals Corporation","Fixed Asset","1250000","0","0" +"81926202104","HHC","Health and Hospitals Corporation","Fixed Asset","19915000","376943.24","1017969.76" +"81926202301","HHC","Health and Hospitals Corporation","Fixed Asset","400000","0","0" +"81926202342","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","434224" +"81922201611","HHC","Health and Hospitals Corporation","Fixed Asset","154000","0.00","676192.26" +"81926202405","HHC","Health and Hospitals Corporation","Fixed Asset","10000000","0","0" +"81926202406","HHC","Health and Hospitals Corporation","Fixed Asset","6000000","0","0" +"81927201803","HHC","Health and Hospitals Corporation","Fixed Asset","187000","0.00","1541236.44" +"81927202301","HHC","Health and Hospitals Corporation","Fixed Asset","86000","0.00","152923.95" +"81927202503","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81929201615","HHC","Health and Hospitals Corporation","Fixed Asset","4000","0.00","1006796.19" +"81929201802","HHC","Health and Hospitals Corporation","Fixed Asset","100000","160991.07","2089400.21" +"81929201803","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","417037.74" +"81929202001","HHC","Health and Hospitals Corporation","Fixed Asset","19996000","1434292.23","3215007.77" +"81929202045","HHC","Health and Hospitals Corporation","Fixed Asset","19000","0.00","551067.56" +"81929202101","HHC","Health and Hospitals Corporation","Fixed Asset","53000","0","0" +"81929202103","HHC","Health and Hospitals Corporation","Fixed Asset","32000","0","0" +"81929202104","HHC","Health and Hospitals Corporation","Fixed Asset","9693000","834390","1740625" +"81929202111","HHC","Health and Hospitals Corporation","Fixed Asset","3488000","3278003.02","2155597.98" +"81929202116","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81929202201","HHC","Health and Hospitals Corporation","Fixed Asset","167000","0","794086" +"81929202203","HHC","Health and Hospitals Corporation","Fixed Asset","2708000","1101558.72","1469724.44" +"81929202204","HHC","Health and Hospitals Corporation","Fixed Asset","44050000","970510.03","1574183.52" +"81929202205","HHC","Health and Hospitals Corporation","Fixed Asset","638000","44321.5","613050.1" +"81929202302","HHC","Health and Hospitals Corporation","Fixed Asset","1053000","0","147900" +"81929202303","HHC","Health and Hospitals Corporation","Fixed Asset","9874000","95925","29975" +"81929202401","HHC","Health and Hospitals Corporation","Fixed Asset","776000","128637.46","1452632.74" +"81929202402","HHC","Health and Hospitals Corporation","Fixed Asset","3000000","0","0" +"81929202449","HHC","Health and Hospitals Corporation","Fixed Asset","225000","0","0" +"81929202509","HHC","Health and Hospitals Corporation","Fixed Asset","11000000","0","0" +"81933201803","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","616930" +"81933201804","HHC","Health and Hospitals Corporation","Fixed Asset","124000","46637.46","779605.97" +"81933201901","HHC","Health and Hospitals Corporation","Fixed Asset","1193000","9827838.87","808753.13" +"81933202002","HHC","Health and Hospitals Corporation","Fixed Asset","10991000","682975","643695" +"81933202003","HHC","Health and Hospitals Corporation","Fixed Asset","1126000","652554.56","6098834.58" +"81933202045","HHC","Health and Hospitals Corporation","Fixed Asset","26000","0.00","1458187.74" +"81933202103","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","228600" +"81933202104","HHC","Health and Hospitals Corporation","Fixed Asset","8935000","5128.23","165371.77" +"81933202108","HHC","Health and Hospitals Corporation","Fixed Asset","1000","76368.91","1527004.83" +"81933202111","HHC","Health and Hospitals Corporation","Fixed Asset","7678000","78574.55","243313.45" +"81933202112","HHC","Health and Hospitals Corporation","Fixed Asset","7558000","140688.42","154376.58" +"81933202201","HHC","Health and Hospitals Corporation","Fixed Asset","445000","76968.90","1984846.07" +"81933202202","HHC","Health and Hospitals Corporation","Fixed Asset","856000","5534.28","1023240.50" +"81933202205","HHC","Health and Hospitals Corporation","Fixed Asset","4296000","37417.5","162182.5" +"81933202207","HHC","Health and Hospitals Corporation","Fixed Asset","14320000","27379.91","532610.09" +"81933202302","HHC","Health and Hospitals Corporation","Fixed Asset","5622000","74759.32","316548.68" +"81933202303","HHC","Health and Hospitals Corporation","Fixed Asset","2000000","0","0" +"81933202402","HHC","Health and Hospitals Corporation","Fixed Asset","2000000","0","0" +"81933202404","HHC","Health and Hospitals Corporation","Fixed Asset","5910000","0","0" +"81933202405","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81933202606","HHC","Health and Hospitals Corporation","Fixed Asset","700000","0","0" +"81934201901","HHC","Health and Hospitals Corporation","Fixed Asset","1000","0.00","847236.92" +"81934201944","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","420000" +"81934202101","HHC","Health and Hospitals Corporation","Fixed Asset","9427000","523116.62","49881.38" +"81934202102","HHC","Health and Hospitals Corporation","Fixed Asset","3000","0","1316960" +"81934202201","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81934202243","HHC","Health and Hospitals Corporation","Fixed Asset","5000","0.00","211016.37" +"81934202301","HHC","Health and Hospitals Corporation","Fixed Asset","6009000","0","0" +"81934202305","HHC","Health and Hospitals Corporation","Fixed Asset","3505000","155075.5","29039.5" +"81934202341","HHC","Health and Hospitals Corporation","Fixed Asset","95000","0","754854" +"81934202343","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","540595" +"81934202402","HHC","Health and Hospitals Corporation","Fixed Asset","800000","0","0" +"81934202403","HHC","Health and Hospitals Corporation","Fixed Asset","800000","0","0" +"81934202404","HHC","Health and Hospitals Corporation","Fixed Asset","4000000","0","0" +"81934202405","HHC","Health and Hospitals Corporation","Fixed Asset","500000","0","0" +"81934202602","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81937200802","HHC","Health and Hospitals Corporation","Fixed Asset","21000","0.0","49047.9" +"81937201601","HHC","Health and Hospitals Corporation","Fixed Asset","1000","34699.52","477533.12" +"81937201901","HHC","Health and Hospitals Corporation","Fixed Asset","775000","1021442.12","74735.44" +"81937201941","HHC","Health and Hospitals Corporation","Fixed Asset","12000","0","106694" +"81937202002","HHC","Health and Hospitals Corporation","Fixed Asset","490000","141698.45","124301.55" +"81937202004","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81937202102","HHC","Health and Hospitals Corporation","Fixed Asset","162000","814898.33","11646255.87" +"81937202103","HHC","Health and Hospitals Corporation","Fixed Asset","4142000","3224852.05","743104.05" +"81937202105","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","1293030" +"81937202202","HHC","Health and Hospitals Corporation","Fixed Asset","6394000","44369.76","159748.57" +"81937202203","HHC","Health and Hospitals Corporation","Fixed Asset","2524000","383005.43","150570.07" +"81937202401","HHC","Health and Hospitals Corporation","Fixed Asset","4000000","0","0" +"81937202443","HHC","Health and Hospitals Corporation","Fixed Asset","18000","0.00","105455.68" +"81942202202","HHC","Health and Hospitals Corporation","Fixed Asset","152000","29049.16","515568.22" +"81942202401","HHC","Health and Hospitals Corporation","Fixed Asset","1250000","0","0" +"81948201901","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81948201902","HHC","Health and Hospitals Corporation","Fixed Asset","1148000","230046.97","3622468.65" +"81948201903","HHC","Health and Hospitals Corporation","Fixed Asset","1857000","0","0" +"81948201942","HHC","Health and Hospitals Corporation","Fixed Asset","27000","0.00","89217.56" +"81948201946","HHC","Health and Hospitals Corporation","Fixed Asset","70000","33300.48","438448.58" +"81948202002","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","2026032.66" +"81948202003","HHC","Health and Hospitals Corporation","Fixed Asset","18000","0.00","932283.62" +"81948202040","HHC","Health and Hospitals Corporation","Fixed Asset","4000","0.00","162175.61" +"81948202101","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","467859.32" +"81948202108","HHC","Health and Hospitals Corporation","Fixed Asset","988000","3628425.26","33874092.66" +"81948202203","HHC","Health and Hospitals Corporation","Fixed Asset","1920000","4099919.20","12643593.07" +"81948202206","HHC","Health and Hospitals Corporation","Fixed Asset","10923000","4948909.81","2221110.19" +"81948202208","HHC","Health and Hospitals Corporation","Fixed Asset","11439000","395020.96","1391988.96" +"81948202209","HHC","Health and Hospitals Corporation","Fixed Asset","13682000","383561","307539" +"81948202301","HHC","Health and Hospitals Corporation","Fixed Asset","2095000","263950.00","431876.00" +"81948202343","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","774163" +"81948202402","HHC","Health and Hospitals Corporation","Fixed Asset","3000000","0","0" +"81948202505","HHC","Health and Hospitals Corporation","Fixed Asset","335000","301980","0" +"81948202508","HHC","Health and Hospitals Corporation","Fixed Asset","92000","0","0" +"81948202509","HHC","Health and Hospitals Corporation","Fixed Asset","170000","0","0" +"81948202512","HHC","Health and Hospitals Corporation","Fixed Asset","245000","0","0" +"81948202513","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81948202514","HHC","Health and Hospitals Corporation","Fixed Asset","0","0","0" +"81948202515","HHC","Health and Hospitals Corporation","Fixed Asset","225000","0","0" +"81948202516","HHC","Health and Hospitals Corporation","Fixed Asset","500000","0","0" +"81950202405","HHC","Health and Hospitals Corporation","Fixed Asset","1700000","0","0" +"81952202401","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81957202601","HHC","Health and Hospitals Corporation","Fixed Asset","1000000","0","0" +"81967200802","HHC","Health and Hospitals Corporation","Fixed Asset","81000","0.00","190572.85" +"81967200803","HHC","Health and Hospitals Corporation","Fixed Asset","10000","0.00","28929.99" +"81967201170","HHC","Health and Hospitals Corporation","Fixed Asset","184000","0","10868235" +"81967202201","HHC","Health and Hospitals Corporation","Fixed Asset","225000","0","0" +"81967202202","HHC","Health and Hospitals Corporation","Fixed Asset","27000","176654","0" +"81967202341","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.0","214950.4" +"81967202401","HHC","Health and Hospitals Corporation","Fixed Asset","950000","0","0" +"81967202402","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81967202404","HHC","Health and Hospitals Corporation","Fixed Asset","490000","0","0" +"81967202405","HHC","Health and Hospitals Corporation","Fixed Asset","1000000","0","0" +"81967202504","HHC","Health and Hospitals Corporation","Fixed Asset","650000","0","0" +"81968200802","HHC","Health and Hospitals Corporation","Fixed Asset","9000","0.00","21796.42" +"81969202101","HHC","Health and Hospitals Corporation","Fixed Asset","11544000","188866.02","22268974.98" +"81971202301","HHC","Health and Hospitals Corporation","Fixed Asset","1000000","0","0" +"81973202301","HHC","Health and Hospitals Corporation","Fixed Asset","2500000","0","0" +"81973202402","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81973202442","HHC","Health and Hospitals Corporation","Fixed Asset","4000000","0","0" +"81974202301","HHC","Health and Hospitals Corporation","Fixed Asset","500000","0","0" +"81974202401","HHC","Health and Hospitals Corporation","Fixed Asset","55000","0","0" +"81974202601","HHC","Health and Hospitals Corporation","Fixed Asset","55000","0","0" +"81975201801","HHC","Health and Hospitals Corporation","Fixed Asset","3000","8611.7","163622.3" +"81975202201","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81975202202","HHC","Health and Hospitals Corporation","Fixed Asset","37700000","0","0" +"81975202401","HHC","Health and Hospitals Corporation","Fixed Asset","250000","0","0" +"81975202402","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81975202403","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81975202404","HHC","Health and Hospitals Corporation","Fixed Asset","200000","0","0" +"81975202405","HHC","Health and Hospitals Corporation","Fixed Asset","250000","0","0" +"81975202501","HHC","Health and Hospitals Corporation","Fixed Asset","350000","0","0" +"81975202601","HHC","Health and Hospitals Corporation","Fixed Asset","3900000","0","0" +"81976202301","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81976202601","HHC","Health and Hospitals Corporation","Fixed Asset","150000","0","0" +"81977202301","HHC","Health and Hospitals Corporation","Fixed Asset","100000","0","0" +"81977202401","HHC","Health and Hospitals Corporation","Fixed Asset","55000","0","0" +"81978202301","HHC","Health and Hospitals Corporation","Fixed Asset","500000","0","0" +"81978202302","HHC","Health and Hospitals Corporation","Fixed Asset","100000","0","0" +"81978202401","HHC","Health and Hospitals Corporation","Fixed Asset","1500000","0","0" +"81982202501","HHC","Health and Hospitals Corporation","Fixed Asset","1500000","0","0" +"819ACEHHC602","HHC","Health and Hospitals Corporation","Fixed Asset","330000","1138682.79","13599622.92" +"819ACEHHC605","HHC","Health and Hospitals Corporation","Fixed Asset","0","0.00","1317389.97" +"819ACEHHC803","HHC","Health and Hospitals Corporation","Fixed Asset","225000","2606027.16","2538694.92" +"819ACEHHC901","HHC","Health and Hospitals Corporation","Fixed Asset","3104000","995796.39","24340312.86" +"819ACEHHC902","HHC","Health and Hospitals Corporation","Fixed Asset","0","1461531.17","1268330.83" +"819CV19BUCOE","HHC","Health and Hospitals Corporation","Fixed Asset","4719000","63989.75","4949026.26" +"819CV19ROCOE","HHC","Health and Hospitals Corporation","Fixed Asset","2469000","35924.21","2799742.64" +"819CV19TRCOE","HHC","Health and Hospitals Corporation","Fixed Asset","3989000","27789.49","3582310.51" +"819E24-0004","HHC","Health and Hospitals Corporation","Fixed Asset","35693000","3160523.68","725425.32" +"819E24-0005","HHC","Health and Hospitals Corporation","Fixed Asset","14540000","0","0" +"819HOFACDEV","HHC","Health and Hospitals Corporation","Fixed Asset","333809000","0","0" +"819SANDDR","HHC","Health and Hospitals Corporation","Fixed Asset","35132000","0","0" +"819SEED-QN26","HHC","Health and Hospitals Corporation","Fixed Asset","70000000","0","0" +"819TKYHHC013","HHC","Health and Hospitals Corporation","Fixed Asset","402000","990978.44","4427192.56" +"819TKYHHC014","HHC","Health and Hospitals Corporation","Fixed Asset","287000","2411893.73","1237852.27" +"819TKYHHC17","HHC","Health and Hospitals Corporation","Fixed Asset","10297000","9552820","0" +"819TKYHHC907","HHC","Health and Hospitals Corporation","Fixed Asset","295000","3101106.86","3710088.14" +"819WFF-HHC","HHC","Health and Hospitals Corporation","Fixed Asset","5860000","54368","85722" +"826138BRIDGE","DEP","Department of Environmental Protection","Fixed Asset","281000","280934.37","370000" +"826179PSVFD","DEP","Department of Environmental Protection","Fixed Asset","795000","0","0" +"82626W-154-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"82626W-155-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"82626W-156-L","DEP","Department of Environmental Protection","Fixed Asset","59873000","9183378.98","0" +"82626W-159-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"82626W-166-L","DEP","Department of Environmental Protection","Fixed Asset","19830000","0","0" +"82626W-167-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"82638TH-ADS","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826ACEDEP261","DEP","Department of Environmental Protection","Fixed Asset","544000","0","0" +"826ACEDEP503","DEP","Department of Environmental Protection","Fixed Asset","39109000","8971466.62","1235593.38" +"826ACEDEP601","DEP","Department of Environmental Protection","Fixed Asset","873000","0","0" +"826ACEDEP703","DEP","Department of Environmental Protection","Fixed Asset","0","273411.17","6556774.83" +"826AWT2-CARB","DEP","Department of Environmental Protection","Fixed Asset","0","1777001.97","110205127.41" +"826BB-236-L","DEP","Department of Environmental Protection","Fixed Asset","5582000","0","0" +"826BB-239-L","DEP","Department of Environmental Protection","Fixed Asset","440000","1752780.5","4024723.5" +"826BED780A","DEP","Department of Environmental Protection","Fixed Asset","3004000","0","0" +"826BOATPUMP","DEP","Department of Environmental Protection","Fixed Asset","391000","0","0" +"826C519","DEP","Department of Environmental Protection","Fixed Asset","353181000","837081475.11","195712664.13" +"826C540","DEP","Department of Environmental Protection","Fixed Asset","694628000","185127804.74","483145663.63" +"826CAT-178","DEP","Department of Environmental Protection","Fixed Asset","0","0","1000000" +"826CAT-212","DEP","Department of Environmental Protection","Fixed Asset","23010000","44671758.39","460459923.75" +"826CAT-213","DEP","Department of Environmental Protection","Fixed Asset","1139379000","132721925.62","71959671.66" +"826CAT-252","DEP","Department of Environmental Protection","Fixed Asset","14869000","8637151.89","47088149.18" +"826CAT-367","DEP","Department of Environmental Protection","Fixed Asset","79813000","0","0" +"826CAT-379","DEP","Department of Environmental Protection","Fixed Asset","27787000","3497123.99","128236.27" +"819SAND3706","HHC","Health and Hospitals Corporation","Fixed Asset","364000","72150.29","4609702.93" +"826CAT-390","DEP","Department of Environmental Protection","Fixed Asset","6675000","0","584102" +"826CAT-427","DEP","Department of Environmental Protection","Fixed Asset","45373000","10730919.41","515363.59" +"826CAT-452","DEP","Department of Environmental Protection","Fixed Asset","44840000","2549423.54","2265363.54" +"826CAT-477","DEP","Department of Environmental Protection","Fixed Asset","122371000","7283197.24","6501497.52" +"826CAT-506","DEP","Department of Environmental Protection","Fixed Asset","90900000","2689668.62","2473345.79" +"826CAT-507","DEP","Department of Environmental Protection","Fixed Asset","87100000","8408141.54","1511175.64" +"826CAT-508","DEP","Department of Environmental Protection","Fixed Asset","12135000","0","0" +"826CAT-511","DEP","Department of Environmental Protection","Fixed Asset","21100000","4291542.06","598461.94" +"826CAT-523","DEP","Department of Environmental Protection","Fixed Asset","24500000","4347615.14","2592014.86" +"826CAT-528","DEP","Department of Environmental Protection","Fixed Asset","5000000","0","0" +"826CAT-DAMS","DEP","Department of Environmental Protection","Fixed Asset","428000","4078877.33","97687981.78" +"826CB-KR25","DEP","Department of Environmental Protection","Fixed Asset","3686000","0","0" +"826CB-QE25","DEP","Department of Environmental Protection","Fixed Asset","6484000","0","0" +"826CB-QW25","DEP","Department of Environmental Protection","Fixed Asset","12761000","0","0" +"826CB-X25","DEP","Department of Environmental Protection","Fixed Asset","4305000","0","0" +"826CI-124","DEP","Department of Environmental Protection","Fixed Asset","78728000","3771741.38","0" +"826CI-140-L","DEP","Department of Environmental Protection","Fixed Asset","375000","0","0" +"826CLBRSTROW","DEP","Department of Environmental Protection","Fixed Asset","20320000","0","0" +"826CRO-286","DEP","Department of Environmental Protection","Fixed Asset","1500000","4108388.84","90148524.81" +"826CRO-410","DEP","Department of Environmental Protection","Fixed Asset","2500000","0","0" +"826CRO-502","DEP","Department of Environmental Protection","Fixed Asset","3700000","1521469.57","6866682.59" +"826CRO-509","DEP","Department of Environmental Protection","Fixed Asset","37958000","0","0" +"826CRO-552","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826CRO-553","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826CRO-553B","DEP","Department of Environmental Protection","Fixed Asset","58500000","0","0" +"826CRO-557","DEP","Department of Environmental Protection","Fixed Asset","4040000","6360011.19","14827763.31" +"826CRO-558","DEP","Department of Environmental Protection","Fixed Asset","3418000","0","0" +"826CRO-570","DEP","Department of Environmental Protection","Fixed Asset","27800000","0","0" +"826CRO-586","DEP","Department of Environmental Protection","Fixed Asset","28332000","6429659.85","1846856.15" +"826CRO-587","DEP","Department of Environmental Protection","Fixed Asset","45500000","6060213.27","1461667.64" +"826CRO-607","DEP","Department of Environmental Protection","Fixed Asset","300000","0","0" +"826CRO-624","DEP","Department of Environmental Protection","Fixed Asset","170000","11264009.65","2434091.13" +"826CRO-636","DEP","Department of Environmental Protection","Fixed Asset","76573000","9883888.69","684156.31" +"826CRO-644","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826CS-BX-LTP","DEP","Department of Environmental Protection","Fixed Asset","13494000","30537243.09","77368013.34" +"826CS-JB-DUC","DEP","Department of Environmental Protection","Fixed Asset","10119000","0","0" +"826CS-JB-FRE","DEP","Department of Environmental Protection","Fixed Asset","16799000","0","1750000" +"826CS-JB-STO","DEP","Department of Environmental Protection","Fixed Asset","10475000","0","0" +"826CS-JB-WET","DEP","Department of Environmental Protection","Fixed Asset","26842000","0","0" +"826CS-NC-BAP","DEP","Department of Environmental Protection","Fixed Asset","33600000","3670899.91","3043723.09" +"826CS-NC-CST","DEP","Department of Environmental Protection","Fixed Asset","3430350000","62215152.71","44795046.45" +"826CSO-FBAY","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826CSO-GC","DEP","Department of Environmental Protection","Fixed Asset","39000","15454818.40","182121095.23" +"826CSO-HS-DS","DEP","Department of Environmental Protection","Fixed Asset","41783000","0","0" +"826CSO-PAER","DEP","Department of Environmental Protection","Fixed Asset","209000","6073834.72","365937243.26" +"826CSO-UPGRD","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826CWIA2017","DEP","Department of Environmental Protection","Fixed Asset","6700000","0","0" +"826CXHP08PAR","DEP","Department of Environmental Protection","Fixed Asset","54100000","0","0" +"826DEL-194","DEP","Department of Environmental Protection","Fixed Asset","45329000","9356706.15","1810823.21" +"826DEL-260","DEP","Department of Environmental Protection","Fixed Asset","2001000","1269874.93","12484631.54" +"826DEL-359V","DEP","Department of Environmental Protection","Fixed Asset","21221000","5719627.60","1811307.45" +"826DEL-397","DEP","Department of Environmental Protection","Fixed Asset","19000000","3164622.75","8818377.25" +"826DEL-424","DEP","Department of Environmental Protection","Fixed Asset","5601000","3200939.04","21541391.23" +"826DEL-431","DEP","Department of Environmental Protection","Fixed Asset","6956000","0","0" +"826DEL-434","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826DEL-464","DEP","Department of Environmental Protection","Fixed Asset","20000000","0","0" +"826DEP-DRA","DEP","Department of Environmental Protection","Fixed Asset","138125000","78150040.45","1050974462.88" +"826DOT-SE-SP","DEP","Department of Environmental Protection","Fixed Asset","11246000","0","0" +"826DOT-WM-SP","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826DSMNH","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826EC-GUN27","DEP","Department of Environmental Protection","Fixed Asset","11700000","0","0" +"826EC-SEC27","DEP","Department of Environmental Protection","Fixed Asset","23753000","0","0" +"826EC-SEH27","DEP","Department of Environmental Protection","Fixed Asset","7000000","0","0" +"826EC-SEKN27","DEP","Department of Environmental Protection","Fixed Asset","9500000","0","0" +"826EC-SEKS27","DEP","Department of Environmental Protection","Fixed Asset","10500000","0","0" +"826EC-SEQN27","DEP","Department of Environmental Protection","Fixed Asset","12000000","0","0" +"826EC-SEQS27","DEP","Department of Environmental Protection","Fixed Asset","13500000","0","0" +"826EC-SER27","DEP","Department of Environmental Protection","Fixed Asset","6500000","0","0" +"826EC-WMC27","DEP","Department of Environmental Protection","Fixed Asset","12350000","0","0" +"826FADLAND21","DEP","Department of Environmental Protection","Fixed Asset","0","14366429.88","26704493.67" +"826FADLAND25","DEP","Department of Environmental Protection","Fixed Asset","0","6385201.50","1765154.07" +"826FADLAND26","DEP","Department of Environmental Protection","Fixed Asset","10119000","2578740.00","5866.75" +"826FCWET","DEP","Department of Environmental Protection","Fixed Asset","7191000","0","809300" +"826FMC-LEAD","DEP","Department of Environmental Protection","Fixed Asset","8341000","1904729.79","1766277.12" +"826GI-CON-AS","DEP","Department of Environmental Protection","Fixed Asset","3251000","293697.46","4480263.32" +"826GI-DDC","DEP","Department of Environmental Protection","Fixed Asset","1600000","0","0" +"826GI-DOESCA","DEP","Department of Environmental Protection","Fixed Asset","18400000","0","0" +"826GKOH15-1A","DEP","Department of Environmental Protection","Fixed Asset","680000","0","0" +"826GKOH15-3A","DEP","Department of Environmental Protection","Fixed Asset","900000","0","0" +"826GQ-MEDHOW","DEP","Department of Environmental Protection","Fixed Asset","2500000","0","0" +"826GQ-MED-KH","DEP","Department of Environmental Protection","Fixed Asset","4000000","0","0" +"826GX-MEDBAY","DEP","Department of Environmental Protection","Fixed Asset","2500000","0","0" +"826GX-MED-RD","DEP","Department of Environmental Protection","Fixed Asset","1500000","0","0" +"826HBBA24181","DEP","Department of Environmental Protection","Fixed Asset","983000","0","0" +"826HED596","DEP","Department of Environmental Protection","Fixed Asset","45805000","0","0" +"826HLSS-QNS","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826HP-247-L","DEP","Department of Environmental Protection","Fixed Asset","4556000","912955.40","11463900.22" +"826HP-253-L","DEP","Department of Environmental Protection","Fixed Asset","20100000","0","0" +"826HP-254-L","DEP","Department of Environmental Protection","Fixed Asset","9880000","31894965.68","8291957.17" +"826ID21-PSLT","DEP","Department of Environmental Protection","Fixed Asset","338300000","0","0" +"826ID21-PUMP","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826J-191-L","DEP","Department of Environmental Protection","Fixed Asset","221000","1418771.70","2493345.30" +"826JA-182-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826JA-187","DEP","Department of Environmental Protection","Fixed Asset","12500000","0","0" +"826JA-GBT","DEP","Department of Environmental Protection","Fixed Asset","18780000","0","0" +"826JFK-12","DEP","Department of Environmental Protection","Fixed Asset","10000","3167560.07","11357543.54" +"826JPSGARA","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826KEN-100","DEP","Department of Environmental Protection","Fixed Asset","7700000","0","0" +"826KENS-EAST","DEP","Department of Environmental Protection","Fixed Asset","1329070000","1302681297.51","259767507.99" +"826LTCP2015","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826MASPETH","DEP","Department of Environmental Protection","Fixed Asset","28000000","0.00","5542888.48" +"826MED680","DEP","Department of Environmental Protection","Fixed Asset","18428000","0","0" +"826MGNWYHR","DEP","Department of Environmental Protection","Fixed Asset","11670000","0","0" +"826MOTTBASIN","DEP","Department of Environmental Protection","Fixed Asset","32270000","0","0" +"826NC-167","DEP","Department of Environmental Protection","Fixed Asset","11426000","0","0" +"826NC-173","DEP","Department of Environmental Protection","Fixed Asset","44500000","978750","0" +"826NC-40","DEP","Department of Environmental Protection","Fixed Asset","25000","10673753.21","220423480.00" +"826NCA24","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826NCA24A","DEP","Department of Environmental Protection","Fixed Asset","10500000","0","0" +"826NR-124","DEP","Department of Environmental Protection","Fixed Asset","24400000","1066627","0" +"826NR-129","DEP","Department of Environmental Protection","Fixed Asset","242477000","23336916.21","2319574.79" +"826NR-141-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826NR-GBT-L","DEP","Department of Environmental Protection","Fixed Asset","52300000","6716957.26","719422.74" +"826NYSDOTBRG","DEP","Department of Environmental Protection","Fixed Asset","3000000","0","1002809" +"826OB-143-L","DEP","Department of Environmental Protection","Fixed Asset","92295000","12573229.28","0" +"826OH-112-L","DEP","Department of Environmental Protection","Fixed Asset","380166000","3751682.63","14979666.37" +"826OH-122","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826OH-123","DEP","Department of Environmental Protection","Fixed Asset","68094000","6983967.16","2082722.84" +"826OH-95-L","DEP","Department of Environmental Protection","Fixed Asset","81440000","4703488.15","4755419.26" +"826ONSGI-B","DEP","Department of Environmental Protection","Fixed Asset","106279000","0","0" +"826PJ-PLNT","DEP","Department of Environmental Protection","Fixed Asset","53730000","11413962.26","9143528.29" +"826PR-127-L","DEP","Department of Environmental Protection","Fixed Asset","0","0.00","630996.99" +"826PR-140","DEP","Department of Environmental Protection","Fixed Asset","6000000","0","0" +"826PR-144-L","DEP","Department of Environmental Protection","Fixed Asset","700000","0","0" +"826PS179","DEP","Department of Environmental Protection","Fixed Asset","11200000","0","0" +"826PS-236A","DEP","Department of Environmental Protection","Fixed Asset","15400000","17124614.46","48023313.54" +"826PS-275","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826PS-301","DEP","Department of Environmental Protection","Fixed Asset","22925000","0","0" +"826PS-307","DEP","Department of Environmental Protection","Fixed Asset","64500000","0","0" +"826PS-308","DEP","Department of Environmental Protection","Fixed Asset","21600000","0","0" +"826PS-315","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826PS-317F","DEP","Department of Environmental Protection","Fixed Asset","52120000","0","0" +"826PS-318","DEP","Department of Environmental Protection","Fixed Asset","51306000","0","200000" +"826PS-319","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826PS-320","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826PS-326","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826PS-348","DEP","Department of Environmental Protection","Fixed Asset","102000","221376.38","366623.62" +"826PS-79","DEP","Department of Environmental Protection","Fixed Asset","133000","4694276.81","214283050.18" +"826PS-DES","DEP","Department of Environmental Protection","Fixed Asset","15944000","28769494.61","45671889.07" +"826PS-FDR","DEP","Department of Environmental Protection","Fixed Asset","26400000","0","0" +"826PS-FORCEM","DEP","Department of Environmental Protection","Fixed Asset","74332000","0","0" +"826PS-MRBHLL","DEP","Department of Environmental Protection","Fixed Asset","29700000","0","0" +"826PSNCPS","DEP","Department of Environmental Protection","Fixed Asset","2000000","0","0" +"826PS-REG","DEP","Department of Environmental Protection","Fixed Asset","63408000","0","0" +"826PW-117-L","DEP","Department of Environmental Protection","Fixed Asset","150000","0","0" +"826PW-CBS","DEP","Department of Environmental Protection","Fixed Asset","15000000","0","0" +"826PW-FOAM","DEP","Department of Environmental Protection","Fixed Asset","5000000","0","0" +"826PW-SCADA","DEP","Department of Environmental Protection","Fixed Asset","110219000","458089.44","14076167.28" +"826QED-1053","DEP","Department of Environmental Protection","Fixed Asset","51709000","0","0" +"826QED1058","DEP","Department of Environmental Protection","Fixed Asset","26365000","0","0" +"826QNSREPAIR","DEP","Department of Environmental Protection","Fixed Asset","19319000","0","0" +"826R-009-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826RED-384","DEP","Department of Environmental Protection","Fixed Asset","16997000","0","0" +"826REG-27","DEP","Department of Environmental Protection","Fixed Asset","110180000","219057.90","28345765.22" +"826REG-30","DEP","Department of Environmental Protection","Fixed Asset","90000000","112105.26","3528291.97" +"826RESAMSAF","DEP","Department of Environmental Protection","Fixed Asset","122798000","33542739.39","9312045.09" +"826RESHVDAM","DEP","Department of Environmental Protection","Fixed Asset","4000000","28190.70","4074171.10" +"826RESV-BRDG","DEP","Department of Environmental Protection","Fixed Asset","6000","1214369.74","28475397.49" +"826REZONING","DEP","Department of Environmental Protection","Fixed Asset","248606000","0","0" +"826RH-097","DEP","Department of Environmental Protection","Fixed Asset","8100000","7700000","0" +"826RH-90-L","DEP","Department of Environmental Protection","Fixed Asset","40000","761050","2534450" +"826RH-93-L","DEP","Department of Environmental Protection","Fixed Asset","589000","335978.14","1890023.86" +"826RH-94-L","DEP","Department of Environmental Protection","Fixed Asset","800000","373361.25","419638.75" +"826RIDGEPIPE","DEP","Department of Environmental Protection","Fixed Asset","3052000","0","0" +"826RLCY-WWT","DEP","Department of Environmental Protection","Fixed Asset","24517000","45818157.37","262341792.52" +"826RO-ODOR","DEP","Department of Environmental Protection","Fixed Asset","377005000","0","0" +"826ROWGI-A","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826ROWGI-B","DEP","Department of Environmental Protection","Fixed Asset","191188000","0","0" +"826SAND26W","DEP","Department of Environmental Protection","Fixed Asset","19142000","1114471.88","1169568.66" +"826SANDCI","DEP","Department of Environmental Protection","Fixed Asset","39537000","1003428.42","1176822.58" +"826SANDHILLV","DEP","Department of Environmental Protection","Fixed Asset","3388000","81228.69","1107501.13" +"826SANDNR","DEP","Department of Environmental Protection","Fixed Asset","296373000","859540.81","8562484.68" +"826SANDOB","DEP","Department of Environmental Protection","Fixed Asset","82769000","2996777.76","1619855.24" +"826SANDOH","DEP","Department of Environmental Protection","Fixed Asset","93590000","668467.81","1243415.19" +"826SANDPUMP","DEP","Department of Environmental Protection","Fixed Asset","10015000","3545666.33","4083735.33" +"826SANDROCK","DEP","Department of Environmental Protection","Fixed Asset","88030000","829075.58","1122960.42" +"826SANDSEWER","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826SANDWM","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826SE886MOTT","DEP","Department of Environmental Protection","Fixed Asset","53142000","0","0" +"826SE-BB2","DEP","Department of Environmental Protection","Fixed Asset","77283000","4252903.89","11445968.97" +"826SEBLQX02","DEP","Department of Environmental Protection","Fixed Asset","15712000","0","0" +"826SEED-TBDL","DEP","Department of Environmental Protection","Fixed Asset","7636000","0","0" +"826SEK002387","DEP","Department of Environmental Protection","Fixed Asset","8010000","0","0" +"826SEK20091","DEP","Department of Environmental Protection","Fixed Asset","50000000","0","0" +"826SEQ-B67","DEP","Department of Environmental Protection","Fixed Asset","0","0.0","1739561.7" +"826SEQ-CAMB","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826SEQCB1213","DEP","Department of Environmental Protection","Fixed Asset","897654000","0","0" +"826SEQ-DKWPK","DEP","Department of Environmental Protection","Fixed Asset","2060000","0","0" +"826SEQGI-01","DEP","Department of Environmental Protection","Fixed Asset","9704000","2024060.17","6571997.83" +"826SEQ-GREEN","DEP","Department of Environmental Protection","Fixed Asset","16721000","0","0" +"826SER200199","DEP","Department of Environmental Protection","Fixed Asset","18826000","0","0" +"826SER200256","DEP","Department of Environmental Protection","Fixed Asset","25055000","0","0" +"826SER200265","DEP","Department of Environmental Protection","Fixed Asset","2795000","0","0" +"826SFM-1","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826SHAFT21","DEP","Department of Environmental Protection","Fixed Asset","0","0.00","8595779.72" +"826SHRSDP","DEP","Department of Environmental Protection","Fixed Asset","7300000","0","0" +"826SOUTHBCH","DEP","Department of Environmental Protection","Fixed Asset","2000",, +"826SWP-112","DEP","Department of Environmental Protection","Fixed Asset","72000000","0","0" +"826SWP-113","DEP","Department of Environmental Protection","Fixed Asset","10000000","0","0" +"826SWP-114","DEP","Department of Environmental Protection","Fixed Asset","7000000","0","0" +"826SWP-115","DEP","Department of Environmental Protection","Fixed Asset","8000000","0","0" +"826SWP-116","DEP","Department of Environmental Protection","Fixed Asset","3000000","0","0" +"826TANK-DES","DEP","Department of Environmental Protection","Fixed Asset","8357000","22288429.90","14212462.06" +"826TI-006","DEP","Department of Environmental Protection","Fixed Asset","3300000","862258.98","6760077.90" +"826TI-174","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826TI-177-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826TI-181-L","DEP","Department of Environmental Protection","Fixed Asset","8583000","0","0" +"826UTIUTIL","DEP","Department of Environmental Protection","Fixed Asset","80490000","66274992.94","259337776.69" +"826WEC-CITY","DEP","Department of Environmental Protection","Fixed Asset","0","10624459.47","26751455.48" +"826WFF-CPR","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826WI-305","DEP","Department of Environmental Protection","Fixed Asset","15000000","0","0" +"826WI-308-L","DEP","Department of Environmental Protection","Fixed Asset","150000","1338766.05","3128733.95" +"826WI-309-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826WI-311-L","DEP","Department of Environmental Protection","Fixed Asset","4150000","12266392.56","12571148.24" +"826WI-323-L","DEP","Department of Environmental Protection","Fixed Asset","41000000","0","0" +"826WI-324-L","DEP","Department of Environmental Protection","Fixed Asset","9589000","0","0" +"826WWMGT-18","DEP","Department of Environmental Protection","Fixed Asset","8000000","0","76120000" +"827ACEDOS241","DSNY","Department of Sanitation","Fixed Asset","308000","1011411.22","60689.78" +"827ACEDOS242","DSNY","Department of Sanitation","Fixed Asset","3016000","837615.10","317700.1" +"827APIDSBK11","DSNY","Department of Sanitation","Fixed Asset","43568000","1002186.05","1503381.31" +"827APIDSMN12","DSNY","Department of Sanitation","Fixed Asset","24005000","907341.81","1426446.76" +"827APIDSSI02","DSNY","Department of Sanitation","Fixed Asset","24560000","1040031.52","1257129.06" +"827S111-395C","DSNY","Department of Sanitation","Fixed Asset","0","0","0" +"827S111-395D","DSNY","Department of Sanitation","Fixed Asset","3208000","118004.49","77995.51" +"827S136-251F","DSNY","Department of Sanitation","Fixed Asset","50000","64044.15","22758993.13" +"827S136-251G","DSNY","Department of Sanitation","Fixed Asset","300000","285327.56","623321.93" +"827S136-264H","DSNY","Department of Sanitation","Fixed Asset","-574000","252391.76","2094721.15" +"827S136-265A","DSNY","Department of Sanitation","Fixed Asset","1536000","111865.59","82374.43" +"827S136-265B","DSNY","Department of Sanitation","Fixed Asset","39000","22832.68","131623.85" +"827S136-332N","DSNY","Department of Sanitation","Fixed Asset","26743000","59382.91","3603735.74" +"827S136-366D","DSNY","Department of Sanitation","Fixed Asset","205000","0.00","10719529.22" +"827S136-366G","DSNY","Department of Sanitation","Fixed Asset","-18000","66151.59","1049464.98" +"827S136-366J","DSNY","Department of Sanitation","Fixed Asset","18377000","0","0" +"827S136-366L","DSNY","Department of Sanitation","Fixed Asset","1142000","0","0" +"827S136-367D","DSNY","Department of Sanitation","Fixed Asset","55000","366434.32","1322751.51" +"827S136-380G","DSNY","Department of Sanitation","Fixed Asset","126000","82428.97","531265.19" +"827S136-380J","DSNY","Department of Sanitation","Fixed Asset","70000","269590.07","833409.93" +"827S136-380K","DSNY","Department of Sanitation","Fixed Asset","69000","216465.4","28488.2" +"827S136-383R","DSNY","Department of Sanitation","Fixed Asset","1389000","0","0" +"827S136-383U","DSNY","Department of Sanitation","Fixed Asset","511000","0","0" +"827S136-383Z","DSNY","Department of Sanitation","Fixed Asset","100000","583326.02","536173.58" +"827S136-385E","DSNY","Department of Sanitation","Fixed Asset","822000","578933.53","1374127.60" +"827S136-419F","DSNY","Department of Sanitation","Fixed Asset","-81000","0","0" +"827S136-423A","DSNY","Department of Sanitation","Fixed Asset","35430000","0","0" +"827S136-428","DSNY","Department of Sanitation","Fixed Asset","11102000","8295998.60","1209636.37" +"827S136-429D","DSNY","Department of Sanitation","Fixed Asset","150000","416785.72","3413652.75" +"827S136-430A","DSNY","Department of Sanitation","Fixed Asset","180000","41000.36","9073669.60" +"827S136-431A","DSNY","Department of Sanitation","Fixed Asset","150000","42593.55","1479762.68" +"827S136-439","DSNY","Department of Sanitation","Fixed Asset","64022000","0","0" +"827S136-441B","DSNY","Department of Sanitation","Fixed Asset","1728000","177150.25","185864.90" +"827S136-441S","DSNY","Department of Sanitation","Fixed Asset","358000","1041749.32","274625.59" +"827S136-442A","DSNY","Department of Sanitation","Fixed Asset","900000","0","0" +"827S136-442B","DSNY","Department of Sanitation","Fixed Asset","32750000","0","0" +"827S136-447","DSNY","Department of Sanitation","Fixed Asset","250000","190933.24","6071979.21" +"827S136-449B","DSNY","Department of Sanitation","Fixed Asset","1088000","4272890.20","1073974.72" +"827S136-449F","DSNY","Department of Sanitation","Fixed Asset","411000","0","0" +"827S136-452","DSNY","Department of Sanitation","Fixed Asset","10769000","265237.34","1719700.76" +"827S136-456D","DSNY","Department of Sanitation","Fixed Asset","3632000","1343874.03","195224.10" +"827S136-464D","DSNY","Department of Sanitation","Fixed Asset","150000","75028.73","998478.62" +"827S136-464F","DSNY","Department of Sanitation","Fixed Asset","200000","3672.64","4626656.76" +"827S136-464G","DSNY","Department of Sanitation","Fixed Asset","-95000","90302.24","497493.64" +"827S136-464H","DSNY","Department of Sanitation","Fixed Asset","27000","86407.42","3916530.04" +"827S136-470","DSNY","Department of Sanitation","Fixed Asset","78000","97893.86","1014046.43" +"827S186-224A","DSNY","Department of Sanitation","Fixed Asset","206000","124844.87","1156176.96" +"827S195-228J","DSNY","Department of Sanitation","Fixed Asset","-66000","4461.18","168597.59" +"827S216-240","DSNY","Department of Sanitation","Fixed Asset","2523000","0","0" +"827S216-400A","DSNY","Department of Sanitation","Fixed Asset","18082000","0","0" +"827S216-401","DSNY","Department of Sanitation","Fixed Asset","70000","829025.27","1119950.36" +"827S216-401D","DSNY","Department of Sanitation","Fixed Asset","3778000","380932.13","141492.56" +"827S216-401E","DSNY","Department of Sanitation","Fixed Asset","0","0.0","781115.4" +"827S216-402D","DSNY","Department of Sanitation","Fixed Asset","1000","4806335.48","7318002.36" +"827S216-402G","DSNY","Department of Sanitation","Fixed Asset","6984000","630500.49","18499.51" +"827S216-403A","DSNY","Department of Sanitation","Fixed Asset","5756000","1081873.04","403477.96" +"827S216-403C","DSNY","Department of Sanitation","Fixed Asset","18000","856458.58","9858904.15" +"827S216-403D","DSNY","Department of Sanitation","Fixed Asset","1000","2285696.71","2804981.97" +"827S216-415C","DSNY","Department of Sanitation","Fixed Asset","2201000","1732985.03","13105255.5" +"827S216-415D","DSNY","Department of Sanitation","Fixed Asset","0","0","0" +"827S219-233","DSNY","Department of Sanitation","Fixed Asset","197000","635014.49","156891435.51" +"827S222-396G","DSNY","Department of Sanitation","Fixed Asset","0","0.00","61341264.03" +"827S222-420J","DSNY","Department of Sanitation","Fixed Asset","0","0.00","1465731.58" +"827S222-465E","DSNY","Department of Sanitation","Fixed Asset","2900000","0.00","657137.88" +"827S222-465K","DSNY","Department of Sanitation","Fixed Asset","123000","122800.00","4027051.05" +"827S222-465P","DSNY","Department of Sanitation","Fixed Asset","919000","0","0" +"827S222-468C","DSNY","Department of Sanitation","Fixed Asset","542000","1557491.40","1596894.86" +"827S248-423","DSNY","Department of Sanitation","Fixed Asset","495717000","22682886.98","16184608.35" +"827SAND26MBC","DSNY","Department of Sanitation","Fixed Asset","668000","0.00","19731.84" +"827SAND44BVC","DSNY","Department of Sanitation","Fixed Asset","44000","2795.97","500" +"827SANDBK11C","DSNY","Department of Sanitation","Fixed Asset","15000","44824.57","12175.88" +"827SANDBK4FA","DSNY","Department of Sanitation","Fixed Asset","863000","1486108.25","1708277.46" +"827SANDBX12C","DSNY","Department of Sanitation","Fixed Asset","234000","232198.95","614.83" +"827SANDMAN3C","DSNY","Department of Sanitation","Fixed Asset","47000","0","0" +"841ACEDOT504","DOT","Department of Transportation","Fixed Asset","0","68251.31","15590972.09" +"841ACEDOT601","DOT","Department of Transportation","Fixed Asset","0","0.00","98462.34" +"841ASTC-INST","DOT","Department of Transportation","Fixed Asset","0","0.00","10564278.20" +"841BKBHAZMIG","DOT","Department of Transportation","Fixed Asset","814330000","0","814330000" +"841BKBRDGITS","DOT","Department of Transportation","Fixed Asset","1474000","212","802002" +"841BRC231G","DOT","Department of Transportation","Fixed Asset","611750000","0","0" +"841BRC270D","DOT","Department of Transportation","Fixed Asset","21871000","25870985.22","344900256.88" +"841BRC270DT","DOT","Department of Transportation","Fixed Asset","8120000","0","0" +"841BRCHAZMIG","DOT","Department of Transportation","Fixed Asset","550000","3740529.73","701655911.37" +"841BRX9579","DOT","Department of Transportation","Fixed Asset","40467000","71879716.27","19161991.78" +"841BRK24027","DOT","Department of Transportation","Fixed Asset","1040795000","0","0" +"841BRKA24039","DOT","Department of Transportation","Fixed Asset","491350000","2431617.77","5640872.27" +"841BRKQ24063","DOT","Department of Transportation","Fixed Asset","399400000","0","0" +"841C5517C","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841CONG2030","DOT","Department of Transportation","Fixed Asset","0","0.00","942589.39" +"841DECKSCRPL","DOT","Department of Transportation","Fixed Asset","0","0","3107540" +"841E34REHAB","DOT","Department of Transportation","Fixed Asset","7637000","0","0" +"841ENRGHWLG","DOT","Department of Transportation","Fixed Asset","0","1","972075" +"841FA-AUSLNG","DOT","Department of Transportation","Fixed Asset","0","0.0","423885.3" +"841FABLDG45R","DOT","Department of Transportation","Fixed Asset","9554000","1315715.76","881736.41" +"841FASGTRCN","DOT","Department of Transportation","Fixed Asset","18055000","186599.53","980564.55" +"841FASGTRHB","DOT","Department of Transportation","Fixed Asset","750000","0","0" +"841FATERMTBC","DOT","Department of Transportation","Fixed Asset","4998000","76808.62","175827.32" +"841FAUREABRG","DOT","Department of Transportation","Fixed Asset","43000","468985.28","4618206.66" +"841FAWHTSGTF","DOT","Department of Transportation","Fixed Asset","1008000","0","0" +"841FERRYR1SG","DOT","Department of Transportation","Fixed Asset","23680000","0","0" +"841FERRYR3SG","DOT","Department of Transportation","Fixed Asset","7215000","102379.19","701340.07" +"841GEAN2025","DOT","Department of Transportation","Fixed Asset","12638000","0","0" +"841GEHD2019","DOT","Department of Transportation","Fixed Asset","500000","410119.03","4581457.97" +"841HARPADMFE","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HB1014GP","DOT","Department of Transportation","Fixed Asset","35000","16.9","352156.1" +"841HB1070BR","DOT","Department of Transportation","Fixed Asset","11012000","16582370.10","114893.27" +"841HB1070NB","DOT","Department of Transportation","Fixed Asset","2000000","1280150.72","11462869.89" +"841HB1070QN","DOT","Department of Transportation","Fixed Asset","8665000","6877714.30","7651642.28" +"841HB-ADVERT","DOT","Department of Transportation","Fixed Asset","1000000","0","0" +"841HBBA07585","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBBA24189","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBBA24230","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBBA24234","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HB-BIDSAD","DOT","Department of Transportation","Fixed Asset","0","0.00","679198.92" +"841HBC1012","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBC1070","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBC1301","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBC1302","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBC13020","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBC2029","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBCR00","DOT","Department of Transportation","Fixed Asset","0","831402.33","16310311.18" +"841HBCR02B","DOT","Department of Transportation","Fixed Asset","129000","4666663.18","34787971.49" +"841HBCR03B","DOT","Department of Transportation","Fixed Asset","2150000","23099028.59","32187050.90" +"841HB1070BW","DOT","Department of Transportation","Fixed Asset","23047000","0","0" +"841HBCR16","DOT","Department of Transportation","Fixed Asset","1067000","6231358.25","17475523.79" +"841HBCR21A","DOT","Department of Transportation","Fixed Asset","875000","23031881.47","17489720.19" +"841HBCR21B","DOT","Department of Transportation","Fixed Asset","5804000","14602905.79","10654122.77" +"841HBCR24A","DOT","Department of Transportation","Fixed Asset","23020000","0","0" +"841HBCR24B","DOT","Department of Transportation","Fixed Asset","21775000","0","0" +"841HBCR25A","DOT","Department of Transportation","Fixed Asset","23715000","0","0" +"841HBCR25B","DOT","Department of Transportation","Fixed Asset","21350000","0","0" +"841HBCR26A","DOT","Department of Transportation","Fixed Asset","23380000","0","0" +"841HBCR26B","DOT","Department of Transportation","Fixed Asset","21995000","0","0" +"841HBCR27A","DOT","Department of Transportation","Fixed Asset","25175000","0","0" +"841HBCR27B","DOT","Department of Transportation","Fixed Asset","22665000","0","0" +"841HBCUHUNT","DOT","Department of Transportation","Fixed Asset","13000000","0","0" +"841HBFQGPEC","DOT","Department of Transportation","Fixed Asset","244000","0","0" +"841HBHWOHSIG","DOT","Department of Transportation","Fixed Asset","28500000","0","0" +"841HBK1205","DOT","Department of Transportation","Fixed Asset","2131000","51325876.61","40558854.47" +"841HBK1213","DOT","Department of Transportation","Fixed Asset","0","6.00","2281668.51" +"841HBK231250","DOT","Department of Transportation","Fixed Asset","31523000","0","0" +"841HBK231260","DOT","Department of Transportation","Fixed Asset","30753000","0","0" +"841HBKA24305","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBKA24351","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBKA24362","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBKBQE4C","DOT","Department of Transportation","Fixed Asset","47000","33568.05","176655" +"841HBM1147","DOT","Department of Transportation","Fixed Asset","28218000","55707955.41","90076068.01" +"841HBM1189","DOT","Department of Transportation","Fixed Asset","5566000","98595623.04","101941952.84" +"841HBM24501B","DOT","Department of Transportation","Fixed Asset","159898000","0","0" +"841HBM245050","DOT","Department of Transportation","Fixed Asset","7245000","0","0" +"841HBCR23A","DOT","Department of Transportation","Fixed Asset","30269000","639367.38","2194185.62" +"841HBM245290","DOT","Department of Transportation","Fixed Asset","21274000","0","0" +"841HBM246100","DOT","Department of Transportation","Fixed Asset","50294000","0","0" +"841HBM246350","DOT","Department of Transportation","Fixed Asset","4301000","496336.65","12030.35" +"841HBM551","DOT","Department of Transportation","Fixed Asset","4265000","4228495.49","50936823.83" +"841HBMA24509","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HBPK17K","DOT","Department of Transportation","Fixed Asset","3607000","9467972.85","17587090.61" +"841HBPK27K","DOT","Department of Transportation","Fixed Asset","2143000","12593629.40","13932169.65" +"841HBQ248110","DOT","Department of Transportation","Fixed Asset","10935000","0","0" +"841HBQENB012","DOT","Department of Transportation","Fixed Asset","0","983321.86","7384764.57" +"841HBR249710","DOT","Department of Transportation","Fixed Asset","9923000","0","0" +"841HBRA24923","DOT","Department of Transportation","Fixed Asset","-32000","245313.87","1722227.96" +"841HBRA24925","DOT","Department of Transportation","Fixed Asset","60000","401572.12","1612779.51" +"841HBM245080","DOT","Department of Transportation","Fixed Asset","33745000","1669387.04","681973.73" +"841HBM245230","DOT","Department of Transportation","Fixed Asset","12145000","0","0" +"841HBM246710","DOT","Department of Transportation","Fixed Asset","22829000","0","0" +"841HBM702990","DOT","Department of Transportation","Fixed Asset","17848000","1518435.73","329542.10" +"841HBRIBIKE","DOT","Department of Transportation","Fixed Asset","150000","0","0" +"841HBX163","DOT","Department of Transportation","Fixed Asset","858000","273152.53","20355106.78" +"841HBX1670","DOT","Department of Transportation","Fixed Asset","1152000","693611.43","9838230.87" +"841HBX180","DOT","Department of Transportation","Fixed Asset","3370000","15827390.02","23754546.34" +"841HBX641","DOT","Department of Transportation","Fixed Asset","0","0.00","458023.33" +"841HBX644S","DOT","Department of Transportation","Fixed Asset","3625000","4827964.19","65448165.91" +"841HW200IFA1","DOT","Department of Transportation","Fixed Asset","290100000","0.00","213552879.74" +"841HW200IFA2","DOT","Department of Transportation","Fixed Asset","72296000","0.00","123147792.01" +"841HW2CR06","DOT","Department of Transportation","Fixed Asset","364551000","0","0" +"841HW2CR19D","DOT","Department of Transportation","Fixed Asset","-1518000","0.00","16450177.93" +"841HW2CR21A","DOT","Department of Transportation","Fixed Asset","1800000","195309.02","18211894.61" +"841HW2CR21B","DOT","Department of Transportation","Fixed Asset","-6500000","239380.43","10828013.45" +"841HW2CR21C","DOT","Department of Transportation","Fixed Asset","-1497000","258413.67","21499535.71" +"841HW2CR21D","DOT","Department of Transportation","Fixed Asset","-900000","161013.89","20434355.88" +"841HW2CR21E","DOT","Department of Transportation","Fixed Asset","-7063000","2049.18","18873700.61" +"841HW2CR23A","DOT","Department of Transportation","Fixed Asset","8884000","6130895.81","12154459.73" +"841HW2CR23B","DOT","Department of Transportation","Fixed Asset","9097000","5925373.50","9030772.34" +"841HW2CR23C","DOT","Department of Transportation","Fixed Asset","4271000","957860.02","14454409.08" +"841HW2CR23CW","DOT","Department of Transportation","Fixed Asset","7749000","5608481.54","10015031.87" +"841HW2CR23D","DOT","Department of Transportation","Fixed Asset","8305000","7031186.98","9420822.14" +"841HW2CR25A","DOT","Department of Transportation","Fixed Asset","7103000","6044635.01","0" +"841HW2CR25B","DOT","Department of Transportation","Fixed Asset","2160000","1707185.96","0" +"841HW2CR25C","DOT","Department of Transportation","Fixed Asset","6819000","6316039.52","0" +"841HW2CR25CW","DOT","Department of Transportation","Fixed Asset","6462000","5659472.0","0" +"841HW2CR25D","DOT","Department of Transportation","Fixed Asset","3105000","2593943.25","0" +"841HW34907","DOT","Department of Transportation","Fixed Asset","1972832000","0.00","2186782263.97" +"841HW886MOTT","DOT","Department of Transportation","Fixed Asset","34040000","0","0" +"841HWCB27KR","DOT","Department of Transportation","Fixed Asset","3070000","0","0" +"841HWCB27QXM","DOT","Department of Transportation","Fixed Asset","4605000","0","0" +"841HWCCSIMBM","DOT","Department of Transportation","Fixed Asset","3690000","0","0" +"841HWC-HDBP","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWCWREC","DOT","Department of Transportation","Fixed Asset","331691000","0","0" +"841HWCW-SOGR","DOT","Department of Transportation","Fixed Asset","11467000","0","0" +"841HWCWSTPR","DOT","Department of Transportation","Fixed Asset","2750000","0","0" +"841HWD10109","DOT","Department of Transportation","Fixed Asset","150000","0","0" +"841HWD10110","DOT","Department of Transportation","Fixed Asset","100000","0","0" +"841HWD10113","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"841HWD10216","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"841HWD10220","DOT","Department of Transportation","Fixed Asset","9529000","0","0" +"841HWD10221","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWD10222","DOT","Department of Transportation","Fixed Asset","227000","0","0" +"841HWD102M01","DOT","Department of Transportation","Fixed Asset","400000","0","0" +"841HWD103100","DOT","Department of Transportation","Fixed Asset","120000","0","0" +"841HWD10326","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"841HWD10330","DOT","Department of Transportation","Fixed Asset","3750000","0","0" +"841HWD10332","DOT","Department of Transportation","Fixed Asset","1000000","0","0" +"841HWD103Q01","DOT","Department of Transportation","Fixed Asset","280000","0","0" +"841HWD104-07","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"841HWD104-09","DOT","Department of Transportation","Fixed Asset","3995000","0","0" +"841HWD104-10","DOT","Department of Transportation","Fixed Asset","2000000","0","0" +"841HWD104-11","DOT","Department of Transportation","Fixed Asset","4000000","0","0" +"841HWD105X01","DOT","Department of Transportation","Fixed Asset","350000","0","0" +"841HBRA24939","DOT","Department of Transportation","Fixed Asset","9096000","839916.78","928444.14" +"841HBRA24982","DOT","Department of Transportation","Fixed Asset","10032000","107260.68","850948.65" +"841HWD200-05","DOT","Department of Transportation","Fixed Asset","1000000","0","0" +"841HWFQ3211","DOT","Department of Transportation","Fixed Asset","851000","0","0" +"841HWH20051","DOT","Department of Transportation","Fixed Asset","29200000","0","0" +"841HWK002392","DOT","Department of Transportation","Fixed Asset","27850000","0","0" +"841HWK00502","DOT","Department of Transportation","Fixed Asset","5841000","60206.43","69217.64" +"841HWK00514","DOT","Department of Transportation","Fixed Asset","2300000","0","0" +"841HWK20087","DOT","Department of Transportation","Fixed Asset","50400000","0","0" +"841HWK20091","DOT","Department of Transportation","Fixed Asset","20000000","0","0" +"841HWK2048B","DOT","Department of Transportation","Fixed Asset","13142000","0","0" +"841HWKA37145","DOT","Department of Transportation","Fixed Asset","8967000","0","0" +"841HWKAPOLWF","DOT","Department of Transportation","Fixed Asset","2194000","0","0" +"841HWKAVEWWF","DOT","Department of Transportation","Fixed Asset","1900000","0","0" +"841HWKAVEXWF","DOT","Department of Transportation","Fixed Asset","1265000","0","0" +"841HWKE68WF","DOT","Department of Transportation","Fixed Asset","1293000","0","0" +"841HWKF029Z","DOT","Department of Transportation","Fixed Asset","318737000","0","0" +"841HWKFBERRY","DOT","Department of Transportation","Fixed Asset","1610000","29792.62","681438.07" +"841HWKFCBWF","DOT","Department of Transportation","Fixed Asset","2085000","0","0" +"841HWKFFAWF","DOT","Department of Transportation","Fixed Asset","6246000","0","0" +"841HWKFTNT","DOT","Department of Transportation","Fixed Asset","1119000","49461.1","1070538.9" +"841HWKGPAVWF","DOT","Department of Transportation","Fixed Asset","580000","0","0" +"841HWKMEEKWF","DOT","Department of Transportation","Fixed Asset","2546000","0","0" +"841HWKMETWF","DOT","Department of Transportation","Fixed Asset","1575000","0","0" +"841HWKMSPTWF","DOT","Department of Transportation","Fixed Asset","3244000","0","0" +"841HWM1432","DOT","Department of Transportation","Fixed Asset","34500000","0","0" +"841HWM1684","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWM1689","DOT","Department of Transportation","Fixed Asset","142000","0","20000" +"841HWM2026","DOT","Department of Transportation","Fixed Asset","20250000","0","0" +"841HWM2028","DOT","Department of Transportation","Fixed Asset","15520000","0","0" +"841HWMMPEDSW","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWMPS128","DOT","Department of Transportation","Fixed Asset","8268000","0","0" +"841HWMSCH137","DOT","Department of Transportation","Fixed Asset","493000","0","0" +"841HWMW215WF","DOT","Department of Transportation","Fixed Asset","1619000","0","0" +"841HWMW216WF","DOT","Department of Transportation","Fixed Asset","884000","0","0" +"841HWMWTC11","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWMWTCA8","DOT","Department of Transportation","Fixed Asset","0",, +"841HWMWTCA9","DOT","Department of Transportation","Fixed Asset","0",, +"841HWMWTCB10","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWMWTCB3","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWMWTCB4","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWPDRAPS","DOT","Department of Transportation","Fixed Asset","3528000","0","0" +"841HWPDRTREE","DOT","Department of Transportation","Fixed Asset","1566000","0","0" +"841HWPL20006","DOT","Department of Transportation","Fixed Asset","349161000","0","0" +"841HWPLZ017Q","DOT","Department of Transportation","Fixed Asset","9310000","0","0" +"841HWPLZ019M","DOT","Department of Transportation","Fixed Asset","100000000","0","0" +"841HWPLZ021M","DOT","Department of Transportation","Fixed Asset","75000000","0","0" +"841HWPR25MXQ","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWPR26KQ","DOT","Department of Transportation","Fixed Asset","19090000","0","0" +"841HWPR26KR","DOT","Department of Transportation","Fixed Asset","19090000","0","0" +"841HWPR26MKQ","DOT","Department of Transportation","Fixed Asset","19090000","0","0" +"841HWPR26MTA","DOT","Department of Transportation","Fixed Asset","8925000","0","0" +"841HWPR26Q1","DOT","Department of Transportation","Fixed Asset","19090000","0","0" +"841HWPR26QX","DOT","Department of Transportation","Fixed Asset","19090000","0","0" +"841HWPSMGANC","DOT","Department of Transportation","Fixed Asset","635000","0","0" +"841HWPSMGANS","DOT","Department of Transportation","Fixed Asset","1000","0.00","183001.03" +"841HWQ1148","DOT","Department of Transportation","Fixed Asset","32660000","0","0" +"841HWQ1190D","DOT","Department of Transportation","Fixed Asset","79632000","0","0" +"841HWQ1211","DOT","Department of Transportation","Fixed Asset","29000000","0","0" +"841HWQ1215","DOT","Department of Transportation","Fixed Asset","10000000","0","0" +"841HWQ1216","DOT","Department of Transportation","Fixed Asset","31000000","0","0" +"841HWQ1218","DOT","Department of Transportation","Fixed Asset","10000000","0","0" +"841HWQ1219","DOT","Department of Transportation","Fixed Asset","13000000","0","0" +"841HWQ1220","DOT","Department of Transportation","Fixed Asset","79000000","0","0" +"841HWQ1500","DOT","Department of Transportation","Fixed Asset","4000000","0","0" +"841HWQ20AVWF","DOT","Department of Transportation","Fixed Asset","3168000","0","0" +"841HWQ49STWF","DOT","Department of Transportation","Fixed Asset","1717000","0","0" +"841HWQF041","DOT","Department of Transportation","Fixed Asset","7796000","0","0" +"841HWQF12ST","DOT","Department of Transportation","Fixed Asset","2500000","0","0" +"841HWQF5850","DOT","Department of Transportation","Fixed Asset","809000","0","0" +"841HWQFGYWF","DOT","Department of Transportation","Fixed Asset","4611000","0","0" +"841HWQFRESHP","DOT","Department of Transportation","Fixed Asset","1891000","0","0" +"841HWQFSW033","DOT","Department of Transportation","Fixed Asset","3782000","45799.79","1426038.21" +"841HWQHUXWF","DOT","Department of Transportation","Fixed Asset","1435000","0","0" +"841HWR706","DOT","Department of Transportation","Fixed Asset","1652000","0","0" +"841HWR707","DOT","Department of Transportation","Fixed Asset","15000000","0","0" +"841HWR708","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWR709","DOT","Department of Transportation","Fixed Asset","7786000","0","0" +"841HWR921","DOT","Department of Transportation","Fixed Asset","24000000","0","0" +"841HWRBENTWF","DOT","Department of Transportation","Fixed Asset","1369000","0","0" +"841HWRFRTWF","DOT","Department of Transportation","Fixed Asset","1356000","0","0" +"841HWS2026K","DOT","Department of Transportation","Fixed Asset","15146000","0","0" +"841HWS2026M","DOT","Department of Transportation","Fixed Asset","6696000","0","0" +"841HWS2026Q","DOT","Department of Transportation","Fixed Asset","20229000","0","0" +"841HWS2026R","DOT","Department of Transportation","Fixed Asset","5583000","0","0" +"841HWS2026X","DOT","Department of Transportation","Fixed Asset","8392000","0","0" +"841HWSTEP04","DOT","Department of Transportation","Fixed Asset","1122000","0","0" +"841HWTSQI","DOT","Department of Transportation","Fixed Asset","8997000","0","0" +"841HWWATER37","DOT","Department of Transportation","Fixed Asset","2885000","14080.00","943664.60" +"841HWX1048A","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841HWX132WF","DOT","Department of Transportation","Fixed Asset","4055000","0","0" +"841HWX149WF","DOT","Department of Transportation","Fixed Asset","428000","0","0" +"841HWX416","DOT","Department of Transportation","Fixed Asset","17811000","0","0" +"841HWXFSCWF","DOT","Department of Transportation","Fixed Asset","855000","0","0" +"841HWXHUTCH","DOT","Department of Transportation","Fixed Asset","103878000","0","0" +"841JAMACQIT","DOT","Department of Transportation","Fixed Asset","791000","0.00","3851109.51" +"841LEDTFHWYS","DOT","Department of Transportation","Fixed Asset","0","0.00","7668338.27" +"841MOLHYBRID","DOT","Department of Transportation","Fixed Asset","14040000","0","0" +"841MOLRETROF","DOT","Department of Transportation","Fixed Asset","4861000","438641.02","7491936.15" +"841NDF-CCIMP","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"841NDF-IWEIS","DOT","Department of Transportation","Fixed Asset","2000000","0","0" +"841NYCWINRPL","DOT","Department of Transportation","Fixed Asset","0","11709.72","69092860.77" +"841P11WALLST","DOT","Department of Transportation","Fixed Asset","7342000","0","0" +"841P-2ASPHLT","DOT","Department of Transportation","Fixed Asset","1261000","0","0" +"841P-310CYPP","DOT","Department of Transportation","Fixed Asset","86000","0","0" +"841P-4PASAIR","DOT","Department of Transportation","Fixed Asset","425000000","0","0" +"841PARKMLPR","DOT","Department of Transportation","Fixed Asset","30668000","13062678.5","20983356.0" +"841PIER1WHAR","DOT","Department of Transportation","Fixed Asset","20651000","0","0" +"841PIER2WHAR","DOT","Department of Transportation","Fixed Asset","15000000","0","0" +"841PLANTRANS","DOT","Department of Transportation","Fixed Asset","0","1583.32","1220447.86" +"841PRKMETER3","DOT","Department of Transportation","Fixed Asset","0","0","2795128" +"841QB2HAZMIG","DOT","Department of Transportation","Fixed Asset","38644000","0","0" +"841QUEENSCWH","DOT","Department of Transportation","Fixed Asset","75000","0","0" +"841P-3RVOVER","DOT","Department of Transportation","Fixed Asset","329532000","14094832.48","4983343.61" +"841S248-423B","DOT","Department of Transportation","Fixed Asset","96000","0","0" +"841SANDCONDU","DOT","Department of Transportation","Fixed Asset","2606000","22467.68","42532.32" +"841SANDHB002","DOT","Department of Transportation","Fixed Asset","259000","317629.68","93769220.87" +"841SANDHB2U","DOT","Department of Transportation","Fixed Asset","7339000","83803757.39","4432351.59" +"841SANDHBFDR","DOT","Department of Transportation","Fixed Asset","1389000","2983113.55","14935104.15" +"841SANDHW27","DOT","Department of Transportation","Fixed Asset","3226000","0","0" +"841SANDRF11","DOT","Department of Transportation","Fixed Asset","31125000","1226400.25","825047.71" +"841SANDROCKY","DOT","Department of Transportation","Fixed Asset","0","0.00","20085416.15" +"841SANDSIFMF","DOT","Department of Transportation","Fixed Asset","342000","0.00","460087.78" +"841SEEDHWX02","DOT","Department of Transportation","Fixed Asset","50000000","0","0" +"841SEEDHWX04","DOT","Department of Transportation","Fixed Asset","27000000","0","0" +"841SEEDHWX07","DOT","Department of Transportation","Fixed Asset","21300000","0","0" +"841SEEDQSTWY","DOT","Department of Transportation","Fixed Asset","33000000","0","0" +"841SIGNALSF2","DOT","Department of Transportation","Fixed Asset","0","322063.16","34065663.36" +"841SIGNALSF3","DOT","Department of Transportation","Fixed Asset","4970000","4872879.36","32143527.50" +"841SIGNALSF4","DOT","Department of Transportation","Fixed Asset","71133000","15000000","0" +"841SIGNALSFY","DOT","Department of Transportation","Fixed Asset","0","0.00","17919378.79" +"841SPARCDOT","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841SSSIHYLAN","DOT","Department of Transportation","Fixed Asset","100000","0","0" +"841TD199936","DOT","Department of Transportation","Fixed Asset","8069000","691975.5","260510.9" +"841TF012014","DOT","Department of Transportation","Fixed Asset","0","0.00","22786304.48" +"841TF012017","DOT","Department of Transportation","Fixed Asset","0","487209.57","30625789.38" +"841TF012019","DOT","Department of Transportation","Fixed Asset","0","8223571.80","38440256.20" +"841TF012023","DOT","Department of Transportation","Fixed Asset","6200000","315805.03","45069136.97" +"841TF012026","DOT","Department of Transportation","Fixed Asset","39999000","8871000","0" +"841TF01APS","DOT","Department of Transportation","Fixed Asset","125362000","0","0" +"841TF01VARMS","DOT","Department of Transportation","Fixed Asset","9154000","424975.30","1091665.70" +"841TF072017","DOT","Department of Transportation","Fixed Asset","500000","0","0" +"841TF18BRIDG","DOT","Department of Transportation","Fixed Asset","1000000","0","0" +"841TF18GRANP","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841TF18JE190","DOT","Department of Transportation","Fixed Asset","1098000","0","0" +"841TF18-JGH","DOT","Department of Transportation","Fixed Asset","9567000","0.00","84392.99" +"841TF50308","DOT","Department of Transportation","Fixed Asset","685000","0","0" +"841TF50320","DOT","Department of Transportation","Fixed Asset","4000000","0","0" +"841TFAPEDSY3","DOT","Department of Transportation","Fixed Asset","0","4501813.07","23472569.43" +"841TFAPEDSY4","DOT","Department of Transportation","Fixed Asset","24912000","45074588.15","105289035.55" +"841TFAPEDSY5","DOT","Department of Transportation","Fixed Asset","217000000","0","0" +"841TFAPSLUMP","DOT","Department of Transportation","Fixed Asset","0","0","0" +"841TFCORRBA2","DOT","Department of Transportation","Fixed Asset","17280000","0","0" +"841TFCORRBAS","DOT","Department of Transportation","Fixed Asset","831000","967555.59","5425428.41" +"841TFD503-04","DOT","Department of Transportation","Fixed Asset","56000","553443.00","484206.99" +"841TFD503-20","DOT","Department of Transportation","Fixed Asset","67000","0.00","489608.68" +"841TFD503KCD","DOT","Department of Transportation","Fixed Asset","7000","0","272633" +"841TFD503M27","DOT","Department of Transportation","Fixed Asset","8000","0.0","217000.5" +"841TFD503M29","DOT","Department of Transportation","Fixed Asset","176000","34215.25","223683" +"841TFD503M30","DOT","Department of Transportation","Fixed Asset","435000","0","0" +"841TFD503M33","DOT","Department of Transportation","Fixed Asset","56000","145563","48428" +"841TFD503M35","DOT","Department of Transportation","Fixed Asset","325000","0","0" +"841TFD503Q29","DOT","Department of Transportation","Fixed Asset","1000","88582.75","613527.65" +"841TFD503Q32","DOT","Department of Transportation","Fixed Asset","301000","52178.14","451590.86" +"841TFD503Q33","DOT","Department of Transportation","Fixed Asset","10000","236.0","1177149.5" +"841TFKVANDMD","DOT","Department of Transportation","Fixed Asset","70000","110296.3","442035.7" +"841TFLGUDECK","DOT","Department of Transportation","Fixed Asset","0","327862.86","2385852.14" +"841TFLGUSBWY","DOT","Department of Transportation","Fixed Asset","0","973908.80","2509725.20" +"841TFLTURNSG","DOT","Department of Transportation","Fixed Asset","12582000","0","0" +"841TFM50311","DOT","Department of Transportation","Fixed Asset","447000","298947","3000" +"841TFM50320","DOT","Department of Transportation","Fixed Asset","2475000","0","0" +"841TFM50321","DOT","Department of Transportation","Fixed Asset","300000","0","0" +"841TFWHSBSRT","DOT","Department of Transportation","Fixed Asset","186000","0","1521413" +"841TRANSBCTY","DOT","Department of Transportation","Fixed Asset","13612000","920295.52","964972.14" +"841TRNCHREST","DOT","Department of Transportation","Fixed Asset","2846000","0","0" +"841VANCRTLD","DOT","Department of Transportation","Fixed Asset","2670000","0","0" +"841W147LIGH","DOT","Department of Transportation","Fixed Asset","2000","95525","0" +"841WB2HAZMIG","DOT","Department of Transportation","Fixed Asset","66679000","0","0" +"841WHAMBEACH","DOT","Department of Transportation","Fixed Asset","597000","0","0" +"841WHTGIRDS2","DOT","Department of Transportation","Fixed Asset","2750000","0","0" +"841WHTGIRDS3","DOT","Department of Transportation","Fixed Asset","3000000","0","0" +"841WHTLBRIDG","DOT","Department of Transportation","Fixed Asset","4203000","564473.14","632714.86" +"846ACEDPR402","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2109312.63" +"846IDA21-04","DPR","Department of Parks and Recreation","Fixed Asset","233000","0","0" +"846IDA21-11","DPR","Department of Parks and Recreation","Fixed Asset","560000","0","0" +"846IDA21-15","DPR","Department of Parks and Recreation","Fixed Asset","1074000","0","0" +"846IDA21-16","DPR","Department of Parks and Recreation","Fixed Asset","1897000","0","0" +"8465AVEPOSTS","DPR","Department of Parks and Recreation","Fixed Asset","0","9284.75","199190.25" +"846ACEDPR251","DPR","Department of Parks and Recreation","Fixed Asset","965000","697477","0" +"846IDA21-01","DPR","Department of Parks and Recreation","Fixed Asset","279000","550000.00","223783.97" +"846IDA21-05","DPR","Department of Parks and Recreation","Fixed Asset","735000","0","0" +"846GXBXGI-01","DPR","Department of Parks and Recreation","Fixed Asset","26000","55724.68","690035.26" +"846LIC-QBPTG","DPR","Department of Parks and Recreation","Fixed Asset","1272000","0","0" +"846LIC-QNBP2","DPR","Department of Parks and Recreation","Fixed Asset","9544000","0","0" +"846NDF-BNDST","DPR","Department of Parks and Recreation","Fixed Asset","4074000","0.00","13967.07" +"846NDF-GESPL","DPR","Department of Parks and Recreation","Fixed Asset","6818000","0.00","1870.05" +"846NDF-NMKE","DPR","Department of Parks and Recreation","Fixed Asset","3266000","53883.25","759595.09" +"846P-0PRC23A","DPR","Department of Parks and Recreation","Fixed Asset","3182000","0","0" +"846P-0PRC23B","DPR","Department of Parks and Recreation","Fixed Asset","5090000","4000000","0" +"846P-102CPSA","DPR","Department of Parks and Recreation","Fixed Asset","97000","0","0" +"846P-102JCBC","DPR","Department of Parks and Recreation","Fixed Asset","196000","0","0" +"846P-108SKTE","DPR","Department of Parks and Recreation","Fixed Asset","0","4876.33","1611975.65" +"846P-108VCPE","DPR","Department of Parks and Recreation","Fixed Asset","10182000","0","0" +"846P-101BROO","DPR","Department of Parks and Recreation","Fixed Asset","0","28717.40","218263.84" +"846LIC-QNBBP","DPR","Department of Parks and Recreation","Fixed Asset","443000","1158369.90","2345536.43" +"846NDF-BRMPK","DPR","Department of Parks and Recreation","Fixed Asset","4880000","169441.63","482369.15" +"846NDF-BRPLG","DPR","Department of Parks and Recreation","Fixed Asset","441000","4018.42","2704421.84" +"846NDF-DVDSO","DPR","Department of Parks and Recreation","Fixed Asset","5634000","956902.07","4121173.57" +"846P-101MILL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1324464.42" +"846P-102FXPL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2191759.20" +"846P-102TOWR","DPR","Department of Parks and Recreation","Fixed Asset","-48000","3920803.00","52500.48" +"846P-102BRPP","DPR","Department of Parks and Recreation","Fixed Asset","951000","0.00","162297.57" +"846NDF-GNTRB","DPR","Department of Parks and Recreation","Fixed Asset","3900000","0","0" +"846P-104BCMR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-104FIS2","DPR","Department of Parks and Recreation","Fixed Asset","6683000","9569.75","1951259.25" +"846P-106GYAQ","DPR","Department of Parks and Recreation","Fixed Asset","895000","0","0" +"846P-106IPPC","DPR","Department of Parks and Recreation","Fixed Asset","10800000","0","0" +"846P-106PCCA","DPR","Department of Parks and Recreation","Fixed Asset","3645000","640000.00","23885.66" +"846P-103RRPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2361397.84" +"846P-104HALF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1603398.30" +"846P-103CPBT","DPR","Department of Parks and Recreation","Fixed Asset","0","27125.00","216624.39" +"846P-103DPLS","DPR","Department of Parks and Recreation","Fixed Asset","0","55663.50","494828.38" +"846P-103PATH","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-103WPBC","DPR","Department of Parks and Recreation","Fixed Asset","185000","21037.64","4019331.86" +"846P-104CLMT","DPR","Department of Parks and Recreation","Fixed Asset","-61000","71849.39","913350.46" +"846P-104FISH","DPR","Department of Parks and Recreation","Fixed Asset","0","500.00","2266464.14" +"846P-104JRME","DPR","Department of Parks and Recreation","Fixed Asset","100000","169870.81","2661327.29" +"846P-104JOYP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","362843.33" +"846P-106BATH","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-108SPBC","DPR","Department of Parks and Recreation","Fixed Asset","762000","617226.53","4473372.97" +"846P-108TBTF","DPR","Department of Parks and Recreation","Fixed Asset","106000","226949.89","214050.11" +"846P-106WFAR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3323976.11" +"846P-107PCOT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","931358.78" +"846P-107POEM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","229909.13" +"846P-104ARPU","DPR","Department of Parks and Recreation","Fixed Asset","15373000","71914.78","8085.22" +"846P-103DBPR","DPR","Department of Parks and Recreation","Fixed Asset","4836000","0","0" +"846P-104LCCG","DPR","Department of Parks and Recreation","Fixed Asset","584000","0","0" +"846P-110CCCS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-110CCTY","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-110CIDR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","481.36" +"846P-111BRAD","DPR","Department of Parks and Recreation","Fixed Asset","1650000","0","0" +"846P-107WOIF","DPR","Department of Parks and Recreation","Fixed Asset","12728000","1592977.22","8486.14" +"846P-110EXPA","DPR","Department of Parks and Recreation","Fixed Asset","0","9603.25","547827.58" +"846P-109HPCG","DPR","Department of Parks and Recreation","Fixed Asset","454000","0","0" +"846P-108EWPK","DPR","Department of Parks and Recreation","Fixed Asset","3847000","3020369.51","590098.34" +"846P-108MUSE","DPR","Department of Parks and Recreation","Fixed Asset","1066000","194578.15","2014963.72" +"846P-108MUSM","DPR","Department of Parks and Recreation","Fixed Asset","25695000","1041684.16","312765.84" +"846P-110PBSW","DPR","Department of Parks and Recreation","Fixed Asset","13000","0","0" +"846P-112BRPW","DPR","Department of Parks and Recreation","Fixed Asset","22206000","0","0" +"846P-113LLSF","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-1BCSEL1","DPR","Department of Parks and Recreation","Fixed Asset","0","2524.25","114728.27" +"846P-1BCSGC1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","682910.13" +"846P-1BCSHV1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","97781.47" +"846P-1BCSPL1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","169596.88" +"846P-1BICNT2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","692473.59" +"846P-1BICNT3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1009942.03" +"846P-1BRUCKH","DPR","Department of Parks and Recreation","Fixed Asset","0","208320.89","561172.87" +"846P-1BWBXP1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1687644.91" +"846P-111LBCI","DPR","Department of Parks and Recreation","Fixed Asset","0","3574.18","545882.36" +"846P-113HEAL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","175500.67" +"846P-111FFBB","DPR","Department of Parks and Recreation","Fixed Asset","5627000","28063.72","1033436.28" +"846P-111VCPE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6401676.29" +"846P-111VNPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1704372.00" +"846P-111ZIMP","DPR","Department of Parks and Recreation","Fixed Asset","7715000","4294923.65","2512053.22" +"846P-112DRUN","DPR","Department of Parks and Recreation","Fixed Asset","0","3750.00","612817.08" +"846P-118FOXP","DPR","Department of Parks and Recreation","Fixed Asset","324000","286055.31","3462729.40" +"846P-113HEL2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","370826.07" +"846P-1ARAMEZ","DPR","Department of Parks and Recreation","Fixed Asset","0","9000.00","200255.94" +"846P-1BURNSP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","842998.27" +"846P-1CGRDEN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","183736.85" +"846P-1CPIFIN","DPR","Department of Parks and Recreation","Fixed Asset","328000","0","0" +"846P-1CPIAPR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-1BESSEL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","139159.64" +"846P-1CPIFYP","DPR","Department of Parks and Recreation","Fixed Asset","8000000","0","0" +"846P-111ZMPB","DPR","Department of Parks and Recreation","Fixed Asset","4675000","0","0" +"846P-1FERPNT","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-1HAMMON","DPR","Department of Parks and Recreation","Fixed Asset","2006000","0.00","5096.66" +"846P-1HCMARI","DPR","Department of Parks and Recreation","Fixed Asset","651000","540406.72","56212.04" +"846P-1ORCHLN","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-1OWEND4","DPR","Department of Parks and Recreation","Fixed Asset","3291000","0","0" +"846P-1ENT211","DPR","Department of Parks and Recreation","Fixed Asset","0","33095.82","2326229.10" +"846P-1MBRKCS","DPR","Department of Parks and Recreation","Fixed Asset","1481000","0.00","31911.53" +"846P-1CPIHSP","DPR","Department of Parks and Recreation","Fixed Asset","846000","1459533.20","2596275.42" +"846P-1CPIJJP","DPR","Department of Parks and Recreation","Fixed Asset","779000","718800.89","1995199.11" +"846P-1CPIPMT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4257742.61" +"846P-1CPIPNT","DPR","Department of Parks and Recreation","Fixed Asset","8548000","147563.61","508855.16" +"846P-1CPIPRO","DPR","Department of Parks and Recreation","Fixed Asset","0","207662.75","6772504.48" +"846P-1CPIYVP","DPR","Department of Parks and Recreation","Fixed Asset","3617000","13294.21","212784.55" +"846P-1CROALG","DPR","Department of Parks and Recreation","Fixed Asset","52000","71361.87","665438.13" +"846P-1CROT13","DPR","Department of Parks and Recreation","Fixed Asset","29953000","14893702.81","28054608.20" +"846P-1CRTORF","DPR","Department of Parks and Recreation","Fixed Asset","618000","129446.56","3835553.44" +"846P-1DBPLYG","DPR","Department of Parks and Recreation","Fixed Asset","3279000","7316438.28","826234.22" +"846P-1FACDCR","DPR","Department of Parks and Recreation","Fixed Asset","1010000","877390","138000" +"846P-1FERRY6","DPR","Department of Parks and Recreation","Fixed Asset","0","1708969.25","141716451.79" +"846P-1CPITIF","DPR","Department of Parks and Recreation","Fixed Asset","28910000","77193.56","2806.44" +"846P-1CPITPR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-1CPIMPG","DPR","Department of Parks and Recreation","Fixed Asset","9300000","0","0" +"846P-1CROUL8","DPR","Department of Parks and Recreation","Fixed Asset","13800000","0","0" +"846P-1CROUL9","DPR","Department of Parks and Recreation","Fixed Asset","2651000","0","0" +"846P-1JASPBB","DPR","Department of Parks and Recreation","Fixed Asset","1000000","0","0" +"846P-1PAVMOS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","27364.41" +"846P-1CPIMMP","DPR","Department of Parks and Recreation","Fixed Asset","2200000","0","0" +"846P-1MESAPL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","421944.47" +"846P-1PLG10A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1184462.72" +"846P-1PNYT20","DPR","Department of Parks and Recreation","Fixed Asset","-48000","0.00","1626290.76" +"846P-1SPT21A","DPR","Department of Parks and Recreation","Fixed Asset","0","28426.73","471573.27" +"846P-1STR21A","DPR","Department of Parks and Recreation","Fixed Asset","0","0","89200" +"846P-1TIBBIT","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-1TRE23A","DPR","Department of Parks and Recreation","Fixed Asset","1000","314535.89","2771464.11" +"846P-1TRE23B","DPR","Department of Parks and Recreation","Fixed Asset","1017000","443647.23","3479254.84" +"846P-1TRE24A","DPR","Department of Parks and Recreation","Fixed Asset","2521000","5554426.00","2840574.00" +"846P-1TRE24B","DPR","Department of Parks and Recreation","Fixed Asset","890000","2072313.28","934686.72" +"846P-1TRE24C","DPR","Department of Parks and Recreation","Fixed Asset","2187000","4978391.71","2974608.29" +"846P-1TRE27A","DPR","Department of Parks and Recreation","Fixed Asset","64000","0","0" +"846P-1UNVPTH","DPR","Department of Parks and Recreation","Fixed Asset","2000","0.00","2415.11" +"846P-1VANCPL","DPR","Department of Parks and Recreation","Fixed Asset","34763000","1629180.23","2049.16" +"846P-1WKFLRF","DPR","Department of Parks and Recreation","Fixed Asset","160000","0","0" +"846P-200C64Q","DPR","Department of Parks and Recreation","Fixed Asset","0","4501.63","1963926.98" +"850BED-819","DDC","Department of Design and Construction","Fixed Asset","1834000","7592006.22","36467965.36" +"846P-1PELFTR","DPR","Department of Parks and Recreation","Fixed Asset","598000","3309525.39","452154.91" +"846P-1PELHAM","DPR","Department of Parks and Recreation","Fixed Asset","7052000","156007.36","1137684.99" +"846P-1PLG11B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2547541.15" +"846P-1PEARLY","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1781642.47" +"846P-1PNYFL4","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","646243.21" +"846P-1SKATPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","511107.92" +"846P-1TRAILW","DPR","Department of Parks and Recreation","Fixed Asset","-62000","0.00","2420721.63" +"846P-1VCPWCP","DPR","Department of Parks and Recreation","Fixed Asset","25075000","0","0" +"846P-1VCTURF","DPR","Department of Parks and Recreation","Fixed Asset","3640000","0","0" +"846P-1TREP22","DPR","Department of Parks and Recreation","Fixed Asset","640000","1129935.00","3297065.00" +"846P-1PBPTWR","DPR","Department of Parks and Recreation","Fixed Asset","15600000","0","0" +"846P-200PPBS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-200PPCS","DPR","Department of Parks and Recreation","Fixed Asset","8526000","37569.86","12430.14" +"846P-200PPLV","DPR","Department of Parks and Recreation","Fixed Asset","0","218450.11","737184.92" +"846P-200PPPL","DPR","Department of Parks and Recreation","Fixed Asset","1055000","68363.11","20636.89" +"846P-200PPUV","DPR","Department of Parks and Recreation","Fixed Asset","0","185676.67","492706.72" +"846P-200SCMP","DPR","Department of Parks and Recreation","Fixed Asset","203000","400000.00","642415.11" +"846P-200WLCS","DPR","Department of Parks and Recreation","Fixed Asset","2648000","71926.28","3073.72" +"846P-200ZO17","DPR","Department of Parks and Recreation","Fixed Asset","1475000","0","0" +"846P-200ZO18","DPR","Department of Parks and Recreation","Fixed Asset","188000","2172354","0" +"846P-200CPSW","DPR","Department of Parks and Recreation","Fixed Asset","2290000","1164232.55","1248767.45" +"846P-200MPTH","DPR","Department of Parks and Recreation","Fixed Asset","520000","414465.44","534.56" +"846P-201AMPU","DPR","Department of Parks and Recreation","Fixed Asset","5975000","18621.88","376378.12" +"846P-201EYCK","DPR","Department of Parks and Recreation","Fixed Asset","0","52844.38","2164417.61" +"846P-200STFP","DPR","Department of Parks and Recreation","Fixed Asset","893000","183444.87","1322008.98" +"846P-200F4PG","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-205HPSB","DPR","Department of Parks and Recreation","Fixed Asset","0","381577.48","3200666.16" +"846P-200PGCI","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-201DEHO","DPR","Department of Parks and Recreation","Fixed Asset","962000","0","0" +"846P-200PPEP","DPR","Department of Parks and Recreation","Fixed Asset","1503000","165107.79","12422.11" +"846P-201MEPR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-201TRNS","DPR","Department of Parks and Recreation","Fixed Asset","390000","0","0" +"846P-203HVBC","DPR","Department of Parks and Recreation","Fixed Asset","7800000","0","0" +"846P-203HVPP","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-203JHPG","DPR","Department of Parks and Recreation","Fixed Asset","1210000","930000","0" +"846P-201MCC2","DPR","Department of Parks and Recreation","Fixed Asset","6726000","46889.61","614852.16" +"846P-201MDLT","DPR","Department of Parks and Recreation","Fixed Asset","250000","47500.95","1208194.66" +"846P-201MRCY","DPR","Department of Parks and Recreation","Fixed Asset","0","334889.21","3766876.00" +"846P-201STRN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2642671.95" +"846P-201WILL","DPR","Department of Parks and Recreation","Fixed Asset","0","416523.79","6380081.29" +"846P-202BRDG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6644741.08" +"846P-202CAD2","DPR","Department of Parks and Recreation","Fixed Asset","0","536210.63","4587657.62" +"846P-202CPST","DPR","Department of Parks and Recreation","Fixed Asset","65000","0.00","424908.68" +"846P-201P245","DPR","Department of Parks and Recreation","Fixed Asset","17000","0.00","341664.39" +"846P-202K11F","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","954080.34" +"846P-203C17L","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2420093.37" +"846P-203K11A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","121200.27" +"846P-204K11C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","82292.25" +"846P-204BUWP","DPR","Department of Parks and Recreation","Fixed Asset","1040000","0","0" +"846P-202CLOT","DPR","Department of Parks and Recreation","Fixed Asset","27300000","0","0" +"846P-206HOOK","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-206RHRC","DPR","Department of Parks and Recreation","Fixed Asset","120461000","5226889.41","4352706.42" +"846P-209LCGI","DPR","Department of Parks and Recreation","Fixed Asset","586000","0","0" +"846P-205LIN1","DPR","Department of Parks and Recreation","Fixed Asset","216000","49618.70","4459359.54" +"846P-205LIN2","DPR","Department of Parks and Recreation","Fixed Asset","5298000","30084.82","778915.18" +"846P-205LION","DPR","Department of Parks and Recreation","Fixed Asset","0","162828.77","4666753.19" +"846P-205PPMT","DPR","Department of Parks and Recreation","Fixed Asset","337000","128750.75","420205.33" +"846P-205SBST","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","358268.96" +"846P-206ICKE","DPR","Department of Parks and Recreation","Fixed Asset","195000","126272.73","4507949.87" +"846P-206RHBH","DPR","Department of Parks and Recreation","Fixed Asset","6505000","43731.15","81268.85" +"846P-207OPML","DPR","Department of Parks and Recreation","Fixed Asset","168000","798385.65","3998595.62" +"846P-205D17C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1603415.04" +"846P-205GRP2","DPR","Department of Parks and Recreation","Fixed Asset","-48000","0.00","2491.42" +"846P-206K11C","DPR","Department of Parks and Recreation","Fixed Asset","0","37.92","1531905.79" +"846P-209WGTF","DPR","Department of Parks and Recreation","Fixed Asset","28135000","51311.9","23688.1" +"846P-207MLPG","DPR","Department of Parks and Recreation","Fixed Asset","5199000","14193.77","60806.23" +"846P-207SPOS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-210DRPG","DPR","Department of Parks and Recreation","Fixed Asset","5200000","40000","0" +"846P-210FHAM","DPR","Department of Parks and Recreation","Fixed Asset","780000","0","0" +"846P-210SPRB","DPR","Department of Parks and Recreation","Fixed Asset","8380000","0","0" +"846P-210SPTC","DPR","Department of Parks and Recreation","Fixed Asset","5200000","0","0" +"846P-210SRPD","DPR","Department of Parks and Recreation","Fixed Asset","4496000","0","0" +"846P-211BESQ","DPR","Department of Parks and Recreation","Fixed Asset","2461000","0","0" +"846P-213CIGA","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-213SGWS","DPR","Department of Parks and Recreation","Fixed Asset","520000","0","0" +"846P-210SHOR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1291253.13" +"846P-210MCKP","DPR","Department of Parks and Recreation","Fixed Asset","2076000","1026788.91","3470614.74" +"846P-210MPTC","DPR","Department of Parks and Recreation","Fixed Asset","6405000","41079.09","53920.91" +"846P-2SPT21C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","535680.00" +"846P-210OWLH","DPR","Department of Parks and Recreation","Fixed Asset","3079000","838794.67","6769094.86" +"846P-210OWLR","DPR","Department of Parks and Recreation","Fixed Asset","653000","627506.53","1272493.47" +"846P-212D17E","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","738020.61" +"846P-213D017","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2965143.67" +"846P-213D17K","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1636523.38" +"846P-213KPRB","DPR","Department of Parks and Recreation","Fixed Asset","0","127999.31","2080798.58" +"846P-213POSE","DPR","Department of Parks and Recreation","Fixed Asset","5200000","0","0" +"846P-210RPPI","DPR","Department of Parks and Recreation","Fixed Asset","5200000","0","0" +"846P-213KAI","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-215HHCE","DPR","Department of Parks and Recreation","Fixed Asset","3900000","0","0" +"846P-215PB15","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","207084.60" +"846P-216BVR1","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-216OSCS","DPR","Department of Parks and Recreation","Fixed Asset","1964000","0","0" +"846P-218BBCG","DPR","Department of Parks and Recreation","Fixed Asset","358000","0","0" +"846P-218BKBF","DPR","Department of Parks and Recreation","Fixed Asset","9575000","70289.19","4710.81" +"846P-218BKLN","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-218BPLG","DPR","Department of Parks and Recreation","Fixed Asset","10225000","0.00","2212.89" +"846P-218BVHP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-218D17E","DPR","Department of Parks and Recreation","Fixed Asset","0","158856.46","925453.79" +"846P-218FBFG","DPR","Department of Parks and Recreation","Fixed Asset","2500000","0","0" +"846P-215KELL","DPR","Department of Parks and Recreation","Fixed Asset","2625000","317231.78","11552083.17" +"846P-215KLCS","DPR","Department of Parks and Recreation","Fixed Asset","15000","995058.32","2086690.40" +"846P-215KLLY","DPR","Department of Parks and Recreation","Fixed Asset","0","30342.16","3243593.84" +"846P-215MBP2","DPR","Department of Parks and Recreation","Fixed Asset","0","137524.16","5864849.66" +"846P-215MBTC","DPR","Department of Parks and Recreation","Fixed Asset","1237000","241877.72","2670746.19" +"846P-215MCDP","DPR","Department of Parks and Recreation","Fixed Asset","11123000","97329.27","565131.81" +"846P-215MEL2","DPR","Department of Parks and Recreation","Fixed Asset","2889000","1901726.14","314005.78" +"846P-215MELL","DPR","Department of Parks and Recreation","Fixed Asset","0","250217.16","2723628.99" +"846P-215NRTP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","948790.48" +"846P-215PIER","DPR","Department of Parks and Recreation","Fixed Asset","856000","363659.21","5493767.85" +"846P-216BRCP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","624121.38" +"846P-218D17B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1254403.90" +"846P-218D17H","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1394187.98" +"846P-217HMCS","DPR","Department of Parks and Recreation","Fixed Asset","636000","0","0" +"846P-215KPTC","DPR","Department of Parks and Recreation","Fixed Asset","3250000","0","0" +"846P-217CPRN","DPR","Department of Parks and Recreation","Fixed Asset","1300000","0","0" +"846P-218D017","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2BKHQLV","DPR","Department of Parks and Recreation","Fixed Asset","1566000","0","0" +"846P-2BKPAV1","DPR","Department of Parks and Recreation","Fixed Asset","1895000","383297.55","2497638.88" +"846P-2BKPAV2","DPR","Department of Parks and Recreation","Fixed Asset","764000","0","0" +"846P-2CONYGS","DPR","Department of Parks and Recreation","Fixed Asset","161000","293715.86","32561.04" +"846P-2CPIAPR","DPR","Department of Parks and Recreation","Fixed Asset","3351000","251950.60","77469.23" +"846P-2CPIMJP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","210.48" +"846P-2ANCH01","DPR","Department of Parks and Recreation","Fixed Asset","0","101213.41","2679575.48" +"846P-2CPISAP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","133745.74" +"846P-218MPOV","DPR","Department of Parks and Recreation","Fixed Asset","-58000","0.00","6725976.41" +"846P-218MPPG","DPR","Department of Parks and Recreation","Fixed Asset","13639000","90679.75","1239312.19" +"846P-218MPRK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6870683.92" +"846P-218SUNN","DPR","Department of Parks and Recreation","Fixed Asset","0","42553.92","1867278.49" +"846P-2ANCH02","DPR","Department of Parks and Recreation","Fixed Asset","0","435880.18","2411918.96" +"846P-2CPIBPR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2CPIPPR","DPR","Department of Parks and Recreation","Fixed Asset","3108000","233032.88","82386.95" +"846P-2CPIBRT","DPR","Department of Parks and Recreation","Fixed Asset","0","98449.39","741674.88" +"846P-2STJNRF","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2CPIRHB","DPR","Department of Parks and Recreation","Fixed Asset","2860000","0","0" +"846P-2CPIELS","DPR","Department of Parks and Recreation","Fixed Asset","6240000","0","0" +"846P-218MPSW","DPR","Department of Parks and Recreation","Fixed Asset","2418000","0","0" +"846P-2DSTGNN","DPR","Department of Parks and Recreation","Fixed Asset","15524000","0","0" +"846P-2FULMP2","DPR","Department of Parks and Recreation","Fixed Asset","2600000","0","0" +"846P-2FULTON","DPR","Department of Parks and Recreation","Fixed Asset","1201000","2541522.56","3946161.79" +"846P-2GATE12","DPR","Department of Parks and Recreation","Fixed Asset","6599000","0","0" +"846P-2GATE14","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2GPWBPC","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2GRST01","DPR","Department of Parks and Recreation","Fixed Asset","638000","6256.9","68743.1" +"846P-2LICHAN","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2LNCON","DPR","Department of Parks and Recreation","Fixed Asset","5466000","170060.72","181748.29" +"846P-2MOFFAT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","55717.87" +"846P-2PKSPAV","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2PKTR23","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","12640.49" +"846P-2PKTR24","DPR","Department of Parks and Recreation","Fixed Asset","6468000","0","30000" +"846P-2PNYSP4","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2089125.68" +"846P-2PNYT32","DPR","Department of Parks and Recreation","Fixed Asset","-12000","17786.07","3235318.52" +"846P-2CPISMP","DPR","Department of Parks and Recreation","Fixed Asset","3318000","0","362000" +"846P-2CPIWKS","DPR","Department of Parks and Recreation","Fixed Asset","0","77718.06","1307501.63" +"846P-2CPIWLB","DPR","Department of Parks and Recreation","Fixed Asset","7559000","75000","0" +"846P-2DSTG01","DPR","Department of Parks and Recreation","Fixed Asset","11050000","58409.45","161590.55" +"846P-2DSTG03","DPR","Department of Parks and Recreation","Fixed Asset","28800000","69099.11","155900.89" +"846P-2GATE10","DPR","Department of Parks and Recreation","Fixed Asset","5000","327699.02","8068642.87" +"846P-2LITCHF","DPR","Department of Parks and Recreation","Fixed Asset","758000","923728.09","644918.55" +"846P-2FRNDFN","DPR","Department of Parks and Recreation","Fixed Asset","1035000","514732.71","267.29" +"846P-2SHORTR","DPR","Department of Parks and Recreation","Fixed Asset","1210000","0","0" +"846P-2SPT21A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","530048.35" +"846P-2SPT21B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","593747.28" +"846P-2SWRC23","DPR","Department of Parks and Recreation","Fixed Asset","4362000","0","0" +"846P-2SWRO23","DPR","Department of Parks and Recreation","Fixed Asset","4153000","0","0" +"846P-2TRE14A","DPR","Department of Parks and Recreation","Fixed Asset","0","1047149.71","1880461.96" +"846P-2TRE17C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2678767.14" +"846P-2TRE18B","DPR","Department of Parks and Recreation","Fixed Asset","-48000","0.00","3124267.21" +"846P-2TRE18C","DPR","Department of Parks and Recreation","Fixed Asset","-1000","0.00","3343137.12" +"846P-2TRE22A","DPR","Department of Parks and Recreation","Fixed Asset","3000","0.00","564710.95" +"846P-2TRE22F","DPR","Department of Parks and Recreation","Fixed Asset","242000","242254.07","2761745.93" +"846P-2TRE23D","DPR","Department of Parks and Recreation","Fixed Asset","93000","99790.30","507209.70" +"846P-2TRE23E","DPR","Department of Parks and Recreation","Fixed Asset","1667000","162997.80","3058320.50" +"846P-2TRE23F","DPR","Department of Parks and Recreation","Fixed Asset","1362000","286318.43","2681681.57" +"846P-2TRE23G","DPR","Department of Parks and Recreation","Fixed Asset","1295000","285822.45","3001177.55" +"846P-2TRE24A","DPR","Department of Parks and Recreation","Fixed Asset","2380000","7030524.83","1544475.17" +"846P-2TRE24B","DPR","Department of Parks and Recreation","Fixed Asset","2269000","5566071.74","2304928.26" +"846P-2TRE24C","DPR","Department of Parks and Recreation","Fixed Asset","280000","999000","20000" +"846P-2TRE24D","DPR","Department of Parks and Recreation","Fixed Asset","2420000","5928861.54","2571138.46" +"846P-2TRE24E","DPR","Department of Parks and Recreation","Fixed Asset","679000","0.00","12797.48" +"846P-2TRE24F","DPR","Department of Parks and Recreation","Fixed Asset","3783000","0.00","28013.03" +"846P-2TRE27A","DPR","Department of Parks and Recreation","Fixed Asset","352000","0","0" +"846P-2TRE27B","DPR","Department of Parks and Recreation","Fixed Asset","166000","0","0" +"846P-2TREE22","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1835466.90" +"846P-2TRS21B","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2TRS23A","DPR","Department of Parks and Recreation","Fixed Asset","910000","2835312.57","197987.43" +"846P-2TRSD23","DPR","Department of Parks and Recreation","Fixed Asset","894000","368263.84","2615036.16" +"846P-2WPS228","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","21753.77" +"846P-301BPCR","DPR","Department of Parks and Recreation","Fixed Asset","258000","24160.5","8839.5" +"846P-2PWPADT","DPR","Department of Parks and Recreation","Fixed Asset","8672000","56400.11","413599.89" +"846P-2SJFLTR","DPR","Department of Parks and Recreation","Fixed Asset","1832000","0","0" +"846P-2SNSTRW","DPR","Department of Parks and Recreation","Fixed Asset","0","51340.43","3951689.59" +"846P-2SPC21A","DPR","Department of Parks and Recreation","Fixed Asset","82000","404132.31","1133336.69" +"846P-2PVMNRO","DPR","Department of Parks and Recreation","Fixed Asset","1257000","1014732.71","267.29" +"846P-301MHPI","DPR","Department of Parks and Recreation","Fixed Asset","100000","0","0" +"846P-301PEAR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2741575.17" +"846P-301SSG1","DPR","Department of Parks and Recreation","Fixed Asset","1737000","0","0" +"846P-302AIDM","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-302HFFE","DPR","Department of Parks and Recreation","Fixed Asset","800000","0","0" +"846P-302HGLR","DPR","Department of Parks and Recreation","Fixed Asset","6668000","696077.31","73869.86" +"846P-302HSRC","DPR","Department of Parks and Recreation","Fixed Asset","80366000","0","0" +"846P-302JFFE","DPR","Department of Parks and Recreation","Fixed Asset","750000","0","0" +"846P-302P46T","DPR","Department of Parks and Recreation","Fixed Asset","586000","458000","0" +"846P-302PI51","DPR","Department of Parks and Recreation","Fixed Asset","326000","0","0" +"846P-303CRH2","DPR","Department of Parks and Recreation","Fixed Asset","945000","0.00","3527.75" +"846P-303HFFP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-303LPVG","DPR","Department of Parks and Recreation","Fixed Asset","229000","0","0" +"846P-301VIE2","DPR","Department of Parks and Recreation","Fixed Asset","17000","8004.91","57094.45" +"846P-301EPPK","DPR","Department of Parks and Recreation","Fixed Asset","0","595909.36","6210529.86" +"846P-302BSSA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1059921.30" +"846P-303018C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2266828.44" +"846P-303COPK","DPR","Department of Parks and Recreation","Fixed Asset","0","16781.75","1862736.95" +"846P-302TDRS","DPR","Department of Parks and Recreation","Fixed Asset","88099000","0","0" +"846P-303SDRT","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-302TDRC","DPR","Department of Parks and Recreation","Fixed Asset","5279000","48440.84","120302.64" +"846P-304CMMC","DPR","Department of Parks and Recreation","Fixed Asset","446000","0","0" +"846P-303LESP","DPR","Department of Parks and Recreation","Fixed Asset","456000","0","0" +"846P-30634LS","DPR","Department of Parks and Recreation","Fixed Asset","180000","0","0" +"846P-306STTN","DPR","Department of Parks and Recreation","Fixed Asset","1650000","49331.8","668.2" +"846P-307MNRV","DPR","Department of Parks and Recreation","Fixed Asset","23000","0","0" +"846P-304CPTF","DPR","Department of Parks and Recreation","Fixed Asset","350000","408469.31","921976.87" +"846P-304DWCP","DPR","Department of Parks and Recreation","Fixed Asset","7774000","0","193000" +"846P-304MPRC","DPR","Department of Parks and Recreation","Fixed Asset","3200000","266807.72","91061.38" +"846P-304PENN","DPR","Department of Parks and Recreation","Fixed Asset","5919000","3776955.74","409011.04" +"846P-304RAPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1569118.68" +"846P-305MSEL","DPR","Department of Parks and Recreation","Fixed Asset","0","8128.80","2326630.68" +"846P-305USPF","DPR","Department of Parks and Recreation","Fixed Asset","370000","319019.95","980.05" +"846P-306APMU","DPR","Department of Parks and Recreation","Fixed Asset","220000","109082.55","2059131.55" +"846P-304DCPK","DPR","Department of Parks and Recreation","Fixed Asset","0","1525.89","2980176.78" +"846P-308GMRD","DPR","Department of Parks and Recreation","Fixed Asset","0","74971.17","448958.50" +"846P-309PG12","DPR","Department of Parks and Recreation","Fixed Asset","620000","0","0" +"846P-308AG03","DPR","Department of Parks and Recreation","Fixed Asset","80000","0","0" +"846P-405MPSL","DPR","Department of Parks and Recreation","Fixed Asset","4306000","105460.34","209539.66" +"850HWP2009Q","DDC","Department of Design and Construction","Fixed Asset","0","63709.15","7911396.67" +"846P-305LTUS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","17235.82" +"846P-306C124","DPR","Department of Parks and Recreation","Fixed Asset","0","92870.58","7153903.89" +"846P-306RBPK","DPR","Department of Parks and Recreation","Fixed Asset","2116000","0","0" +"846P-307BWYM","DPR","Department of Parks and Recreation","Fixed Asset","248000","0","0" +"846P-308FERI","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","13661182.38" +"846P-308FFCA","DPR","Department of Parks and Recreation","Fixed Asset","173000","0","250000" +"846P-308SCPR","DPR","Department of Parks and Recreation","Fixed Asset","2530000","0","0" +"846P-309LBPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-309NICH","DPR","Department of Parks and Recreation","Fixed Asset","12536000","0","0" +"846P-309RSLG","DPR","Department of Parks and Recreation","Fixed Asset","90000","70000","0" +"846P-309TMPR","DPR","Department of Parks and Recreation","Fixed Asset","8892000","786140.73","2438.93" +"846P-307SBPG","DPR","Department of Parks and Recreation","Fixed Asset","3566000","0","462000" +"846P-307SOLB","DPR","Department of Parks and Recreation","Fixed Asset","74000","130126.47","753127.06" +"846P-307TRDR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","945806.57" +"846P-308CSPP","DPR","Department of Parks and Recreation","Fixed Asset","528000","411335.68","1414.32" +"846P-308ERP2","DPR","Department of Parks and Recreation","Fixed Asset","23476000","16745001.64","1527550.94" +"846P-308ERP3","DPR","Department of Parks and Recreation","Fixed Asset","85268000","72530469.02","548887.98" +"846P-308HNYL","DPR","Department of Parks and Recreation","Fixed Asset","0","110241.39","1293906.70" +"846P-308JJAD","DPR","Department of Parks and Recreation","Fixed Asset","2000","224720.44","848478.42" +"846P-309AHAM","DPR","Department of Parks and Recreation","Fixed Asset","332000","658480.25","1334373.75" +"846P-307VER1","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-308GMBR","DPR","Department of Parks and Recreation","Fixed Asset","21000","313845.04","925999.92" +"846P-3FRDSAM","DPR","Department of Parks and Recreation","Fixed Asset","0","60266.09","1386925.62" +"846P-308AGDH","DPR","Department of Parks and Recreation","Fixed Asset","1652000","0","0" +"846P-310HIBR","DPR","Department of Parks and Recreation","Fixed Asset","1138000","0","0" +"846P-311BIKE","DPR","Department of Parks and Recreation","Fixed Asset","0","426139.06","8746409.58" +"846P-311HRVR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1399777.05" +"846P-311PRPR","DPR","Department of Parks and Recreation","Fixed Asset","5704000","0","0" +"846P-312DACC","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-312DFLA","DPR","Department of Parks and Recreation","Fixed Asset","3565000","0","0" +"846P-312INWD","DPR","Department of Parks and Recreation","Fixed Asset","268000","245000","0" +"846P-310JROB","DPR","Department of Parks and Recreation","Fixed Asset","0","27674.12","773595.07" +"846P-310JRPB","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1959627.89" +"846P-310ARFA","DPR","Department of Parks and Recreation","Fixed Asset","52000","203426.88","412773.29" +"846P-310MCCY","DPR","Department of Parks and Recreation","Fixed Asset","720000","715990.63","3991079.57" +"846P-310RNPG","DPR","Department of Parks and Recreation","Fixed Asset","885000","425355.99","349644.01" +"846P-311HCTR","DPR","Department of Parks and Recreation","Fixed Asset","596000","2111413.08","4207270.85" +"846P-311NAIR","DPR","Department of Parks and Recreation","Fixed Asset","4000","68191.62","1629422.50" +"846P-312BNTP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1437666.94" +"846P-312H174","DPR","Department of Parks and Recreation","Fixed Asset","0","957.15","1256693.36" +"846P-312HBJB","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","909267.94" +"846P-312FWMO","DPR","Department of Parks and Recreation","Fixed Asset","1300000","0","0" +"846P-312FWTC","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-312DMMG","DPR","Department of Parks and Recreation","Fixed Asset","343000","336610.50","11971.25" +"846P-312JHWD","DPR","Department of Parks and Recreation","Fixed Asset","1300000","48111.63","26888.37" +"846P-312LRLR","DPR","Department of Parks and Recreation","Fixed Asset","16812000","724544","0" +"846P-312MJCR","DPR","Department of Parks and Recreation","Fixed Asset","6097000","570052.5","0" +"846P-312RIDS","DPR","Department of Parks and Recreation","Fixed Asset","1700000","0","0" +"846P-313SWCM","DPR","Department of Parks and Recreation","Fixed Asset","4865000","0","0" +"846P-3ALXHAM","DPR","Department of Parks and Recreation","Fixed Asset","1560000","0","0" +"846P-3ASRLVY","DPR","Department of Parks and Recreation","Fixed Asset","4550000","0","0" +"846P-3ASRRMP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","92600" +"846P-3CENT06","DPR","Department of Parks and Recreation","Fixed Asset","395000","181651.56","1138752.21" +"846P-3CENT07","DPR","Department of Parks and Recreation","Fixed Asset","1680000","5604000","0" +"846P-3CENT08","DPR","Department of Parks and Recreation","Fixed Asset","512000","1901091.91","2344148.77" +"846P-3CENTRL","DPR","Department of Parks and Recreation","Fixed Asset","5000","0","75000" +"846P-312JHP1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","993129.95" +"846P-312RCKY","DPR","Department of Parks and Recreation","Fixed Asset","1889000","11836.46","13163.54" +"846P-312JHWR","DPR","Department of Parks and Recreation","Fixed Asset","1222000","2425588.23","84325.77" +"846P-312LBPG","DPR","Department of Parks and Recreation","Fixed Asset","1081000","2375788.69","2091663.06" +"846P-313CPA2","DPR","Department of Parks and Recreation","Fixed Asset","-7000","22547.00","1036792.18" +"846P-313CPAB","DPR","Department of Parks and Recreation","Fixed Asset","0","158661.06","2836645.49" +"846P-314RPDR","DPR","Department of Parks and Recreation","Fixed Asset","114000","76697.07","1090379.16" +"846P-312WBRD","DPR","Department of Parks and Recreation","Fixed Asset","2000000","2000000","0" +"846P-312WPTH","DPR","Department of Parks and Recreation","Fixed Asset","5063000","854501.33","68624.95" +"846P-3ASGRSU","DPR","Department of Parks and Recreation","Fixed Asset","300000","0","0" +"846P-3CPI3AB","DPR","Department of Parks and Recreation","Fixed Asset","0","86847.12","957785.00" +"846P-3CPIHLM","DPR","Department of Parks and Recreation","Fixed Asset","0","26883.67","2225486.65" +"846P-3EMRCPK","DPR","Department of Parks and Recreation","Fixed Asset","21000","0.00","510348.83" +"846P-3FACDPL","DPR","Department of Parks and Recreation","Fixed Asset","1113000","0","0" +"846P-3FREDSM","DPR","Department of Parks and Recreation","Fixed Asset","1820000","0","0" +"846P-3GOVTFN","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-3HELIPK","DPR","Department of Parks and Recreation","Fixed Asset","0","13158.92","1481169.03" +"846P-3HGLNPH","DPR","Department of Parks and Recreation","Fixed Asset","1140000","0","0" +"846P-3HLELV1","DPR","Department of Parks and Recreation","Fixed Asset","2706000","0","0" +"846P-3HLNACC","DPR","Department of Parks and Recreation","Fixed Asset","789000","433229.44","1801767.56" +"846P-3HLSNKN","DPR","Department of Parks and Recreation","Fixed Asset","824000","0","0" +"846P-3HR2944","DPR","Department of Parks and Recreation","Fixed Asset","29900000","0","0" +"846P-3COLPCS","DPR","Department of Parks and Recreation","Fixed Asset","19965000","17806.6","904193.4" +"846P-3COLUBT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","354318.94" +"846P-3COLUMB","DPR","Department of Parks and Recreation","Fixed Asset","42000","62988.88","422707.18" +"846P-3COLUPK","DPR","Department of Parks and Recreation","Fixed Asset","0","9.40","3428509.41" +"846P-3CPIART","DPR","Department of Parks and Recreation","Fixed Asset","5558000","676684.10","4443.53" +"846P-3CPIMKS","DPR","Department of Parks and Recreation","Fixed Asset","24889000","65374.41","84625.59" +"846P-3CPIREN","DPR","Department of Parks and Recreation","Fixed Asset","328000","0","0" +"846P-3GRTDRF","DPR","Department of Parks and Recreation","Fixed Asset","3698000","367157.49","27882.84" +"846P-3CPIMCN","DPR","Department of Parks and Recreation","Fixed Asset","9958000","974457.05","1503.45" +"846P-3HELLKT","DPR","Department of Parks and Recreation","Fixed Asset","0","0","995000" +"846P-3HRP26U","DPR","Department of Parks and Recreation","Fixed Asset","11749000","0","0" +"846P-3HRP40W","DPR","Department of Parks and Recreation","Fixed Asset","86000","0.00","591623.82" +"846P-3HRP45A","DPR","Department of Parks and Recreation","Fixed Asset","329000","1231609","0" +"846P-3HRPDG8","DPR","Department of Parks and Recreation","Fixed Asset","97000","0","648182" +"846P-3HRPLIT","DPR","Department of Parks and Recreation","Fixed Asset","390000","0","0" +"846P-3HRPP40","DPR","Department of Parks and Recreation","Fixed Asset","2968000","0","9890842" +"846P-3HRPT34","DPR","Department of Parks and Recreation","Fixed Asset","3409000","0","0" +"846P-3HRPTEN","DPR","Department of Parks and Recreation","Fixed Asset","0","0","504048" +"846P-3HRPTPK","DPR","Department of Parks and Recreation","Fixed Asset","-3748000","3633671.62","42301141.18" +"846P-3LASKE2","DPR","Department of Parks and Recreation","Fixed Asset","1075000","1485086.37","58589913.63" +"846P-3NRGF01","DPR","Department of Parks and Recreation","Fixed Asset","35000","535648.09","742881.44" +"846P-3P40SPR","DPR","Department of Parks and Recreation","Fixed Asset","1036000","0","3455000" +"846P-3PBGHD7","DPR","Department of Parks and Recreation","Fixed Asset","7000","8538.24","34576.23" +"846P-3PFRCRM","DPR","Department of Parks and Recreation","Fixed Asset","913000","942.88","40057.12" +"846P-3PLGR9D","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1089366.54" +"846P-3PNYT12","DPR","Department of Parks and Recreation","Fixed Asset","-4000","0.00","1049322.77" +"846P-3PSNNTE","DPR","Department of Parks and Recreation","Fixed Asset","54000","0","0" +"846P-3RANDVC","DPR","Department of Parks and Recreation","Fixed Asset","311000","0","0" +"846P-3INHILL","DPR","Department of Parks and Recreation","Fixed Asset","3638000","845092.57","5905278.33" +"846P-3LFLWER","DPR","Department of Parks and Recreation","Fixed Asset","357000","782263.51","1300736.49" +"846P-3LGTURF","DPR","Department of Parks and Recreation","Fixed Asset","0","176842.95","387434.98" +"846P-3MCRPAV","DPR","Department of Parks and Recreation","Fixed Asset","270000","222038.47","4667961.53" +"846P-3MORNHR","DPR","Department of Parks and Recreation","Fixed Asset","340000","297492.12","522993.96" +"846P-3P155CS","DPR","Department of Parks and Recreation","Fixed Asset","440000","1783535.12","241464.88" +"846P-3LASKE1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1201167.99" +"846P-3MARCUS","DPR","Department of Parks and Recreation","Fixed Asset","0","25478.55","612939.66" +"846P-3RIVFTW","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","158211.25" +"846P-403STMA","DPR","Department of Parks and Recreation","Fixed Asset","7000000","0","0" +"846P-3MRCPAV","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-3SPT21A","DPR","Department of Parks and Recreation","Fixed Asset","0","8154.54","537870.42" +"846P-3SPT21B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","554605.78" +"846P-3SPT21C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","522792.03" +"846P-3TRE17A","DPR","Department of Parks and Recreation","Fixed Asset","-14000","0.00","2743576.95" +"846P-3TRE20A","DPR","Department of Parks and Recreation","Fixed Asset","0","4383.80","4939348.64" +"846P-3TRE22A","DPR","Department of Parks and Recreation","Fixed Asset","25000","1615.38","362670.52" +"846P-3TRE22B","DPR","Department of Parks and Recreation","Fixed Asset","-70000","0.00","1137995.36" +"846P-3TRE24A","DPR","Department of Parks and Recreation","Fixed Asset","2458000","4135542.68","4560457.32" +"846P-3TRE24B","DPR","Department of Parks and Recreation","Fixed Asset","11119000","0","55000" +"846P-3TRE27A","DPR","Department of Parks and Recreation","Fixed Asset","946000","0","0" +"846P-3TREP22","DPR","Department of Parks and Recreation","Fixed Asset","-7000","10328.37","576990.93" +"846P-400QZOO","DPR","Department of Parks and Recreation","Fixed Asset","266000","0.00","373550.51" +"846P-400ZO20","DPR","Department of Parks and Recreation","Fixed Asset","540000","0","0" +"846P-400ZO22","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-400ZO23","DPR","Department of Parks and Recreation","Fixed Asset","200000","0","0" +"846P-400ZOO7","DPR","Department of Parks and Recreation","Fixed Asset","-84000","0","78166" +"846P-401DKHR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-3TONYDL","DPR","Department of Parks and Recreation","Fixed Asset","-45000","0.00","202359.07" +"846P-3RVPFWP","DPR","Department of Parks and Recreation","Fixed Asset","341000","63980.92","1475212.08" +"846P-3RVSSCA","DPR","Department of Parks and Recreation","Fixed Asset","300000","118942.93","2958341.14" +"846P-3SARDRO","DPR","Department of Parks and Recreation","Fixed Asset","40457000","1424074.41","2152212.89" +"846P-3SHARCS","DPR","Department of Parks and Recreation","Fixed Asset","626000","471907.19","2238362.32" +"846P-3W69SBD","DPR","Department of Parks and Recreation","Fixed Asset","0","10342.01","2348520.15" +"846P-401003A","DPR","Department of Parks and Recreation","Fixed Asset","0","638.64","178840.63" +"846P-3TDREC2","DPR","Department of Parks and Recreation","Fixed Asset","-23000","0.00","10359.51" +"846P-402BUSH","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1246134.63" +"846P-402MPST","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","445258.62" +"846P-403AORC","DPR","Department of Parks and Recreation","Fixed Asset","3436000","0","0" +"846P-403GORP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","423.33" +"846P-403LAND","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","778255.00" +"846P-401QBHB","DPR","Department of Parks and Recreation","Fixed Asset","0","121364.04","1211688.94" +"846P-401RAV2","DPR","Department of Parks and Recreation","Fixed Asset","256000","333666.43","6364951.07" +"846P-401SMST","DPR","Department of Parks and Recreation","Fixed Asset","1420000","46712.05","4129637.16" +"846P-401SOC2","DPR","Department of Parks and Recreation","Fixed Asset","1100000","814498.22","5917903.29" +"846P-401WFF1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3334196.63" +"846P-402DBOY","DPR","Department of Parks and Recreation","Fixed Asset","0","132390.38","2351059.39" +"846P-402MPDR","DPR","Department of Parks and Recreation","Fixed Asset","17595000","700001.88","674375.76" +"846P-401QNBR","DPR","Department of Parks and Recreation","Fixed Asset","0","14820.00","214129.24" +"846P-401SHOR","DPR","Department of Parks and Recreation","Fixed Asset","4000","6468.86","82493.18" +"846P-404WFMP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","100623.52" +"846P-402ANGP","DPR","Department of Parks and Recreation","Fixed Asset","5616000","0","0" +"846P-405HPRR","DPR","Department of Parks and Recreation","Fixed Asset","1891000","0.00","29329.26" +"846P-401SOC3","DPR","Department of Parks and Recreation","Fixed Asset","886000","0","68000" +"846P-405ROSP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-407LLHM","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-408HMSC","DPR","Department of Parks and Recreation","Fixed Asset","848000","0","0" +"846P-406GCPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","356011.69" +"846P-407FFTC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1062516.69" +"846P-405RRGH","DPR","Department of Parks and Recreation","Fixed Asset","3130000","225526.42","2431266.21" +"846P-405RRIV","DPR","Department of Parks and Recreation","Fixed Asset","647000","926661.09","2918286.15" +"846P-405STR2","DPR","Department of Parks and Recreation","Fixed Asset","0","70871.98","2666460.73" +"846P-405STRR","DPR","Department of Parks and Recreation","Fixed Asset","0","155676.41","1541663.74" +"846P-405VITO","DPR","Department of Parks and Recreation","Fixed Asset","6655000","239193.87","440625.41" +"846P-407FLBC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","449914.7" +"846P-407LBDR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","830996.10" +"846P-407MPRC","DPR","Department of Parks and Recreation","Fixed Asset","43000","23420.00","800263.76" +"846P-408UTPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","1075152.5" +"846P-408BRNK","DPR","Department of Parks and Recreation","Fixed Asset","170000","130000","0" +"846P-408MLDY","DPR","Department of Parks and Recreation","Fixed Asset","402000","0","0" +"846P-409MAFP","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-409PRSP","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-409WELL","DPR","Department of Parks and Recreation","Fixed Asset","2422000","0","0" +"846P-410BYRN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","272300.21" +"846P-412BPP2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5072979.95" +"846P-409FPG3","DPR","Department of Parks and Recreation","Fixed Asset","340000","1758727.07","1106940.05" +"846P-409FPP2","DPR","Department of Parks and Recreation","Fixed Asset","0","11212.86","525820.97" +"846P-409FRDR","DPR","Department of Parks and Recreation","Fixed Asset","1765000","293452.85","249000" +"846P-412DOPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","819041.48" +"846P-412MAR2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1714966.34" +"846P-410SBGF","DPR","Department of Parks and Recreation","Fixed Asset","260000","0","0" +"846P-410WWPR","DPR","Department of Parks and Recreation","Fixed Asset","5580000","0","0" +"846P-412LCMP","DPR","Department of Parks and Recreation","Fixed Asset","4622000","0","0" +"846P-411APNA","DPR","Department of Parks and Recreation","Fixed Asset","2808000","61851.60","77649.35" +"846P-412RUKM","DPR","Department of Parks and Recreation","Fixed Asset","9124000","651536.50","226231.14" +"846P-412RWR3","DPR","Department of Parks and Recreation","Fixed Asset","0","45140.97","32107.6" +"846P-413CDMR","DPR","Department of Parks and Recreation","Fixed Asset","5536000","0","0" +"846P-413IWRE","DPR","Department of Parks and Recreation","Fixed Asset","47780000","0","0" +"846P-413QCAF","DPR","Department of Parks and Recreation","Fixed Asset","6510000","0","0" +"846P-414B142","DPR","Department of Parks and Recreation","Fixed Asset","130000","0","0" +"846P-414B17R","DPR","Department of Parks and Recreation","Fixed Asset","3900000","0","0" +"846P-414B9TH","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-414BC32","DPR","Department of Parks and Recreation","Fixed Asset","5024000","35034.55","14965.45" +"846P-412RWPK","DPR","Department of Parks and Recreation","Fixed Asset","0","666033.96","2971050.01" +"846P-412MPTF","DPR","Department of Parks and Recreation","Fixed Asset","1809000","1380927","0" +"846P-412NAUT","DPR","Department of Parks and Recreation","Fixed Asset","962000","134839.01","5262982.23" +"846P-412NOR2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2011487.61" +"846P-412NRPG","DPR","Department of Parks and Recreation","Fixed Asset","5459000","97508.04","433504.63" +"846P-412VICH","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2840757.58" +"846P-413010F","DPR","Department of Parks and Recreation","Fixed Asset","0","4263.77","648606.58" +"846P-414BCSK","DPR","Department of Parks and Recreation","Fixed Asset","7636000","981842.4","14366.3" +"846P-413QCFM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","390021.68" +"846P-414APBC","DPR","Department of Parks and Recreation","Fixed Asset","784000","0","0" +"846P-413SUNR","DPR","Department of Parks and Recreation","Fixed Asset","6364000","56068.44","38931.56" +"846P-413WYBB","DPR","Department of Parks and Recreation","Fixed Asset","7907000","803344.85","3652.84" +"846P-414NPST","DPR","Department of Parks and Recreation","Fixed Asset","10890000","0","0" +"846P-414ODON","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-415AQUA","DPR","Department of Parks and Recreation","Fixed Asset","72773000","2334214.78","1062240.22" +"846P-415PABR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-415PAS4","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-415WRD3","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-4BAYMAR","DPR","Department of Parks and Recreation","Fixed Asset","64000","422358.84","3090541.08" +"846P-4BCSEL2","DPR","Department of Parks and Recreation","Fixed Asset","0","1153.56","68202.69" +"846P-4BCSGC2","DPR","Department of Parks and Recreation","Fixed Asset","0","32416.99","906890.18" +"846P-4BCSHV1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","50187.21" +"846P-4BCSHV2","DPR","Department of Parks and Recreation","Fixed Asset","0","4635.71","59555.09" +"846P-4BCSPL2","DPR","Department of Parks and Recreation","Fixed Asset","0","0","60556" +"846P-414LABY","DPR","Department of Parks and Recreation","Fixed Asset","147000","1820.61","307709.13" +"846P-4CPICHS","DPR","Department of Parks and Recreation","Fixed Asset","3120000","0","0" +"846P-415FMTP","DPR","Department of Parks and Recreation","Fixed Asset","7562000","0","0" +"846P-414LANN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2531856.04" +"846P-414RKSP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1167671.47" +"846P-414SFHR","DPR","Department of Parks and Recreation","Fixed Asset","2968000","37566.01","296433.99" +"846P-4CPIFPR","DPR","Department of Parks and Recreation","Fixed Asset","2530000","0","0" +"846P-4EABTRA","DPR","Department of Parks and Recreation","Fixed Asset","3870000","3039132","0" +"846P-4FMCPAL","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-4FRKPOL","DPR","Department of Parks and Recreation","Fixed Asset","81902000","0","0" +"846P-4JMMPP2","DPR","Department of Parks and Recreation","Fixed Asset","4019000","145036.57","82387.71" +"846P-4DAMBRO","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1437946.89" +"846P-4HOLSCS","DPR","Department of Parks and Recreation","Fixed Asset","1473000","0.00","24520.78" +"846P-4GWENCS","DPR","Department of Parks and Recreation","Fixed Asset","49000","0.00","348762.19" +"846P-4CPICOL","DPR","Department of Parks and Recreation","Fixed Asset","8816000","455328.52","556759.03" +"846P-4CPICPR","DPR","Department of Parks and Recreation","Fixed Asset","3710000","270867.32","92830.59" +"846P-4FMDOOR","DPR","Department of Parks and Recreation","Fixed Asset","689000","0.00","12154.92" +"846P-4LATIME","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","243160.57" +"846P-4PKTR23","DPR","Department of Parks and Recreation","Fixed Asset","83000","16910.01","1186220.94" +"846P-4PKTR24","DPR","Department of Parks and Recreation","Fixed Asset","4351000","3430000","15000" +"846P-4PLG12A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","146396.07" +"846P-4PNYSP5","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2187338.98" +"846P-4PNYT24","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1200374.13" +"846P-4PNYT25","DPR","Department of Parks and Recreation","Fixed Asset","-40000","0.00","1253977.25" +"846P-4PNYT26","DPR","Department of Parks and Recreation","Fixed Asset","-12000","0.00","1897440.80" +"846P-4PNYT27","DPR","Department of Parks and Recreation","Fixed Asset","-41000","0.00","2422420.43" +"846P-4PNYT29","DPR","Department of Parks and Recreation","Fixed Asset","0","11841.8","3168158.2" +"846P-4PNYT31","DPR","Department of Parks and Recreation","Fixed Asset","-14000","0.00","1155790.83" +"846P-4PNYT32","DPR","Department of Parks and Recreation","Fixed Asset","558000","115793.28","2914206.72" +"846P-4QCFMED","DPR","Department of Parks and Recreation","Fixed Asset","54101000","0","0" +"846P-4QCMGL2","DPR","Department of Parks and Recreation","Fixed Asset","0","0","59394" +"846P-4QPGIRC","DPR","Department of Parks and Recreation","Fixed Asset","26000","0","0" +"846P-4QTDSRC","DPR","Department of Parks and Recreation","Fixed Asset","2146000","500000","0" +"846P-4ROYWKG","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-4LINCOL","DPR","Department of Parks and Recreation","Fixed Asset","0","35023.92","902307.51" +"846P-4LONDON","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1431350.95" +"846P-4LIBTPL","DPR","Department of Parks and Recreation","Fixed Asset","-163000","0.00","1282813.71" +"846P-4LLVIRG","DPR","Department of Parks and Recreation","Fixed Asset","11849000","367565.10","1128904.03" +"846P-4MARFAJ","DPR","Department of Parks and Recreation","Fixed Asset","6421000","4072757.69","692943.69" +"846P-4PALSOV","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3244949.11" +"846P-4PS207Q","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1791477.71" +"846P-4QNSWY2","DPR","Department of Parks and Recreation","Fixed Asset","775000","0","0" +"846P-4LATRUF","DPR","Department of Parks and Recreation","Fixed Asset","559000","229629.19","1731538.23" +"846P-4SPT21A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","499325.21" +"846P-4SPT21B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","562077.76" +"846P-4STRNSW","DPR","Department of Parks and Recreation","Fixed Asset","-6000","55000.0","2981.8" +"846P-4SUNRSE","DPR","Department of Parks and Recreation","Fixed Asset","500000","0","0" +"846P-4SWRC23","DPR","Department of Parks and Recreation","Fixed Asset","7828000","0","0" +"846P-4SWRO23","DPR","Department of Parks and Recreation","Fixed Asset","8008000","0","0" +"846P-4TRE14A","DPR","Department of Parks and Recreation","Fixed Asset","13000","0.00","1508702.89" +"846P-4TRE16B","DPR","Department of Parks and Recreation","Fixed Asset","-16000","0.00","1511208.80" +"846P-4TRE17A","DPR","Department of Parks and Recreation","Fixed Asset","-70000","0.0","2265313.7" +"846P-4TRE18A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2557.69" +"846P-4TRE20R","DPR","Department of Parks and Recreation","Fixed Asset","-11000","0.00","2891723.68" +"846P-4TRE21A","DPR","Department of Parks and Recreation","Fixed Asset","291000","0.00","3544165.76" +"846P-4TRE23C","DPR","Department of Parks and Recreation","Fixed Asset","1814000","2680929.84","4761070.16" +"846P-4TRE24A","DPR","Department of Parks and Recreation","Fixed Asset","290000","78681.99","930318.01" +"846P-4TRE24B","DPR","Department of Parks and Recreation","Fixed Asset","74000","44144.22","1214855.78" +"846P-4TRE24C","DPR","Department of Parks and Recreation","Fixed Asset","2315000","6424191.95","1400808.05" +"846P-4TRE24D","DPR","Department of Parks and Recreation","Fixed Asset","2342000","5467299.38","3110700.62" +"846P-4TRE25A","DPR","Department of Parks and Recreation","Fixed Asset","1256000","1013881.33","25118.67" +"846P-4TRE25B","DPR","Department of Parks and Recreation","Fixed Asset","1253000","0.00","11739.47" +"846P-4TRE27A","DPR","Department of Parks and Recreation","Fixed Asset","617000","0","0" +"846P-4TRE27B","DPR","Department of Parks and Recreation","Fixed Asset","64000","0","0" +"846P-4TREE08","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","499744.80" +"846P-4TREE09","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1868805.09" +"846P-4TREE10","DPR","Department of Parks and Recreation","Fixed Asset","0","5082.54","1471987.76" +"846P-4TRS21A","DPR","Department of Parks and Recreation","Fixed Asset","-28000","0.00","944118.92" +"846P-4TRS21D","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2975061.78" +"846P-4TRS23A","DPR","Department of Parks and Recreation","Fixed Asset","1620000","384350.02","5266760.63" +"846P-4TRS23B","DPR","Department of Parks and Recreation","Fixed Asset","300000","12293.43","987705.57" +"846P-4TRSD19","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2652967.80" +"846P-4TRSD23","DPR","Department of Parks and Recreation","Fixed Asset","1574000","342178.41","4902769.59" +"846P-4UNION","DPR","Department of Parks and Recreation","Fixed Asset","205000","468148.77","16805.23" +"846P-4WATECS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","725723" +"846P-500BEAC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.02","651717.38" +"846P-4STALBN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1691262.42" +"846P-4SNDPIP","DPR","Department of Parks and Recreation","Fixed Asset","1000","230437.96","5648624.54" +"846P-4SPRNGF","DPR","Department of Parks and Recreation","Fixed Asset","1162000","826585.86","1125414.14" +"846P-4STFCAR","DPR","Department of Parks and Recreation","Fixed Asset","-195000","0.00","442523.28" +"846P-4STMCPG","DPR","Department of Parks and Recreation","Fixed Asset","8427000","286776.07","487453" +"846P-500LGPD","DPR","Department of Parks and Recreation","Fixed Asset","84000","40000.00","11186541.23" +"846P-501SLTL","DPR","Department of Parks and Recreation","Fixed Asset","1910000","27650.1","69349.9" +"846P-502RUSS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-503BHNC","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-503CHRF","DPR","Department of Parks and Recreation","Fixed Asset","2988000","258304.90","252385.10" +"846P-503WDHL","DPR","Department of Parks and Recreation","Fixed Asset","2745000","0","0" +"846P-5ANCH01","DPR","Department of Parks and Recreation","Fixed Asset","4072000","651839.05","3491476.97" +"846P-5BUNBCH","DPR","Department of Parks and Recreation","Fixed Asset","210000","0","166407" +"846P-501BRE1","DPR","Department of Parks and Recreation","Fixed Asset","0","7169.12","587125.91" +"846P-501CLP2","DPR","Department of Parks and Recreation","Fixed Asset","516000","334092.72","4755907.28" +"846P-501CLPR","DPR","Department of Parks and Recreation","Fixed Asset","5803000","263602.43","383419.67" +"846P-501BRED","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","52430.11" +"846P-5BLUHNC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4656.65" +"846P-6PKTR23","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","7955.55" +"846P-6PNYCA2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","8355152.68" +"846P-502WBBF","DPR","Department of Parks and Recreation","Fixed Asset","26494000","0","0" +"846P-503CLSN","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-501PRLL","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-503BDPG","DPR","Department of Parks and Recreation","Fixed Asset","6956000","0","0" +"846P-5GOODHU","DPR","Department of Parks and Recreation","Fixed Asset","14000000","0","21700000" +"846P-5GSIGI1","DPR","Department of Parks and Recreation","Fixed Asset","764000","2939.99","61432.42" +"846P-5HARBOR","DPR","Department of Parks and Recreation","Fixed Asset","407000","0.00","19623.69" +"846P-5IRRIG","DPR","Department of Parks and Recreation","Fixed Asset","11000","0.00","6325209.09" +"846P-5PKLAND","DPR","Department of Parks and Recreation","Fixed Asset","29712000","1218744.41","2319226.49" +"846P-5PKTR24","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-5PNYC08","DPR","Department of Parks and Recreation","Fixed Asset","415000","0","0" +"846P-5REFO19","DPR","Department of Parks and Recreation","Fixed Asset","38000","3534.48","121465.52" +"846P-5SIFRTN","DPR","Department of Parks and Recreation","Fixed Asset","510000","1890600","115000" +"846P-5SIPOOL","DPR","Department of Parks and Recreation","Fixed Asset","21814000","0","0" +"846P-5SOBLPK","DPR","Department of Parks and Recreation","Fixed Asset","244000","0","16000" +"846P-5SWRC23","DPR","Department of Parks and Recreation","Fixed Asset","7281000","0","0" +"846P-5TRE15A","DPR","Department of Parks and Recreation","Fixed Asset","-131000","0.00","1145261.18" +"846P-5TRE23A","DPR","Department of Parks and Recreation","Fixed Asset","1394000","921406.42","1670593.58" +"846P-5TRE24A","DPR","Department of Parks and Recreation","Fixed Asset","1785000","6000000","15000" +"846P-5TRSD23","DPR","Department of Parks and Recreation","Fixed Asset","1165000","328810.10","4831339.88" +"846P-600ZOO3","DPR","Department of Parks and Recreation","Fixed Asset","-1704000","0","69300" +"846P-600ZOO4","DPR","Department of Parks and Recreation","Fixed Asset","0","0","718000" +"846P-600ZOO5","DPR","Department of Parks and Recreation","Fixed Asset","700000","0","0" +"846P-5CLVLKP","DPR","Department of Parks and Recreation","Fixed Asset","34000","204803.59","1801287.13" +"846P-5CPILCS","DPR","Department of Parks and Recreation","Fixed Asset","3944000","185917.24","144874.34" +"846P-5CPILIP","DPR","Department of Parks and Recreation","Fixed Asset","5402000","103180.65","569462.84" +"846P-5CPILLP","DPR","Department of Parks and Recreation","Fixed Asset","7028000","0","750000" +"846P-5CPIMH","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3490541.56" +"846P-5CPISCP","DPR","Department of Parks and Recreation","Fixed Asset","9144000","20066.43","144933.57" +"846P-5DONGAN","DPR","Department of Parks and Recreation","Fixed Asset","785000","228620.07","3586823.42" +"846P-5CPIKTM","DPR","Department of Parks and Recreation","Fixed Asset","6645000","56435.18","18564.82" +"846P-5WPOLDT","DPR","Department of Parks and Recreation","Fixed Asset","1518000","0","0" +"846P-6PNYCA4","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3997266.80" +"846P-6PNYD03","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1421.25" +"846P-5JOHLPL","DPR","Department of Parks and Recreation","Fixed Asset","5729000","0","0" +"846P-5CPITPR","DPR","Department of Parks and Recreation","Fixed Asset","6500000","0","0" +"846P-5CPITRC","DPR","Department of Parks and Recreation","Fixed Asset","8635000","53096.36","21903.64" +"846P-6ABLDG3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2880207.07" +"846P-6ABLDG4","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","66248.37" +"846P-6BLDG9C","DPR","Department of Parks and Recreation","Fixed Asset","37000","75348.88","1170900.49" +"846P-6CCPL99","DPR","Department of Parks and Recreation","Fixed Asset","0","0","21000" +"846P-6CPI22D","DPR","Department of Parks and Recreation","Fixed Asset","995000","633565.18","1120103.78" +"846P-6CPOOL7","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3836323.92" +"846P-6CPPRGW","DPR","Department of Parks and Recreation","Fixed Asset","883000","41155.67","33844.33" +"846P-6CWBOIL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","60317.28" +"846P-6CWCMVE","DPR","Department of Parks and Recreation","Fixed Asset","0","47201.08","137012.87" +"846P-6CWDRNG","DPR","Department of Parks and Recreation","Fixed Asset","12871000","0","0" +"846P-6CWFALS","DPR","Department of Parks and Recreation","Fixed Asset","17583000","0","0" +"846P-6CWGLZ1","DPR","Department of Parks and Recreation","Fixed Asset","110000","0","0" +"846P-6CWHVAC","DPR","Department of Parks and Recreation","Fixed Asset","23375000","0","0" +"846P-6CWMINI","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","647432.37" +"846P-6CWPKHS","DPR","Department of Parks and Recreation","Fixed Asset","13642000","0","0" +"846P-6CWPLE1","DPR","Department of Parks and Recreation","Fixed Asset","2696000","0","0" +"846P-6CWPRBS","DPR","Department of Parks and Recreation","Fixed Asset","150876000","0","0" +"846P-6CWR22D","DPR","Department of Parks and Recreation","Fixed Asset","460000","520918.02","1986620.99" +"846P-6CWR23C","DPR","Department of Parks and Recreation","Fixed Asset","188000","163392.49","475623.39" +"846P-6CWREWA","DPR","Department of Parks and Recreation","Fixed Asset","2000","474351.59","1672430.01" +"846P-6CWRINK","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6CWRPZ1","DPR","Department of Parks and Recreation","Fixed Asset","1684000","104851.14","309066.86" +"846P-6CWSTBL","DPR","Department of Parks and Recreation","Fixed Asset","4508000","0","0" +"846P-6CWUTIL","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6CWWTRF","DPR","Department of Parks and Recreation","Fixed Asset","39754000","0","0" +"846P-6DCFY22","DPR","Department of Parks and Recreation","Fixed Asset","1000","153595.19","3150357.96" +"846P-6DEERFE","DPR","Department of Parks and Recreation","Fixed Asset","60000","270574.10","597980.61" +"846P-6EABTR1","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6EABTRD","DPR","Department of Parks and Recreation","Fixed Asset","6303000","4952058","0" +"846P-6EABTRF","DPR","Department of Parks and Recreation","Fixed Asset","1779000","1396527","0" +"846P-6ENVLP1","DPR","Department of Parks and Recreation","Fixed Asset","10463000","0","0" +"846P-6ETREE6","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","668234.73" +"846P-6FACD21","DPR","Department of Parks and Recreation","Fixed Asset","2487000","0","0" +"846P-6FLMMUL","DPR","Department of Parks and Recreation","Fixed Asset","303000","189952.71","579209.99" +"846P-6FNCE01","DPR","Department of Parks and Recreation","Fixed Asset","488000","0","0" +"846P-6FOREST","DPR","Department of Parks and Recreation","Fixed Asset","11813000","0","0" +"846P-6GASBSI","DPR","Department of Parks and Recreation","Fixed Asset","5030000","0.00","136681.25" +"846P-6GASMAN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","127926.18" +"846P-6GRST04","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1890140.03" +"846P-6GRST05","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1132100.90" +"846P-6GTGDN1","DPR","Department of Parks and Recreation","Fixed Asset","56679000","633273.65","982063.35" +"846P-6HHTFND","DPR","Department of Parks and Recreation","Fixed Asset","3283000","0","0" +"846P-6IHOTPS","DPR","Department of Parks and Recreation","Fixed Asset","618000","0","0" +"846P-6IHTPPS","DPR","Department of Parks and Recreation","Fixed Asset","1856000","0","0" +"846P-6NRGF01","DPR","Department of Parks and Recreation","Fixed Asset","345000","796870.44","318329.56" +"846P-6COMGAR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","527946.78" +"846P-6PKPL24","DPR","Department of Parks and Recreation","Fixed Asset","5621000","0","25000" +"846P-6PNYG05","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","696089.84" +"846P-6PNYR35","DPR","Department of Parks and Recreation","Fixed Asset","0","196740.84","378555.75" +"846P-6PNYR37","DPR","Department of Parks and Recreation","Fixed Asset","-1000","0.0","1239040.6" +"846P-6PNYR39","DPR","Department of Parks and Recreation","Fixed Asset","98000","40132.9","284867.1" +"846P-6PNYR40","DPR","Department of Parks and Recreation","Fixed Asset","88000","0","0" +"846P-6PNYT25","DPR","Department of Parks and Recreation","Fixed Asset","0","2250.65","678749.35" +"846P-6POOL21","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6PREP24","DPR","Department of Parks and Recreation","Fixed Asset","0","9583.89","435416.11" +"846P-6REF20B","DPR","Department of Parks and Recreation","Fixed Asset","0","56.79","1415846.00" +"846P-6REF20S","DPR","Department of Parks and Recreation","Fixed Asset","87000","57","435703" +"846P-6REMT35","DPR","Department of Parks and Recreation","Fixed Asset","0","0","94173" +"846P-6REMT36","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","400860.2" +"846P-6REMT37","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","277060.1" +"846P-6RWRFDS","DPR","Department of Parks and Recreation","Fixed Asset","5574000","0","0" +"846P-6SANDT1","DPR","Department of Parks and Recreation","Fixed Asset","0","174264","2100512" +"846P-6SCACON","DPR","Department of Parks and Recreation","Fixed Asset","7910000","0","0" +"846P-6SECBOL","DPR","Department of Parks and Recreation","Fixed Asset","5614000","10915.01","968727.89" +"846P-6SOGRFG","DPR","Department of Parks and Recreation","Fixed Asset","4888000","0","0" +"846P-6STORG1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2246867.51" +"846P-6STRUC2","DPR","Department of Parks and Recreation","Fixed Asset","1364000","430000.00","5615.92" +"846P-6SWRC23","DPR","Department of Parks and Recreation","Fixed Asset","5650000","0","0" +"846P-6TREGRD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","115848.75" +"846P-6TREP22","DPR","Department of Parks and Recreation","Fixed Asset","-23000","6206.76","545930.32" +"846P-6OLYMPL","DPR","Department of Parks and Recreation","Fixed Asset","-8000","0.00","525368.06" +"846P-6STRG21","DPR","Department of Parks and Recreation","Fixed Asset","190000","0","0" +"846P-6TCPOOL","DPR","Department of Parks and Recreation","Fixed Asset","7307000","27729.55","122270.45" +"846P-6PNYR32","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","865962.91" +"846P-6TRGRD1","DPR","Department of Parks and Recreation","Fixed Asset","335000","69020.39","768379.17" +"846P-6TRP24A","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6TRP24B","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6TRS21A","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-6TRS23A","DPR","Department of Parks and Recreation","Fixed Asset","1072000","451768.37","3123228.63" +"846P-6WALK11","DPR","Department of Parks and Recreation","Fixed Asset","-457000","0.00","463733.66" +"846P-6WCSFND","DPR","Department of Parks and Recreation","Fixed Asset","91824000","0","0" +"846P-6WETLND","DPR","Department of Parks and Recreation","Fixed Asset","32946000","0","0" +"846PV655-VIS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SAND3TREE","DPR","Department of Parks and Recreation","Fixed Asset","9931000","1825187.11","7012555.66" +"846SAND4TREE","DPR","Department of Parks and Recreation","Fixed Asset","4753000","121037.76","476529.24" +"846SAND5TREE","DPR","Department of Parks and Recreation","Fixed Asset","1353000","3745964.33","1764773.28" +"846SANDY2-09","DPR","Department of Parks and Recreation","Fixed Asset","41000","0.00","1053771.39" +"846SANDY2-21","DPR","Department of Parks and Recreation","Fixed Asset","409000","0.00","1846720.68" +"846SANDY2-38","DPR","Department of Parks and Recreation","Fixed Asset","14000","0","0" +"846SANDY3-02","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","898715.84" +"846SANDY3-10","DPR","Department of Parks and Recreation","Fixed Asset","34000","8810.0","36925.0" +"846SANDY3-15","DPR","Department of Parks and Recreation","Fixed Asset","31000","674070.00","557829.72" +"846SANDY3-19","DPR","Department of Parks and Recreation","Fixed Asset","1018000","0","0" +"846SANDY3-21","DPR","Department of Parks and Recreation","Fixed Asset","937000","0","0" +"846SANDY3-24","DPR","Department of Parks and Recreation","Fixed Asset","407000","302625.0","31967.5" +"846SANDY3-26","DPR","Department of Parks and Recreation","Fixed Asset","372000","28643.84","2001.16" +"846P-6WTRSWR","DPR","Department of Parks and Recreation","Fixed Asset","728000","458407.72","201134.03" +"846SANDY2-12","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1827690.62" +"846SANDY2-37","DPR","Department of Parks and Recreation","Fixed Asset","2275000","19934.05","287065.95" +"846SANDY3-03","DPR","Department of Parks and Recreation","Fixed Asset","0","10355.00","1209349.21" +"846SANDY3-13","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2142364.40" +"846SANDY3-18","DPR","Department of Parks and Recreation","Fixed Asset","3874000","0.00","408751.01" +"846SANDY2-34","DPR","Department of Parks and Recreation","Fixed Asset","-2000","0.00","3030626.22" +"846SANDY2-39","DPR","Department of Parks and Recreation","Fixed Asset","1195000","88788.91","63647.09" +"846SANDY4-01","DPR","Department of Parks and Recreation","Fixed Asset","12000","0.00","1661030.58" +"846SANDY4-09","DPR","Department of Parks and Recreation","Fixed Asset","47000","0.00","1620168.01" +"846SANDY4-14","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1023277.58" +"846SANDY4-15","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","543245.46" +"846SANDY4-56","DPR","Department of Parks and Recreation","Fixed Asset","1599000","0","0" +"846SANDY5-20","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","815009.70" +"846SANDY5-28","DPR","Department of Parks and Recreation","Fixed Asset","274000","175619.67","196487.41" +"846SANDY5-29","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","444997.06" +"846SANDY5-48","DPR","Department of Parks and Recreation","Fixed Asset","704000","0","0" +"846SANDY5-51","DPR","Department of Parks and Recreation","Fixed Asset","12000","0.00","265.18" +"846SANDY5-52","DPR","Department of Parks and Recreation","Fixed Asset","48000","0","0" +"846SANDY5-53","DPR","Department of Parks and Recreation","Fixed Asset","160000","6091.87","11950.13" +"846SANDY5-54","DPR","Department of Parks and Recreation","Fixed Asset","421000","65258.05","25470.95" +"850BBJ-X","DDC","Department of Design and Construction","Fixed Asset","2615857000","1049987183.86","282938537.06" +"850BED-768B","DDC","Department of Design and Construction","Fixed Asset","60260000","844523.83","78190.22" +"846SANDY4-41","DPR","Department of Parks and Recreation","Fixed Asset","435000","4247911.45","3783079.32" +"846SANDY4-55","DPR","Department of Parks and Recreation","Fixed Asset","4471000","0","0" +"846SANDY4-18","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1071547.20" +"846SANDY4-19","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","500006.24" +"846SANDY4-32","DPR","Department of Parks and Recreation","Fixed Asset","0","71640.50","3242621.98" +"846SANDY4-33","DPR","Department of Parks and Recreation","Fixed Asset","84000","359786.56","4152058.74" +"846SANDY4-34","DPR","Department of Parks and Recreation","Fixed Asset","0","20378.89","1981423.97" +"846SANDY4-35","DPR","Department of Parks and Recreation","Fixed Asset","40000","378662.50","6505420.02" +"846SANDY3-27","DPR","Department of Parks and Recreation","Fixed Asset","239000","26829","0" +"846SANDY5-55","DPR","Department of Parks and Recreation","Fixed Asset","800000","27259.11","47740.89" +"846SANDY6-13","DPR","Department of Parks and Recreation","Fixed Asset","0","130.35","179378.34" +"846SANDY6-14","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","11426652.77" +"846SANDY6-21","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","360115.70" +"846SANDYRHMP","DPR","Department of Parks and Recreation","Fixed Asset","11524000","0","0" +"846SEED-138S","DPR","Department of Parks and Recreation","Fixed Asset","2100000","0","0" +"846SEED-142S","DPR","Department of Parks and Recreation","Fixed Asset","3800000","0","0" +"846SEED-BRRC","DPR","Department of Parks and Recreation","Fixed Asset","28636000","0","0" +"846SEED-OSQB","DPR","Department of Parks and Recreation","Fixed Asset","95000000","0","0" +"846SEED-QBBP","DPR","Department of Parks and Recreation","Fixed Asset","2300000","0","0" +"850AGSNAPBP","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850BBJ-K","DDC","Department of Design and Construction","Fixed Asset","1850174000","794271644.78","1228062152.69" +"850BBJ-M","DDC","Department of Design and Construction","Fixed Asset","3845746000","586082308.58","306338123.17" +"846SEED-ROYW","DPR","Department of Parks and Recreation","Fixed Asset","30095000","1646716.41","354093.32" +"85070MULBREC","DDC","Department of Design and Construction","Fixed Asset","160808000","4200293.80","13011565.62" +"846SEED-VRTN","DPR","Department of Parks and Recreation","Fixed Asset","2700000","0","0" +"846SEED-LPPR","DPR","Department of Parks and Recreation","Fixed Asset","4666000","0","0" +"850BBJ-Q","DDC","Department of Design and Construction","Fixed Asset","3387410000","1925842132.58","220388284.27" +"850BED-830","DDC","Department of Design and Construction","Fixed Asset","2538000","8545.85","271454.15" +"850BLCOMPLNT","DDC","Department of Design and Construction","Fixed Asset","584000","1113127.63","5916346.77" +"850C11421STC","DDC","Department of Design and Construction","Fixed Asset","206448000","35551064.64","191754354.33" +"850CHHAYAFIT","DDC","Department of Design and Construction","Fixed Asset","250000","0","0" +"850CHIVIL","DDC","Department of Design and Construction","Fixed Asset","413000","350363","0" +"850CONEYINF","DDC","Department of Design and Construction","Fixed Asset","210000","1165580.27","790354.92" +"850CROSSBOIL","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850CSCN700NS","DDC","Department of Design and Construction","Fixed Asset","193000","0","0" +"850BBJ-QGAR","DDC","Department of Design and Construction","Fixed Asset","30000","1447333.85","83413773.27" +"850BXELEVFAR","DDC","Department of Design and Construction","Fixed Asset","2787000","0","0" +"850EC-GUN22","DDC","Department of Design and Construction","Fixed Asset","0","19883.55","12499526.87" +"850EC-GUN23","DDC","Department of Design and Construction","Fixed Asset","0","403652.93","11882616.49" +"850EC-GUN24","DDC","Department of Design and Construction","Fixed Asset","-308000","3530640.58","9083984.42" +"850EC-GUN25","DDC","Department of Design and Construction","Fixed Asset","1415000","8965568.75","213956.25" +"850EC-GUN26","DDC","Department of Design and Construction","Fixed Asset","13461000","12289995","0" +"850EC-LC22A","DDC","Department of Design and Construction","Fixed Asset","0","881329.92","3465642.07" +"850EC-SEC22","DDC","Department of Design and Construction","Fixed Asset","1012000","909000.00","35129297.04" +"850EC-SEC23","DDC","Department of Design and Construction","Fixed Asset","336000","1025031.29","32118152.35" +"850EC-SEC24","DDC","Department of Design and Construction","Fixed Asset","17215000","15014030.50","45441435.80" +"850EC-SEC25","DDC","Department of Design and Construction","Fixed Asset","5359000","1439767.52","22742232.48" +"850EC-SEC26","DDC","Department of Design and Construction","Fixed Asset","26140000","23750000","0" +"850EC-SEKN22","DDC","Department of Design and Construction","Fixed Asset","0","2948828.21","4624701.77" +"850EC-SEKN23","DDC","Department of Design and Construction","Fixed Asset","0","1423160.67","5461100.16" +"850EC-SEKN24","DDC","Department of Design and Construction","Fixed Asset","0","6707129.59","1345591.44" +"850EC-SEKN25","DDC","Department of Design and Construction","Fixed Asset","1194000","7697105.37","98085.72" +"850EC-SEKN26","DDC","Department of Design and Construction","Fixed Asset","11427000","0","0" +"850EC-SEKS23","DDC","Department of Design and Construction","Fixed Asset","70000","630106.99","11342564.22" +"850EC-SEKS24","DDC","Department of Design and Construction","Fixed Asset","924000","5796658.29","5554532.62" +"850EC-SEKS25","DDC","Department of Design and Construction","Fixed Asset","1051000","8168898.99","2887314.37" +"850EC-SEKS26","DDC","Department of Design and Construction","Fixed Asset","12636000","0","0" +"850EC-SEQN22","DDC","Department of Design and Construction","Fixed Asset","390000","969786.58","6406780.82" +"850EC-SEQN23","DDC","Department of Design and Construction","Fixed Asset","1076000","1833414.12","8864879.50" +"850EC-SEQN24","DDC","Department of Design and Construction","Fixed Asset","747000","1307271.43","8087386.30" +"850EC-SEQN25","DDC","Department of Design and Construction","Fixed Asset","1751000","6838283.64","3008170.67" +"850EC-SEQN26","DDC","Department of Design and Construction","Fixed Asset","11539000","7836858","0" +"850EC-SEQS22","DDC","Department of Design and Construction","Fixed Asset","0","702416.56","12051668.81" +"850EC-SEQS23","DDC","Department of Design and Construction","Fixed Asset","734000","1090091.13","17841514.06" +"850EC-SEQS24","DDC","Department of Design and Construction","Fixed Asset","0","4166071.72","9740116.72" +"850EC-SEQS25","DDC","Department of Design and Construction","Fixed Asset","1148000","11129866.38","2327680.12" +"850EC-SEQS26","DDC","Department of Design and Construction","Fixed Asset","14851000","11363861.5","0" +"850EC-SER22","DDC","Department of Design and Construction","Fixed Asset","0","160359.52","10381030.98" +"850EC-SER23","DDC","Department of Design and Construction","Fixed Asset","435000","712156.10","11740842.33" +"850EC-SER24","DDC","Department of Design and Construction","Fixed Asset","436000","745662.94","12701522.36" +"850EC-SER25","DDC","Department of Design and Construction","Fixed Asset","7328000","6642506.60","6124157.27" +"850EC-SER26","DDC","Department of Design and Construction","Fixed Asset","7632000","0","0" +"850EC-SEX22","DDC","Department of Design and Construction","Fixed Asset","1039000","159078.22","12562675.38" +"850EC-SEX23","DDC","Department of Design and Construction","Fixed Asset","2415000","535135.08","9413411.36" +"850EC-SEX24","DDC","Department of Design and Construction","Fixed Asset","2782000","2658782.68","6882318.88" +"850EC-SEX25","DDC","Department of Design and Construction","Fixed Asset","700000","5161041.49","1857691.63" +"850EC-SEX26","DDC","Department of Design and Construction","Fixed Asset","7528000","5096109.55","0" +"850EC-WMC22","DDC","Department of Design and Construction","Fixed Asset","998000","57594.86","16192920.47" +"850EC-WMC23","DDC","Department of Design and Construction","Fixed Asset","17000","353526.94","14389334.06" +"850EC-WMC24","DDC","Department of Design and Construction","Fixed Asset","852000","670015.57","17362798.11" +"850EC-WMC25","DDC","Department of Design and Construction","Fixed Asset","6065000","7689435.47","9998666.12" +"850EC-WMC26","DDC","Department of Design and Construction","Fixed Asset","13521000","12350000","0" +"850GE-360-MX","DDC","Department of Design and Construction","Fixed Asset","100000","0","60666" +"850GE-363","DDC","Department of Design and Construction","Fixed Asset","381000","23987.84","16953895.86" +"850GKOH15-DB","DDC","Department of Design and Construction","Fixed Asset","0","243384.00","656639.62" +"850HED-560","DDC","Department of Design and Construction","Fixed Asset","643000","14912501.16","17145.75" +"850HED-562","DDC","Department of Design and Construction","Fixed Asset","13925000","50495838.30","3196299.07" +"850HED583","DDC","Department of Design and Construction","Fixed Asset","32861000","1735958.00","304000" +"850HED585","DDC","Department of Design and Construction","Fixed Asset","16772000","1443180.59","211821.41" +"850HED599","DDC","Department of Design and Construction","Fixed Asset","698000","209858.54","0" +"850HED605","DDC","Department of Design and Construction","Fixed Asset","5812000","0","0" +"850HAM14GOCC","DDC","Department of Design and Construction","Fixed Asset","153000","286402.01","4613932.70" +"850HH115JCEK","DDC","Department of Design and Construction","Fixed Asset","0","0.00","2767.55" +"850HHREHAB","DDC","Department of Design and Construction","Fixed Asset","123000","0","0" +"850HL82RVREX","DDC","Department of Design and Construction","Fixed Asset","0","289812.75","38713140.88" +"850HL82SMAR2","DDC","Department of Design and Construction","Fixed Asset","0","0","822900" +"850HLDN168BD","DDC","Department of Design and Construction","Fixed Asset","200000","0","0" +"850HLDNAPICA","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLDNBARNB","DDC","Department of Design and Construction","Fixed Asset","0","361877","0" +"850HLDNBKHMC","DDC","Department of Design and Construction","Fixed Asset","670000","0","0" +"850HLDNBKRCS","DDC","Department of Design and Construction","Fixed Asset","152000","0","0" +"850HLDNBROKD","DDC","Department of Design and Construction","Fixed Asset","142000","0","0" +"850HLDNBROOE","DDC","Department of Design and Construction","Fixed Asset","1568000","0","0" +"850HLDNKNPHC","DDC","Department of Design and Construction","Fixed Asset","1850000","0","0" +"850HH112KELC","DDC","Department of Design and Construction","Fixed Asset","11337000","10059122.28","1813066.50" +"850HH112LXEP","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HH112PJFC","DDC","Department of Design and Construction","Fixed Asset","29612000","3121969.53","2644085.28" +"850HH112PJPL","DDC","Department of Design and Construction","Fixed Asset","815000","6100915.31","1410446.23" +"850HH112THKR","DDC","Department of Design and Construction","Fixed Asset","325000","0.00","1004944.11" +"850HH115BMEP","DDC","Department of Design and Construction","Fixed Asset","895000","1638899.20","3298253.20" +"850HH115SNEC","DDC","Department of Design and Construction","Fixed Asset","447000","0.00","2069.66" +"850HL82BRONX","DDC","Department of Design and Construction","Fixed Asset","22444000","40251815.03","59503345.48" +"850HL82JAMCX","DDC","Department of Design and Construction","Fixed Asset","500000","617618.76","14570365.59" +"850HL82PRSN","DDC","Department of Design and Construction","Fixed Asset","0","0.00","2618807.28" +"850HL82WASHT","DDC","Department of Design and Construction","Fixed Asset","252000","370550.09","1040406.03" +"850HH115DSFA","DDC","Department of Design and Construction","Fixed Asset","665000","3486244.50","1427485.02" +"850HHWINIO","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLDNMARH","DDC","Department of Design and Construction","Fixed Asset","309000","0","0" +"850HLDNMONTE","DDC","Department of Design and Construction","Fixed Asset","600000","0","0" +"850HLDNMTSIN","DDC","Department of Design and Construction","Fixed Asset","0","0","1695186" +"850HLDNNYCC","DDC","Department of Design and Construction","Fixed Asset","113000","0","0" +"850HLDNSIUHE","DDC","Department of Design and Construction","Fixed Asset","933000","0","0" +"850HLDNSIUPB","DDC","Department of Design and Construction","Fixed Asset","255000","0","0" +"850HLDNSTATE","DDC","Department of Design and Construction","Fixed Asset","0","0","1031464" +"850HLK03TDNA","DDC","Department of Design and Construction","Fixed Asset","0","0","317193" +"850HLKNACCBD","DDC","Department of Design and Construction","Fixed Asset","210000","0","0" +"850HLKNBRK","DDC","Department of Design and Construction","Fixed Asset","497000","0","0" +"850HLKNBRK2","DDC","Department of Design and Construction","Fixed Asset","740000","0","0" +"850HLKNMAIM2","DDC","Department of Design and Construction","Fixed Asset","232000","0","0" +"850HLMAIMOR","DDC","Department of Design and Construction","Fixed Asset","1451000","0","0" +"850HLMGHRAM","DDC","Department of Design and Construction","Fixed Asset","120000","0","0" +"850HLMNCCHPI","DDC","Department of Design and Construction","Fixed Asset","100000","100000","0" +"850HLMNCHPIO","DDC","Department of Design and Construction","Fixed Asset","300000","300000","0" +"850HLMNNYPHU","DDC","Department of Design and Construction","Fixed Asset","27000","0","0" +"850HLQNAPICH","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLQNDN367","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLQNFHBMB","DDC","Department of Design and Construction","Fixed Asset","0","0","266759" +"850HLQNJHACC","DDC","Department of Design and Construction","Fixed Asset","3000000","0","0" +"850HLQNJHAU","DDC","Department of Design and Construction","Fixed Asset","222000","0","0" +"850HLQNLIJNW","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLQNMHBAY","DDC","Department of Design and Construction","Fixed Asset","992000","0","0" +"850HLQNSMHCI","DDC","Department of Design and Construction","Fixed Asset","512000","0","0" +"850HLRDNSIUH","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HLRNRUMCP","DDC","Department of Design and Construction","Fixed Asset","1521000","0","0" +"850HLRNSIUPB","DDC","Department of Design and Construction","Fixed Asset","200000","0","0" +"850HWP2020KC","DDC","Department of Design and Construction","Fixed Asset","5018000","17154710.57","3454142.10" +"850HLRNSIURR","DDC","Department of Design and Construction","Fixed Asset","200000","0","0" +"850HLSIUHCAR","DDC","Department of Design and Construction","Fixed Asset","1118000","0","0" +"850HLSIUHMAM","DDC","Department of Design and Construction","Fixed Asset","421000","0","0" +"850HLSIUHPCT","DDC","Department of Design and Construction","Fixed Asset","701000","0","0" +"850HLSIUHSUG","DDC","Department of Design and Construction","Fixed Asset","193000","0","0" +"850HLSIUNHO1","DDC","Department of Design and Construction","Fixed Asset","200000","0","0" +"850HLSIUNHO2","DDC","Department of Design and Construction","Fixed Asset","641000","0","0" +"850HLSIUNHO3","DDC","Department of Design and Construction","Fixed Asset","1000000","0","0" +"850HLXNMONTE","DDC","Department of Design and Construction","Fixed Asset","800000","0","0" +"850HLXNMONTM","DDC","Department of Design and Construction","Fixed Asset","800000","0","0" +"850HLXNSTBAR","DDC","Department of Design and Construction","Fixed Asset","800000","0","0" +"850HORIAC5","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HORIBOIL","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HR25FACA","DDC","Department of Design and Construction","Fixed Asset","1000","601337.02","20212800.17" +"850HR25BRCS","DDC","Department of Design and Construction","Fixed Asset","10913000","26340157.13","95443652.93" +"850HRDFORN","DDC","Department of Design and Construction","Fixed Asset","432000","0","0" +"850HRDNCSQU","DDC","Department of Design and Construction","Fixed Asset","200000","0","0" +"850HRDNGODL","DDC","Department of Design and Construction","Fixed Asset","187000","0","0" +"850HRKNGLIO","DDC","Department of Design and Construction","Fixed Asset","500000","0","0" +"850HRKNSUHDF","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HRQN942","DDC","Department of Design and Construction","Fixed Asset","0","0","35122" +"850HW2CR11CW","DDC","Department of Design and Construction","Fixed Asset","0","19985.38","14190199.69" +"850HW2CR12C","DDC","Department of Design and Construction","Fixed Asset","149000","119342.90","3912195.96" +"850HWCB25KR","DDC","Department of Design and Construction","Fixed Asset","5786000","3788131.02","145465.52" +"850HWCB25QXM","DDC","Department of Design and Construction","Fixed Asset","5292000","7564390.15","283755.45" +"850HWCB26KR","DDC","Department of Design and Construction","Fixed Asset","5126000","1897441.7","0" +"850HWCB26QXM","DDC","Department of Design and Construction","Fixed Asset","7025000","6358999.92","0" +"850HWCURB10","DDC","Department of Design and Construction","Fixed Asset","1054000","3045010.90","420082.92" +"850HWK002377","DDC","Department of Design and Construction","Fixed Asset","7332000","108491.04","619688.39" +"850HWM42SURV","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HWP15XMCL","DDC","Department of Design and Construction","Fixed Asset","501000","579580.32","10078821.29" +"850HWP15XMTA","DDC","Department of Design and Construction","Fixed Asset","2000","4512312.52","9747023.33" +"850HWP19CWLM","DDC","Department of Design and Construction","Fixed Asset","1119000","11325928.91","6575900.39" +"850HWP19KC1","DDC","Department of Design and Construction","Fixed Asset","868000","3739308.70","7232077.47" +"850HWP19KC2","DDC","Department of Design and Construction","Fixed Asset","496000","3201860.98","5671412.75" +"850HWP19KC3","DDC","Department of Design and Construction","Fixed Asset","1842000","5657630.30","9231421.50" +"850HWP19KQTA","DDC","Department of Design and Construction","Fixed Asset","627000","5867976.58","10906364.58" +"850HWP19QRC","DDC","Department of Design and Construction","Fixed Asset","1448000","2350794.16","5717395.35" +"850HWP2002Q","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5091603.03" +"850HWP2004MX","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3234559.70" +"850HWP2005X","DDC","Department of Design and Construction","Fixed Asset","353000","347.62","1057026.63" +"850HWP2006Q","DDC","Department of Design and Construction","Fixed Asset","146000","0.00","9363011.08" +"850HWP2006QC","DDC","Department of Design and Construction","Fixed Asset","0","8648.07","10398684.34" +"850HWP2007R","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3543092.15" +"850HWP2008R","DDC","Department of Design and Construction","Fixed Asset","0","0.00","4917137.69" +"850HWP2008X","DDC","Department of Design and Construction","Fixed Asset","0","99172.00","97094.34" +"850HWP2020LM","DDC","Department of Design and Construction","Fixed Asset","1298000","27070709.82","4771022.95" +"850HWP2020TA","DDC","Department of Design and Construction","Fixed Asset","36546000","35882532.29","2631869.45" +"850HWP2024S","DDC","Department of Design and Construction","Fixed Asset","6602000","6758554.18","1825011.40" +"850HWP20KRC","DDC","Department of Design and Construction","Fixed Asset","7450000","765147.85","1195279.15" +"850HWP20MKC","DDC","Department of Design and Construction","Fixed Asset","8653000","0","1045000" +"850HWP20MXQC","DDC","Department of Design and Construction","Fixed Asset","7735000","6909417.06","5104541.48" +"850HWP22KQC","DDC","Department of Design and Construction","Fixed Asset","16634000","1506014.65","1128112.35" +"850HWP22KRC","DDC","Department of Design and Construction","Fixed Asset","16124000","1965226","1181800" +"850HWP22MXQC","DDC","Department of Design and Construction","Fixed Asset","14992000","1904613.5","904036.5" +"850HWP23KC","DDC","Department of Design and Construction","Fixed Asset","16659000","3132587","42193" +"850HWP23KQC","DDC","Department of Design and Construction","Fixed Asset","14900000","3214442.8","325994.2" +"850HWP23KRC","DDC","Department of Design and Construction","Fixed Asset","14350000","3787757","0" +"850HWP23MC1","DDC","Department of Design and Construction","Fixed Asset","14968000","1713754.8","1131532.2" +"850HWP23MC2","DDC","Department of Design and Construction","Fixed Asset","15794000","2980266","0" +"850HWP23MQC","DDC","Department of Design and Construction","Fixed Asset","15085000","2969835","264100" +"850HWP23MXC","DDC","Department of Design and Construction","Fixed Asset","15837000","2305541.29","186881.71" +"850HWP23QC1","DDC","Department of Design and Construction","Fixed Asset","16197000","3612046","60800" +"850HWP23QC2","DDC","Department of Design and Construction","Fixed Asset","14755000","2598062.5","475117.5" +"850HWP23XC","DDC","Department of Design and Construction","Fixed Asset","14333000","2736760","690040" +"850HWP24KC","DDC","Department of Design and Construction","Fixed Asset","20693000","2799445.94","0" +"850HWP24KQC","DDC","Department of Design and Construction","Fixed Asset","21950000","3058882.77","0" +"850HWP24KRC","DDC","Department of Design and Construction","Fixed Asset","20691000","2637756.73","0" +"850HWP24MC1","DDC","Department of Design and Construction","Fixed Asset","21734000","2850132.98","0" +"850HWP24MC2","DDC","Department of Design and Construction","Fixed Asset","21424000","2562704.96","0" +"850HWP24MC3","DDC","Department of Design and Construction","Fixed Asset","20925000","2370950.3","0" +"850HWP24MXC","DDC","Department of Design and Construction","Fixed Asset","21090000","3253143.26","0" +"850HWP24QC1","DDC","Department of Design and Construction","Fixed Asset","20881000","2983922.54","0" +"850HWP24QC2","DDC","Department of Design and Construction","Fixed Asset","21041000","2988153.34","0" +"850HWP24XC","DDC","Department of Design and Construction","Fixed Asset","20375000","2470580.92","0" +"850HWPMWBEQ","DDC","Department of Design and Construction","Fixed Asset","105000","160713.47","550515.13" +"850HWPR19K1","DDC","Department of Design and Construction","Fixed Asset","155000","564198.23","12930367.17" +"850HWPR19M","DDC","Department of Design and Construction","Fixed Asset","245000","701355.61","13098485.68" +"850HWPR19Q2","DDC","Department of Design and Construction","Fixed Asset","970000","476909.15","14383297.24" +"850HWPR19X","DDC","Department of Design and Construction","Fixed Asset","300000","519776.15","12264317.72" +"850HWPR20K1","DDC","Department of Design and Construction","Fixed Asset","1282000","1134854.95","13216132.00" +"850HWPR20K2","DDC","Department of Design and Construction","Fixed Asset","1432000","620835.55","13786637.02" +"850HWPR20K3","DDC","Department of Design and Construction","Fixed Asset","1504000","2320426.99","10102024.52" +"850HWPR20KC","DDC","Department of Design and Construction","Fixed Asset","19583000","95302.76","1379697.24" +"850HWPR20KMC","DDC","Department of Design and Construction","Fixed Asset","2150000","21677868.32","14218280.45" +"850HWPR20MCL","DDC","Department of Design and Construction","Fixed Asset","1936000","15455236.89","5288460.94" +"850HWPR20MKL","DDC","Department of Design and Construction","Fixed Asset","1278000","14480382.37","5786653.51" +"850HWPR20MKT","DDC","Department of Design and Construction","Fixed Asset","1020000","11053139.42","8195827.82" +"850HWPR20MQC","DDC","Department of Design and Construction","Fixed Asset","1372000","13910931.51","4862667.28" +"850HWPR20MQX","DDC","Department of Design and Construction","Fixed Asset","16192000","298388.7","1036611.3" +"850HWPR20MX","DDC","Department of Design and Construction","Fixed Asset","1000000","1374051.48","11016968.57" +"850HWPR20MXC","DDC","Department of Design and Construction","Fixed Asset","1131000","18059809.80","11131577.90" +"850HWPR20Q1","DDC","Department of Design and Construction","Fixed Asset","1382000","1653401.40","13027068.33" +"850HWPR20Q2","DDC","Department of Design and Construction","Fixed Asset","542000","1817417.15","14264380.96" +"850HWPR20Q3","DDC","Department of Design and Construction","Fixed Asset","921000","1510792.76","12865192.52" +"850HWPR20QC","DDC","Department of Design and Construction","Fixed Asset","748000","9950539.85","6918943.97" +"850HWPR21K1","DDC","Department of Design and Construction","Fixed Asset","1123000","1275476.45","14653349.00" +"850HWPR21KR","DDC","Department of Design and Construction","Fixed Asset","667000","2935754.83","14976869.72" +"850HWPR21KRC","DDC","Department of Design and Construction","Fixed Asset","10224000","2102.2","1639434.8" +"850HWPR21LMT","DDC","Department of Design and Construction","Fixed Asset","8490000","390958.21","1183392.79" +"850HWPR21MQ","DDC","Department of Design and Construction","Fixed Asset","2000","4110304.48","14475857.62" +"850HWPR21MTA","DDC","Department of Design and Construction","Fixed Asset","9623000","495077.5","1109327.5" +"850HWPR21Q1","DDC","Department of Design and Construction","Fixed Asset","914000","1146780.88","17772072.92" +"850HWPR21QC","DDC","Department of Design and Construction","Fixed Asset","8487000","557397.4","740518.6" +"850HWPR21QX","DDC","Department of Design and Construction","Fixed Asset","904000","523397.60","13657093.13" +"850HWPR21XC","DDC","Department of Design and Construction","Fixed Asset","9082000","813632.09","1288958.71" +"850HWPR22K1","DDC","Department of Design and Construction","Fixed Asset","150000","1651177.99","17848120.81" +"850HWPR22KQC","DDC","Department of Design and Construction","Fixed Asset","17729000","1118130.65","991111.35" +"850HWPR22KR","DDC","Department of Design and Construction","Fixed Asset","211000","3735491.17","15365531.43" +"850HWPR22KRC","DDC","Department of Design and Construction","Fixed Asset","21021000","1313159","1146001" +"850HWPR22MC","DDC","Department of Design and Construction","Fixed Asset","17042000","1183421.54","1266070.46" +"850HWPR22MQ","DDC","Department of Design and Construction","Fixed Asset","315000","3312386.34","22482174.36" +"850HWPR22MXC","DDC","Department of Design and Construction","Fixed Asset","20163000","1298456.95","1331144.05" +"850HWPR22Q1","DDC","Department of Design and Construction","Fixed Asset","1000","2196133.55","18374992.85" +"850HWPR22QX","DDC","Department of Design and Construction","Fixed Asset","50000","1457283.19","18189097.76" +"850HWPR23K1","DDC","Department of Design and Construction","Fixed Asset","1760000","11546009.93","9394775.67" +"850HWPR23KQ","DDC","Department of Design and Construction","Fixed Asset","2173000","11835787.35","9320338.65" +"850HWPR23KR","DDC","Department of Design and Construction","Fixed Asset","1776000","12239060.93","10053318.47" +"850HWPR23MQ","DDC","Department of Design and Construction","Fixed Asset","2107000","15879268.54","6658637.06" +"850HWPR23Q1","DDC","Department of Design and Construction","Fixed Asset","2276000","12859640.69","8720103.16" +"850HWPR23QX","DDC","Department of Design and Construction","Fixed Asset","1776000","4690521.17","16063065.63" +"850HWPR24KQ","DDC","Department of Design and Construction","Fixed Asset","920000","20304438.60","2167179.40" +"850HWPR24KR","DDC","Department of Design and Construction","Fixed Asset","919000","19729005.16","4853325.49" +"850HWPR24MQ","DDC","Department of Design and Construction","Fixed Asset","918000","21664333.26","3973066.74" +"850HWPR24Q1","DDC","Department of Design and Construction","Fixed Asset","978000","19653457.75","2024214.99" +"850HWPR24QX","DDC","Department of Design and Construction","Fixed Asset","21431000","24805895.82","73340.55" +"850HWPR25KQ","DDC","Department of Design and Construction","Fixed Asset","29476000","26875446","0" +"850HWPR25KR","DDC","Department of Design and Construction","Fixed Asset","29885000","26255504.5","0" +"850HWPR25MQX","DDC","Department of Design and Construction","Fixed Asset","30582000","27163383","0" +"850HWPR25Q1","DDC","Department of Design and Construction","Fixed Asset","28115000","25312631","0" +"850HWQ002539","DDC","Department of Design and Construction","Fixed Asset","225000","196330.71","474465.88" +"850HWQ1206","DDC","Department of Design and Construction","Fixed Asset","11575000","978792.55","481539.45" +"850HWQ274F","DDC","Department of Design and Construction","Fixed Asset","101000","121.50","5761026.61" +"850HWQ662G","DDC","Department of Design and Construction","Fixed Asset","23465000","952510.47","2345471.11" +"850HWQ976","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HWQSE877","DDC","Department of Design and Construction","Fixed Asset","61253000","1465045.24","917048.76" +"850HWR200309","DDC","Department of Design and Construction","Fixed Asset","288000","0","0" +"850HWS2003Q2","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3297363.96" +"850HWS2003Q3","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3375981.65" +"850HWS2003X","DDC","Department of Design and Construction","Fixed Asset","57000","28748.66","3393176.47" +"850HWS2005Q2","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3146549.31" +"850HWS2006Q2","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3039673.32" +"850HWS2008M","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3291703.45" +"850HWS2008X","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3283121.14" +"850HWS2009DS","DDC","Department of Design and Construction","Fixed Asset","0","0.00","1539796.15" +"850HWS2009K","DDC","Department of Design and Construction","Fixed Asset","0","226870.06","3211008.89" +"850HWS2009X","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3553131.13" +"850HWS2012CW","DDC","Department of Design and Construction","Fixed Asset","0","3770.38","3757970.60" +"850HWS2013R","DDC","Department of Design and Construction","Fixed Asset","0","301.98","2594951.03" +"850HWS2014X","DDC","Department of Design and Construction","Fixed Asset","179000","26681.88","3966566.95" +"850HWS2016K1","DDC","Department of Design and Construction","Fixed Asset","1000","298586.87","29645600.74" +"850HWS2019M","DDC","Department of Design and Construction","Fixed Asset","1000","190127.74","3410062.26" +"850HWS2020K1","DDC","Department of Design and Construction","Fixed Asset","721000","1103107.71","7083333.13" +"850HWS2020K2","DDC","Department of Design and Construction","Fixed Asset","701000","520909.46","6931567.45" +"850HWS2020Q1","DDC","Department of Design and Construction","Fixed Asset","605000","1438457.60","6644970.40" +"850HWS2020Q2","DDC","Department of Design and Construction","Fixed Asset","300000","1368804.70","5985090.73" +"850HWS2020R","DDC","Department of Design and Construction","Fixed Asset","300000","535243.80","4403941.66" +"850HWS2020X","DDC","Department of Design and Construction","Fixed Asset","640000","887534.15","4869855.20" +"850HWS2020XM","DDC","Department of Design and Construction","Fixed Asset","216000","199728.29","4539307.53" +"850HWS2021K","DDC","Department of Design and Construction","Fixed Asset","1051000","713955.50","7808667.50" +"850LN18MRBOI","DDC","Department of Design and Construction","Fixed Asset","0","217063.04","229960.17" +"850HWS2021Q","DDC","Department of Design and Construction","Fixed Asset","461000","2915004.16","7493353.34" +"850HWS2021R","DDC","Department of Design and Construction","Fixed Asset","624000","291184.63","4395739.57" +"850HWS2021X","DDC","Department of Design and Construction","Fixed Asset","269000","94594.28","2669561.41" +"850HWS2021XM","DDC","Department of Design and Construction","Fixed Asset","317000","1538907.62","3558213.32" +"850HWS2023K","DDC","Department of Design and Construction","Fixed Asset","641000","3533676.26","8208169.34" +"850HWS2023M","DDC","Department of Design and Construction","Fixed Asset","253000","2295491.86","5291775.57" +"850HWS2023Q","DDC","Department of Design and Construction","Fixed Asset","1234000","5467793.26","8065287.39" +"850HWS2023R","DDC","Department of Design and Construction","Fixed Asset","482000","3548179.00","1644783.50" +"850HWS2023X","DDC","Department of Design and Construction","Fixed Asset","454000","4805294.80","2615781.69" +"850HWS2024K1","DDC","Department of Design and Construction","Fixed Asset","3810000","12635768.23","1707483.07" +"850HWS2024M1","DDC","Department of Design and Construction","Fixed Asset","2436000","8283486.02","68859.78" +"850HWS2024Q1","DDC","Department of Design and Construction","Fixed Asset","6933000","16363936.18","82909.17" +"850HWS2024R1","DDC","Department of Design and Construction","Fixed Asset","4651000","6017029.38","113678.54" +"850HWS2024X1","DDC","Department of Design and Construction","Fixed Asset","2816000","5037713.60","3042400.55" +"850HWS2025K","DDC","Department of Design and Construction","Fixed Asset","16444000","0","0" +"850HWS2025M","DDC","Department of Design and Construction","Fixed Asset","7638000","0","0" +"850HWS2025Q","DDC","Department of Design and Construction","Fixed Asset","20149000","0","0" +"850HWS2025R","DDC","Department of Design and Construction","Fixed Asset","5931000","0","0" +"850HWS2025X","DDC","Department of Design and Construction","Fixed Asset","9382000","0","0" +"850HWS23QMWB","DDC","Department of Design and Construction","Fixed Asset","2000","116010.51","1516514.77" +"850HWTRK883","DDC","Department of Design and Construction","Fixed Asset","6385000","143341.89","106054.12" +"850LNC005CC1","DDC","Department of Design and Construction","Fixed Asset","0","0.00","1198924.58" +"850LNCA10115","DDC","Department of Design and Construction","Fixed Asset","949000","322382.86","4399656.40" +"850LNCA16WH1","DDC","Department of Design and Construction","Fixed Asset","60000","0","0" +"850LBK16SCRF","DDC","Department of Design and Construction","Fixed Asset","13962000","151641.04","98358.96" +"850LBK16STRF","DDC","Department of Design and Construction","Fixed Asset","177000","0.00","1116523.13" +"850LBK22BRHC","DDC","Department of Design and Construction","Fixed Asset","4851000","924811.98","351146.02" +"850LBM17ARBR","DDC","Department of Design and Construction","Fixed Asset","14855000","295722.53","1926441.06" +"850LBM18EPOH","DDC","Department of Design and Construction","Fixed Asset","6594000","28265907.02","5156762.67" +"850LBM19BPLB","DDC","Department of Design and Construction","Fixed Asset","250000","1293755.94","4479994.06" +"850LBP18LDIN","DDC","Department of Design and Construction","Fixed Asset","7345000","412635.31","695459.69" +"850LBP21WIBR","DDC","Department of Design and Construction","Fixed Asset","13387000","1114460.21","1932318.87" +"850LN18ALELE","DDC","Department of Design and Construction","Fixed Asset","2613000","73238.80","688454.97" +"850LN18HGHVA","DDC","Department of Design and Construction","Fixed Asset","7286000","682469.14","627488.86" +"850PWDNDSTN2","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850LN25WTSNB","DDC","Department of Design and Construction","Fixed Asset","32545000","780762.70","343245.30" +"850LNCA08BEL","DDC","Department of Design and Construction","Fixed Asset","2000","1513.53","1791540.97" +"850LQC122AC4","DDC","Department of Design and Construction","Fixed Asset","0","0.00","472788.71" +"850LQHP-REM","DDC","Department of Design and Construction","Fixed Asset","78000","6446.74","1270177.26" +"850LQQ122-1E","DDC","Department of Design and Construction","Fixed Asset","25000","72806.21","39456844.35" +"850LNLCGAGLR","DDC","Department of Design and Construction","Fixed Asset","4525000","4435458","0" +"850LNRA17NDP","DDC","Department of Design and Construction","Fixed Asset","2100000","1835997.52","4430807.43" +"850LNXA20WKF","DDC","Department of Design and Construction","Fixed Asset","3945000","373009.77","1015019.23" +"850LQAUB-RG","DDC","Department of Design and Construction","Fixed Asset","129000","0","0" +"850LQBPEXPN","DDC","Department of Design and Construction","Fixed Asset","1962000","11138458.68","4494145.40" +"850LQBTRENOV","DDC","Department of Design and Construction","Fixed Asset","410000","1039624.2","2088502.8" +"850LQBW-EXP","DDC","Department of Design and Construction","Fixed Asset","19925000","1045547.73","2277253.92" +"850LQC122HT5","DDC","Department of Design and Construction","Fixed Asset","0","0.00","459958.11" +"850LQC122-JH","DDC","Department of Design and Construction","Fixed Asset","40404000","1447840.64","3274881.59" +"850LQCA19QVB","DDC","Department of Design and Construction","Fixed Asset","29454000","252241.41","38713.61" +"850LQCA19WSD","DDC","Department of Design and Construction","Fixed Asset","15411000","1899880.03","34600.5" +"850LQCLDC-CE","DDC","Department of Design and Construction","Fixed Asset","29000","0","0" +"850LQCORENOV","DDC","Department of Design and Construction","Fixed Asset","43952000","296939.56","67052.69" +"850LQD122BCE","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850LQD122LAE","DDC","Department of Design and Construction","Fixed Asset","15690000","421055.17","2128134.12" +"850LQDL-NEW","DDC","Department of Design and Construction","Fixed Asset","39664000","30975340.29","3193038.95" +"850LQEM19BPK","DDC","Department of Design and Construction","Fixed Asset","100000","22548.49","1094275.33" +"850LQEM19FFA","DDC","Department of Design and Construction","Fixed Asset","2104000","1605789.60","5688168.62" +"850MED-609","DDC","Department of Design and Construction","Fixed Asset","263000","17604502.75","87377073.30" +"850MED-611","DDC","Department of Design and Construction","Fixed Asset","4712000","0","0" +"850MED-619","DDC","Department of Design and Construction","Fixed Asset","26671000","855886.29","2268096.89" +"850MED-667","DDC","Department of Design and Construction","Fixed Asset","17597000","74304.24","69695.76" +"850MED-668","DDC","Department of Design and Construction","Fixed Asset","214000","193088.07","1077834.60" +"850MED-670","DDC","Department of Design and Construction","Fixed Asset","3433000","132434.04","267565.96" +"850MED674","DDC","Department of Design and Construction","Fixed Asset","14303000","0","0" +"850MED683","DDC","Department of Design and Construction","Fixed Asset","6993000","189186.95","218813.05" +"850MED685","DDC","Department of Design and Construction","Fixed Asset","13746000","0","0" +"850MED688","DDC","Department of Design and Construction","Fixed Asset","3820000","0","0" +"850MED690","DDC","Department of Design and Construction","Fixed Asset","3537000","0","0" +"850MIBBNC05","DDC","Department of Design and Construction","Fixed Asset","0","5814022.66","25989714.54" +"850NDF-BSIMP","DDC","Department of Design and Construction","Fixed Asset","11400000","0","0" +"850NDF-IBZ","DDC","Department of Design and Construction","Fixed Asset","26517000","157243.05","1970257.86" +"850NDF-IW10A","DDC","Department of Design and Construction","Fixed Asset","26500000","0","0" +"850NDF-IWHRG","DDC","Department of Design and Construction","Fixed Asset","0","883547.8","616452.2" +"850NICKSALIC","DDC","Department of Design and Construction","Fixed Asset","443000","0","0" +"850P-4RCKGHQ","DDC","Department of Design and Construction","Fixed Asset","3947000","215440.32","2500" +"850PDN15NYRP","DDC","Department of Design and Construction","Fixed Asset","0","0","83902" +"850PS-348A","DDC","Department of Design and Construction","Fixed Asset","1194000","0","0" +"850PU272BLR","DDC","Department of Design and Construction","Fixed Asset","7425000",, +"850P-4FTTOTE","DDC","Department of Design and Construction","Fixed Asset","4855000","887962.33","350210.99" +"850PO79BMAHE","DDC","Department of Design and Construction","Fixed Asset","35000","150321.59","1593593.62" +"850PO79BMAJU","DDC","Department of Design and Construction","Fixed Asset","4105000","4292709.02","11685787.39" +"850PO79FDBNX","DDC","Department of Design and Construction","Fixed Asset","493000","95613.48","2655137.52" +"850PV304AAD","DDC","Department of Design and Construction","Fixed Asset","58133000","45872188.18","11120811.82" +"850PV304-CPG","DDC","Department of Design and Construction","Fixed Asset","8000","207101.94","2310164.86" +"850PV304EJFA","DDC","Department of Design and Construction","Fixed Asset","156000","1406470.45","2515098.55" +"850PV354BETT","DDC","Department of Design and Construction","Fixed Asset","11084000","10865549","0" +"850PV362STA2","DDC","Department of Design and Construction","Fixed Asset","0","0.00","580549.65" +"850PV375PRPT","DDC","Department of Design and Construction","Fixed Asset","620000",, +"850PV375ROOF","DDC","Department of Design and Construction","Fixed Asset","2000","94850","942150" +"850PV381EAST","DDC","Department of Design and Construction","Fixed Asset","130000","1088000","0" +"850PV381-WPM","DDC","Department of Design and Construction","Fixed Asset","0","0","4193420" +"850PV394AMBR","DDC","Department of Design and Construction","Fixed Asset","11400000","627487.36","2316278.66" +"850PV466BOIL","DDC","Department of Design and Construction","Fixed Asset","1456000","4218417.59","1447710.56" +"850PV467GUG6","DDC","Department of Design and Construction","Fixed Asset","1570000","1559000","0" +"850PV467WFAC","DDC","Department of Design and Construction","Fixed Asset","1557000","820862.15","5750633.04" +"850PV475ROOF","DDC","Department of Design and Construction","Fixed Asset","14520000","726199.51","1628992.99" +"850PV477TEMP","DDC","Department of Design and Construction","Fixed Asset","1100000","308919.51","7576859.34" +"850PV490-C","DDC","Department of Design and Construction","Fixed Asset","615000","66404.13","3559497.30" +"850PV490JNFC","DDC","Department of Design and Construction","Fixed Asset","5734000","154311.36","1382587.64" +"850PV502-SDW","DDC","Department of Design and Construction","Fixed Asset","6371000","326892.01","1129855.52" +"850PW9NYU370","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850PW9RAIN20","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850PWARMTRK1","DDC","Department of Design and Construction","Fixed Asset","1821000","0","0" +"850PWBXCRC","DDC","Department of Design and Construction","Fixed Asset","750000","0","0" +"850PWDCORONY","DDC","Department of Design and Construction","Fixed Asset","0","0","154945" +"850PWDFLYMCA","DDC","Department of Design and Construction","Fixed Asset","1001000","0","0" +"850PWDGLWDNF","DDC","Department of Design and Construction","Fixed Asset","489000","0","0" +"850PWDNBRSIS","DDC","Department of Design and Construction","Fixed Asset","0","0.00","18043.89" +"850PWDNGRAND","DDC","Department of Design and Construction","Fixed Asset","127000","0","0" +"850PWDPCPLE","DDC","Department of Design and Construction","Fixed Asset","1163000","0","0" +"850PWKNDNALC","DDC","Department of Design and Construction","Fixed Asset","0","0","444614" +"850PWKNDUFLD","DDC","Department of Design and Construction","Fixed Asset","218000","159713","0" +"850PW29380FC","DDC","Department of Design and Construction","Fixed Asset","49595000","1140276.73","2511371.43" +"850PW316EL","DDC","Department of Design and Construction","Fixed Asset","58095000","7983931.55","160000" +"850PW348-51","DDC","Department of Design and Construction","Fixed Asset","34000","26897.55","28932714.41" +"850PW348-81","DDC","Department of Design and Construction","Fixed Asset","200000","21570798.32","4417321.27" +"850PW348-82","DDC","Department of Design and Construction","Fixed Asset","1684000","9300115.31","16645041.79" +"850PW348-83","DDC","Department of Design and Construction","Fixed Asset","500000","16541547.72","9420428.38" +"850PW348-84","DDC","Department of Design and Construction","Fixed Asset","1796000","13355573.30","11672350.13" +"850PW357ELC2","DDC","Department of Design and Construction","Fixed Asset","33260000","0","0" +"850PW357STM2","DDC","Department of Design and Construction","Fixed Asset","6101000","0","110000" +"850PW357VAUL","DDC","Department of Design and Construction","Fixed Asset","20253000","3291144.77","337217.78" +"850PW77102S3","DDC","Department of Design and Construction","Fixed Asset","271000","225602.79","6337130.13" +"850PWMNCOHIC","DDC","Department of Design and Construction","Fixed Asset","400000","0","0" +"850PWMNCOHNY","DDC","Department of Design and Construction","Fixed Asset","1702000","1462139","0" +"850PWMSOLAR","DDC","Department of Design and Construction","Fixed Asset","81000","0","0" +"850PWQYMCA","DDC","Department of Design and Construction","Fixed Asset","250000","0","0" +"850PWXFITWEL","DDC","Department of Design and Construction","Fixed Asset","100000","0","0" +"850PWXNMUSIH","DDC","Department of Design and Construction","Fixed Asset","350000","0","0" +"850QED-1023B","DDC","Department of Design and Construction","Fixed Asset","231000","6364798.45","49718360.07" +"850QED-1027","DDC","Department of Design and Construction","Fixed Asset","42677000","582796.95","2639875.3" +"850QED1040B","DDC","Department of Design and Construction","Fixed Asset","19475000","61364.45","576635.55" +"850QED-1042B","DDC","Department of Design and Construction","Fixed Asset","72274000","123987.56","150217.50" +"850QED-1044","DDC","Department of Design and Construction","Fixed Asset","600000","223664.35","5098350.71" +"850QED1061","DDC","Department of Design and Construction","Fixed Asset","8240000","0","0" +"850QED1062","DDC","Department of Design and Construction","Fixed Asset","1591000","467881.47","154283.12" +"850RED-372","DDC","Department of Design and Construction","Fixed Asset","300000","0","150000" +"850RED-381","DDC","Department of Design and Construction","Fixed Asset","500000","516673.18","1471026.13" +"850RED-386","DDC","Department of Design and Construction","Fixed Asset","599000","3404117.44","6672823.90" +"850SAND669C","DDC","Department of Design and Construction","Fixed Asset","840000","491377.02","6932514.18" +"850SANDBCHCM","DDC","Department of Design and Construction","Fixed Asset","0","27760.29","11429990.69" +"850SEX002274","DDC","Department of Design and Construction","Fixed Asset","16029000","16482.03","210517.97" +"850PWQMAHVAC","DDC","Department of Design and Construction","Fixed Asset","4419000","1005708.97","368102.1" +"850SANDLESEC","DDC","Department of Design and Construction","Fixed Asset","6270000","0","0" +"850SANDY4-30","DDC","Department of Design and Construction","Fixed Asset","51000","1339849.99","290922.01" +"850SE-740B","DDC","Department of Design and Construction","Fixed Asset","14041000","41887.00","706510.52" +"850SE-811","DDC","Department of Design and Construction","Fixed Asset","3577000","12972215.91","58546166.37" +"850SE-824","DDC","Department of Design and Construction","Fixed Asset","143654000","97116.63","1642883.37" +"850SE-825","DDC","Department of Design and Construction","Fixed Asset","113557000","0.0","15272.0" +"850SE-829","DDC","Department of Design and Construction","Fixed Asset","31915000","0","0" +"850SE-834","DDC","Department of Design and Construction","Fixed Asset","0","0.00","270996.58" +"850SECBK1","DDC","Department of Design and Construction","Fixed Asset","71000","0.00","3299696.19" +"850SECBMTAQ1","DDC","Department of Design and Construction","Fixed Asset","2000","0.00","1862774.28" +"850SECBX1","DDC","Department of Design and Construction","Fixed Asset","87000","10.00","4543735.26" +"850SECUREDET","DDC","Department of Design and Construction","Fixed Asset","24000000","0","0" +"850SE-GUN-20","DDC","Department of Design and Construction","Fixed Asset","765000","0.00","11373158.01" +"850SEK002390","DDC","Department of Design and Construction","Fixed Asset","166000","882300","0" +"850SEK002398","DDC","Department of Design and Construction","Fixed Asset","6861000","0","0" +"850SEN20008","DDC","Department of Design and Construction","Fixed Asset","8425000","0","101000" +"850SEQ002642","DDC","Department of Design and Construction","Fixed Asset","87000","0.00","1036005.11" +"850SEQ200341","DDC","Department of Design and Construction","Fixed Asset","155000","78000.00","11862636.84" +"850SEQ200398","DDC","Department of Design and Construction","Fixed Asset","20000","0.00","1504854.26" +"850SEQ200595","DDC","Department of Design and Construction","Fixed Asset","900000","0","0" +"850SEQBN11","DDC","Department of Design and Construction","Fixed Asset","0","0.00","14023833.23" +"850SEQNS006","DDC","Department of Design and Construction","Fixed Asset","488000","0","0" +"850SER0201ZB","DDC","Department of Design and Construction","Fixed Asset","-266000","12020.46","10592240.97" +"850SER200322","DDC","Department of Design and Construction","Fixed Asset","96170000","230142.17","119857.83" +"850SETVDDC18","DDC","Department of Design and Construction","Fixed Asset","4080000","0","0" +"850SEX002275","DDC","Department of Design and Construction","Fixed Asset","1555000","1412047.14","613054.27" +"850SEX0201ZC","DDC","Department of Design and Construction","Fixed Asset","0","60476.74","13139360.34" +"850SEX20049","DDC","Department of Design and Construction","Fixed Asset","1583000","59351.88","64688.06" +"850SOLARDOS1","DDC","Department of Design and Construction","Fixed Asset","156000","2914418.42","5680812.00" +"850SOLARGR10","DDC","Department of Design and Construction","Fixed Asset","672000","91209.69","7719847.30" +"856110WLM","DCAS","Department of Citywide Administrative Services","Fixed Asset","1000","9976703.00","33016184.00" +"85629202604","DCAS","Department of Citywide Administrative Services","Fixed Asset","19920000","0","0" +"85652CHAMELV","DCAS","Department of Citywide Administrative Services","Fixed Asset","25908000","0","0" +"85670MULB1","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","5286.19","4363747.81" +"8569605RENEW","DCAS","Department of Citywide Administrative Services","Fixed Asset","1137000","0","0" +"856ACEDCA214","DCAS","Department of Citywide Administrative Services","Fixed Asset","22297000","0","0" +"856ACEDCA221","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEDCA222","DCAS","Department of Citywide Administrative Services","Fixed Asset","877000","0","0" +"856ACEDCA223","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEDCA241","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEDCA501","DCAS","Department of Citywide Administrative Services","Fixed Asset","9746000","0","0" +"856ACEDEP211","DCAS","Department of Citywide Administrative Services","Fixed Asset","31625000","0","0" +"856ACEDEP212","DCAS","Department of Citywide Administrative Services","Fixed Asset","4777000","0","0" +"856ACEDEP213","DCAS","Department of Citywide Administrative Services","Fixed Asset","10000000","0","0" +"856ACEDEP221","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEDEP231","DCAS","Department of Citywide Administrative Services","Fixed Asset","14201000","0","0" +"856ACEDFM241","DCAS","Department of Citywide Administrative Services","Fixed Asset","40278000","0","0" +"856ACEDFM242","DCAS","Department of Citywide Administrative Services","Fixed Asset","3001000","0","0" +"856ACEDOE607","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","201013.32","817087.68" +"856ACEDOS201","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEDOT211","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEDPR223","DCAS","Department of Citywide Administrative Services","Fixed Asset","700000","0","0" +"856ACEFDN251","DCAS","Department of Citywide Administrative Services","Fixed Asset","1409000","0","0" +"856ACEFIT211","DCAS","Department of Citywide Administrative Services","Fixed Asset","591000","2074877","0" +"856ACENPL231","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856ACEPOL251","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856AG01NELS","DCAS","Department of Citywide Administrative Services","Fixed Asset","1090000","446267","0" +"856AGCASAOAC","DCAS","Department of Citywide Administrative Services","Fixed Asset","5106000","0","0" +"856AGHQ","DCAS","Department of Citywide Administrative Services","Fixed Asset","30874000","0","0" +"856APIDCAS02","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856BXCONSOL","DCAS","Department of Citywide Administrative Services","Fixed Asset","1279000","331754.70","6153319.45" +"856C75BULOVA","DCAS","Department of Citywide Administrative Services","Fixed Asset","1016000","0","0" +"856CO264DCAS","DCAS","Department of Citywide Administrative Services","Fixed Asset","99334000","0","0" +"856CO264MISC","DCAS","Department of Citywide Administrative Services","Fixed Asset","1315732000","0","0" +"856CO264MN60","DCAS","Department of Citywide Administrative Services","Fixed Asset","390404000","0","0" +"856CO277ADA","DCAS","Department of Citywide Administrative Services","Fixed Asset","154000","17294.66","328598.62" +"856CO278ADA1","DCAS","Department of Citywide Administrative Services","Fixed Asset","23189000","151281.73","774718.27" +"856CO281ADA","DCAS","Department of Citywide Administrative Services","Fixed Asset","384000","5764.89","109532.87" +"856CO281EX","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO283DANY","DCAS","Department of Citywide Administrative Services","Fixed Asset","2000000","0","0" +"856CO283RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","6107000","291108.8","468691.2" +"856CO288MS4","DCAS","Department of Citywide Administrative Services","Fixed Asset","1310000","0","0" +"856CO293FMBO","DCAS","Department of Citywide Administrative Services","Fixed Asset","600000","0","0" +"856CO294CTRC","DCAS","Department of Citywide Administrative Services","Fixed Asset","2000","2104765","793238" +"856CO296EV1","DCAS","Department of Citywide Administrative Services","Fixed Asset","38447000","0","0" +"856CO298HEAR","DCAS","Department of Citywide Administrative Services","Fixed Asset","6855000","0","0" +"856CO298RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","15774000","559936.8","415063.2" +"856CO299RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","12461000","0","0" +"856CO304RF1","DCAS","Department of Citywide Administrative Services","Fixed Asset","10127000","5240823.1","0" +"856CO306FASP","DCAS","Department of Citywide Administrative Services","Fixed Asset","13450000","0","0" +"856CO264BKCV","DCAS","Department of Citywide Administrative Services","Fixed Asset","27574000","65199263.36","202218474.91" +"856CO272CHIL","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO278RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO287R-1","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.00","5726134.50" +"856CO295ROOF","DCAS","Department of Citywide Administrative Services","Fixed Asset","1710000","191759.35","3240.65" +"856CO298CHIL","DCAS","Department of Citywide Administrative Services","Fixed Asset","37291000","969336.91","642716.09" +"856CO299CHIL","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CO300RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","6485000","0","0" +"856CO309BCC","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","8100000" +"856CO30JAYCT","DCAS","Department of Citywide Administrative Services","Fixed Asset","5001000","0","0" +"856CO79APPE","DCAS","Department of Citywide Administrative Services","Fixed Asset","927000","2465425.90","1468316.27" +"856COD220MCA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856COD294CBG","DCAS","Department of Citywide Administrative Services","Fixed Asset","50000","0","0" +"856CO-HVAC","DCAS","Department of Citywide Administrative Services","Fixed Asset","7088000","0","0" +"856CO-LL5","DCAS","Department of Citywide Administrative Services","Fixed Asset","6081000","0","0" +"856CO-LL5FS","DCAS","Department of Citywide Administrative Services","Fixed Asset","5909000","0","0" +"856CO-ROOF","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856CS5YFJX","DCAS","Department of Citywide Administrative Services","Fixed Asset","5232000","0.00","208351.00" +"856DEP-LAB","DCAS","Department of Citywide Administrative Services","Fixed Asset","126601000","0","0" +"856E09-0006A","DCAS","Department of Citywide Administrative Services","Fixed Asset","73000","828972","0" +"856E10-00004","DCAS","Department of Citywide Administrative Services","Fixed Asset","965000","6471649.41","12848071.03" +"856E19-0002","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","18679.13","186992.87" +"856E21-0003","DCAS","Department of Citywide Administrative Services","Fixed Asset","34777000","49137998.02","2983606.02" +"856E21-0006","DCAS","Department of Citywide Administrative Services","Fixed Asset","575000","8126626.81","0" +"856E21-0007","DCAS","Department of Citywide Administrative Services","Fixed Asset","17314000","16375970.45","1991227.55" +"856E21-0010","DCAS","Department of Citywide Administrative Services","Fixed Asset","70816000","394665","597507" +"856E23-0001","DCAS","Department of Citywide Administrative Services","Fixed Asset","8710000","44770286","0" +"856E23-0002","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856E23-0004","DCAS","Department of Citywide Administrative Services","Fixed Asset","26511000","904543.4","487742.6" +"856E23-0005","DCAS","Department of Citywide Administrative Services","Fixed Asset","28211000","621540.68","476776.32" +"856E24-0001","DCAS","Department of Citywide Administrative Services","Fixed Asset","9063000","0","0" +"856E24-0003","DCAS","Department of Citywide Administrative Services","Fixed Asset","2266000","2102285.43","0" +"856E24-0006","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856E24-0007","DCAS","Department of Citywide Administrative Services","Fixed Asset","6563000","0","0" +"856E24-0008","DCAS","Department of Citywide Administrative Services","Fixed Asset","2801000","0","0" +"856E24-0010","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856E24-0011","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856E24-DCAS1","DCAS","Department of Citywide Administrative Services","Fixed Asset","5797000","51399980.43","0" +"856E24-DOE01","DCAS","Department of Citywide Administrative Services","Fixed Asset","3031000","15862580.72","14348169.49" +"856E24-DOE02","DCAS","Department of Citywide Administrative Services","Fixed Asset","8519000","49924467.75","19100573.39" +"856E24-DSNY1","DCAS","Department of Citywide Administrative Services","Fixed Asset","1604000","15500665.73","0" +"856E24-NYPD1","DCAS","Department of Citywide Administrative Services","Fixed Asset","5850000","0","0" +"856E25-0001","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856E25-DOE01","DCAS","Department of Citywide Administrative Services","Fixed Asset","4823000","53459498.74","0" +"856E25-DOE02","DCAS","Department of Citywide Administrative Services","Fixed Asset","6000000","53984548","0" +"856E25-DOE03","DCAS","Department of Citywide Administrative Services","Fixed Asset","70800000","39164966.74","0" +"856E26-DB01","DCAS","Department of Citywide Administrative Services","Fixed Asset","35000000","0","0" +"856E26-DHS01","DCAS","Department of Citywide Administrative Services","Fixed Asset","5316000","0","0" +"856E26-DOE01","DCAS","Department of Citywide Administrative Services","Fixed Asset","75000000","0","0" +"856E26-DOE02","DCAS","Department of Citywide Administrative Services","Fixed Asset","75000000","0","0" +"856E26-DOE03","DCAS","Department of Citywide Administrative Services","Fixed Asset","100000000","0","0" +"856E26-DOT01","DCAS","Department of Citywide Administrative Services","Fixed Asset","2750000","0","0" +"856EO26-0017","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","113143" +"856EO26-0018","DCAS","Department of Citywide Administrative Services","Fixed Asset","4200000","0","0" +"856EO26-0019","DCAS","Department of Citywide Administrative Services","Fixed Asset","211000","575898","2282991" +"856EO26-0026","DCAS","Department of Citywide Administrative Services","Fixed Asset","4548000","0","0" +"856EO26-0032","DCAS","Department of Citywide Administrative Services","Fixed Asset","28000","50306.52","311668.48" +"856EO26-0035","DCAS","Department of Citywide Administrative Services","Fixed Asset","43000","174136","0" +"856EO26-0037","DCAS","Department of Citywide Administrative Services","Fixed Asset","21000","621163","0" +"856EO26-0041","DCAS","Department of Citywide Administrative Services","Fixed Asset","103000","160881.11","1195700.89" +"856EO26-0042","DCAS","Department of Citywide Administrative Services","Fixed Asset","619000","9181275","0" +"856EO26-0046","DCAS","Department of Citywide Administrative Services","Fixed Asset","389000","5035072.08","0" +"856EO26-0054","DCAS","Department of Citywide Administrative Services","Fixed Asset","5422000","0","0" +"856EO26-0055","DCAS","Department of Citywide Administrative Services","Fixed Asset","29000","312100","0" +"856EO26-0078","DCAS","Department of Citywide Administrative Services","Fixed Asset","35000","352990","0" +"856EO26-0080","DCAS","Department of Citywide Administrative Services","Fixed Asset","28000","386609","0" +"856EO26-0081","DCAS","Department of Citywide Administrative Services","Fixed Asset","95000","1345930","0" +"856EO26-0083","DCAS","Department of Citywide Administrative Services","Fixed Asset","24000","338240","0" +"856EO26-0088","DCAS","Department of Citywide Administrative Services","Fixed Asset","31000","398570","0" +"856EO26-0089","DCAS","Department of Citywide Administrative Services","Fixed Asset","24000","262910","0" +"856EO26-0090","DCAS","Department of Citywide Administrative Services","Fixed Asset","10000","143911","0" +"856EO26-0091","DCAS","Department of Citywide Administrative Services","Fixed Asset","6000","78545","0" +"856EO26-0092","DCAS","Department of Citywide Administrative Services","Fixed Asset","1516000","21947976.24","1300637.14" +"856EO26-0093","DCAS","Department of Citywide Administrative Services","Fixed Asset","3501000","7581001","0" +"856HL82RELOC","DCAS","Department of Citywide Administrative Services","Fixed Asset","1613000","901850","0" +"856HL82WAREH","DCAS","Department of Citywide Administrative Services","Fixed Asset","418000","1637179","150000" +"856HR258AVEC","DCAS","Department of Citywide Administrative Services","Fixed Asset","8098000","0","0" +"856HR25LIBF","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856HR25QCRT","DCAS","Department of Citywide Administrative Services","Fixed Asset","937000","2610686.47","174016.00" +"856HWHARPERG","DCAS","Department of Citywide Administrative Services","Fixed Asset","336000","0","0" +"856HWMFCNTR","DCAS","Department of Citywide Administrative Services","Fixed Asset","56616000","4508816.28","592592.72" +"856HWQF3108","DCAS","Department of Citywide Administrative Services","Fixed Asset","6493000","0","0" +"856HWRFPATH","DCAS","Department of Citywide Administrative Services","Fixed Asset","3239000","0","0" +"856LBC22KBIF","DCAS","Department of Citywide Administrative Services","Fixed Asset","123000","0","0" +"856LQBW-EXP","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856LQD122LAE","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856LQMARN-23","DCAS","Department of Citywide Administrative Services","Fixed Asset","308000","0","0" +"856LQSHRN-23","DCAS","Department of Citywide Administrative Services","Fixed Asset","426000","0","0" +"856LQSZ-RENO","DCAS","Department of Citywide Administrative Services","Fixed Asset","240000","0","0" +"856MICROHM","DCAS","Department of Citywide Administrative Services","Fixed Asset","3028000",, +"856NEWHJC2","DCAS","Department of Citywide Administrative Services","Fixed Asset","3155000","0","0" +"856P0950DPR","DCAS","Department of Citywide Administrative Services","Fixed Asset","2078000","4644280.28","3813141.42" +"856P-1SDVREC","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856P-404HOPK","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PO79-375P","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.00","14706537.58" +"856PO79BOMB","DCAS","Department of Citywide Administrative Services","Fixed Asset","226000","5484157.04","9707040.68" +"856PO79BSVD","DCAS","Department of Citywide Administrative Services","Fixed Asset","330000","2521491.60","3357976.96" +"856PO79QDBR","DCAS","Department of Citywide Administrative Services","Fixed Asset","6000","1094092.20","1190889.18" +"856PO79QNTE","DCAS","Department of Citywide Administrative Services","Fixed Asset","4501000","0","0" +"856PO79-QSVD","DCAS","Department of Citywide Administrative Services","Fixed Asset","672000","3252484.21","0" +"856PO79SIMD","DCAS","Department of Citywide Administrative Services","Fixed Asset","2000","1390867.25","2590004.03" +"856PO79SRG1","DCAS","Department of Citywide Administrative Services","Fixed Asset","123000","1678334.13","5558754.95" +"856PO79TEDR","DCAS","Department of Citywide Administrative Services","Fixed Asset","576000","1989949.11","1627103.86" +"856PO79WTC","DCAS","Department of Citywide Administrative Services","Fixed Asset","74000","915107.13","3421365.83" +"856PT195-VAR","DCAS","Department of Citywide Administrative Services","Fixed Asset","3307000","1.00","1778713.80" +"856PW193CP","DCAS","Department of Citywide Administrative Services","Fixed Asset","4666000","467000","0" +"856PW193ELV","DCAS","Department of Citywide Administrative Services","Fixed Asset","85109000","2940900","2563100" +"856PW193TOW","DCAS","Department of Citywide Administrative Services","Fixed Asset","25678000","0","0" +"856PW195ADA","DCAS","Department of Citywide Administrative Services","Fixed Asset","3200000","286614.12","63875" +"856PW195GARB","DCAS","Department of Citywide Administrative Services","Fixed Asset","2321000","0","0" +"856PW195RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","12455000","0","0" +"856PW266DER","DCAS","Department of Citywide Administrative Services","Fixed Asset","22091000","6005410","0" +"856PW266FE","DCAS","Department of Citywide Administrative Services","Fixed Asset","1075000","125322.8","29677.2" +"856PW282253B","DCAS","Department of Citywide Administrative Services","Fixed Asset","693000","478485.70","328598.62" +"856PW282-2L","DCAS","Department of Citywide Administrative Services","Fixed Asset","12000000","1201186","298814" +"856PW28280C","DCAS","Department of Citywide Administrative Services","Fixed Asset","9252000","272348","227652" +"856PW291EV","DCAS","Department of Citywide Administrative Services","Fixed Asset","2398000","1711503.42","1057496.58" +"856PW2931C2","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW293280A","DCAS","Department of Citywide Administrative Services","Fixed Asset","1327000","168284","0" +"856PW293GLDS","DCAS","Department of Citywide Administrative Services","Fixed Asset","7459000","418095.00","203832.53" +"856PW293VETH","DCAS","Department of Citywide Administrative Services","Fixed Asset","4796000","0","0" +"856PW308PS1","DCAS","Department of Citywide Administrative Services","Fixed Asset","673000","0","418010" +"856PO79189M","DCAS","Department of Citywide Administrative Services","Fixed Asset","-230000","0.00","2892179.94" +"856PW322FL12","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","569467.88","7096450.34" +"856PW322PLA6","DCAS","Department of Citywide Administrative Services","Fixed Asset","162000","6146501.82","31610267.92" +"856PW322X7R","DCAS","Department of Citywide Administrative Services","Fixed Asset","1898000","0","0" +"856PW324CLIP","DCAS","Department of Citywide Administrative Services","Fixed Asset","10468000","8792790.72","95750.4" +"856PW324IPIS","DCAS","Department of Citywide Administrative Services","Fixed Asset","2713000","4106715.77","7213799.04" +"856PW324SERR","DCAS","Department of Citywide Administrative Services","Fixed Asset","1432000","0","0" +"856PW324UP24","DCAS","Department of Citywide Administrative Services","Fixed Asset","63000","31363","305862" +"856PW325EV","DCAS","Department of Citywide Administrative Services","Fixed Asset","2225000","110949.73","234555.55" +"856PW326BKDA","DCAS","Department of Citywide Administrative Services","Fixed Asset","8889000","0","0" +"856PW326C104","DCAS","Department of Citywide Administrative Services","Fixed Asset","88000","47318.25","0" +"856PW326CB17","DCAS","Department of Citywide Administrative Services","Fixed Asset","465000","0","0" +"856PW326DAK1","DCAS","Department of Citywide Administrative Services","Fixed Asset","1863000","15635600.96","1061164.15" +"856PW326DAK2","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","2334274.66","7181649.93" +"856PW326DAQ4","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","3787087.88","3018077.24" +"856PW326DCP1","DCAS","Department of Citywide Administrative Services","Fixed Asset","800000","0","0" +"856PW326DCPK","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","35262.14","901497.84" +"856PW326DOF9","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.00","210503.74" +"856PW326DOI6","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","60404.20","25802551.89" +"856PW326DOPQ","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW326DOR2","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.00","19185317.79" +"856PW326DRIV","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW326LAW7","DCAS","Department of Citywide Administrative Services","Fixed Asset","13182000","0","0" +"856PW326OEM5","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW326TLQ5","DCAS","Department of Citywide Administrative Services","Fixed Asset","2782000","1732500","12108250" +"856PW327PLZ2","DCAS","Department of Citywide Administrative Services","Fixed Asset","11119000","398975.39","470024.61" +"856PW335ASB4","DCAS","Department of Citywide Administrative Services","Fixed Asset","6605000","214203.28","7236258.21" +"856PW340BOE","DCAS","Department of Citywide Administrative Services","Fixed Asset","260000","0","0" +"856PW340CALL","DCAS","Department of Citywide Administrative Services","Fixed Asset","549000","0.00","333357.53" +"856PW340FIP2","DCAS","Department of Citywide Administrative Services","Fixed Asset","394000","0","0" +"856PW340KEXP","DCAS","Department of Citywide Administrative Services","Fixed Asset","1492000","0","0" +"856PW77125BO","DCAS","Department of Citywide Administrative Services","Fixed Asset","79769000","0","0" +"856PW77198EV","DCAS","Department of Citywide Administrative Services","Fixed Asset","16256000","320258.96","672041.04" +"856PW77198RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW771C14","DCAS","Department of Citywide Administrative Services","Fixed Asset","18413000","1587000","0" +"856PW772076","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77207DC","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77207HV","DCAS","Department of Citywide Administrative Services","Fixed Asset","11246000","0","0" +"856PW77207SL","DCAS","Department of Citywide Administrative Services","Fixed Asset","700000","0","0" +"856PW77207W","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77208EL","DCAS","Department of Citywide Administrative Services","Fixed Asset","9513000","0","0" +"856PW7722R5","DCAS","Department of Citywide Administrative Services","Fixed Asset","9908000","0","0" +"856PW77280V","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77417RF","DCAS","Department of Citywide Administrative Services","Fixed Asset","15726000","0","0" +"856PW77501DB","DCAS","Department of Citywide Administrative Services","Fixed Asset","7237000","728421","0" +"856PW326TLQ4","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.00","1455414.97" +"856PW7770EV","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77ADM13","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77BALL","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","2484.46","309515.54" +"856PW77CADRF","DCAS","Department of Citywide Administrative Services","Fixed Asset","5864000","0","0" +"856PW77CCSS","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77CHVAC","DCAS","Department of Citywide Administrative Services","Fixed Asset","17778000","650000","0" +"856PW77CJC","DCAS","Department of Citywide Administrative Services","Fixed Asset","5000000","0","0" +"856PW77DATU","DCAS","Department of Citywide Administrative Services","Fixed Asset","2533000","0","0" +"856PW77DAYC","DCAS","Department of Citywide Administrative Services","Fixed Asset","8400000","2870985.12","75480" +"856PW77DFTAR","DCAS","Department of Citywide Administrative Services","Fixed Asset","79600000","0","0" +"856PW77DOTRE","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77ETH","DCAS","Department of Citywide Administrative Services","Fixed Asset","586000","0","0" +"856PW77GLD2F","DCAS","Department of Citywide Administrative Services","Fixed Asset","1457000","7415888.86","8708070.58" +"856PW77GLDBR","DCAS","Department of Citywide Administrative Services","Fixed Asset","16753000","661847.5","677152.5" +"856PW77GLDEV","DCAS","Department of Citywide Administrative Services","Fixed Asset","20794000","866895.98","893104.02" +"856PW77GLDFA","DCAS","Department of Citywide Administrative Services","Fixed Asset","7009000","4727298.63","5844183.37" +"856PW77OEM5","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77OPER","DCAS","Department of Citywide Administrative Services","Fixed Asset","5257000","4335396.52","317000.48" +"856PW77QBHRF","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW77QHVAC","DCAS","Department of Citywide Administrative Services","Fixed Asset","13259000","5167546.04","273453.96" +"856PW77QPLNT","DCAS","Department of Citywide Administrative Services","Fixed Asset","25153000","0","0" +"856PW77RCDA","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","75843.63","187370.35" +"856PW77REHAB","DCAS","Department of Citywide Administrative Services","Fixed Asset","187935000","0.00","8382.76" +"856PW77SICJC","DCAS","Department of Citywide Administrative Services","Fixed Asset","5000000","0","0" +"856PW77TAX","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","60324.79","1055742.06" +"856PW77TOWER","DCAS","Department of Citywide Administrative Services","Fixed Asset","6000000","0","0" +"856PW80CT1","DCAS","Department of Citywide Administrative Services","Fixed Asset","599000","0","0" +"856PW80DHWH","DCAS","Department of Citywide Administrative Services","Fixed Asset","2269000","0","0" +"856PW80ELEV","DCAS","Department of Citywide Administrative Services","Fixed Asset","29198000","613616.48","1088383.52" +"856PWBKBP","DCAS","Department of Citywide Administrative Services","Fixed Asset","1000000","0","0" +"856PWCOMP13","DCAS","Department of Citywide Administrative Services","Fixed Asset","260000","25000","0" +"856PWD007HPD","DCAS","Department of Citywide Administrative Services","Fixed Asset","550000","0","0" +"856PWD30BENC","DCAS","Department of Citywide Administrative Services","Fixed Asset","100000","0","0" +"856PWD5HSCHR","DCAS","Department of Citywide Administrative Services","Fixed Asset","1000000","0","0" +"856PWD78BLL","DCAS","Department of Citywide Administrative Services","Fixed Asset","300000","0","0" +"856PWDAAFE","DCAS","Department of Citywide Administrative Services","Fixed Asset","1300000","0","0" +"856PWDBRDGCH","DCAS","Department of Citywide Administrative Services","Fixed Asset","1000000","0","0" +"856PWDBXWRX","DCAS","Department of Citywide Administrative Services","Fixed Asset","4000000","0","0" +"856PWDCFLAC","DCAS","Department of Citywide Administrative Services","Fixed Asset","1086000","0","0" +"856PWDFHRENO","DCAS","Department of Citywide Administrative Services","Fixed Asset","190000","0","0" +"856PWDHRYMCA","DCAS","Department of Citywide Administrative Services","Fixed Asset","250000","0","0" +"856PWDNIBO1","DCAS","Department of Citywide Administrative Services","Fixed Asset","250000","0","0" +"856PWDPALWB","DCAS","Department of Citywide Administrative Services","Fixed Asset","5000000","0","0" +"856PWDPLONG","DCAS","Department of Citywide Administrative Services","Fixed Asset","500000","0","0" +"856PWDSEPHRN","DCAS","Department of Citywide Administrative Services","Fixed Asset","1100000","0","0" +"856PW-Q077","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","35057.52","293734.78" +"856PWQ77QBH2","DCAS","Department of Citywide Administrative Services","Fixed Asset","186000","0","0" +"856PWQ77TOPO","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","6313.26","822092.48" +"856PWQCHPC","DCAS","Department of Citywide Administrative Services","Fixed Asset","5000000","0","0" +"856PWR77GRGE","DCAS","Department of Citywide Administrative Services","Fixed Asset","880000","0","0" +"856PW-RLS","DCAS","Department of Citywide Administrative Services","Fixed Asset","80746000","0","0" +"856PWXGLASS","DCAS","Department of Citywide Administrative Services","Fixed Asset","500000","0","0" +"856PWXKBSWIM","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PWXNPOTS","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PWXPALHV","DCAS","Department of Citywide Administrative Services","Fixed Asset","1000000","0","0" +"856RE25-162","DCAS","Department of Citywide Administrative Services","Fixed Asset","1500000","0","0" +"856RE25QR","DCAS","Department of Citywide Administrative Services","Fixed Asset","3935000","0","0" +"856RE25VERN","DCAS","Department of Citywide Administrative Services","Fixed Asset","492000","0","0" +"856S136-365","DCAS","Department of Citywide Administrative Services","Fixed Asset","1302000","0","0" +"856S136-423B","DCAS","Department of Citywide Administrative Services","Fixed Asset","1185000","0","0" +"856SCACIP08","DCAS","Department of Citywide Administrative Services","Fixed Asset","450000","483169","4016831" +"856SCAELQ008","DCAS","Department of Citywide Administrative Services","Fixed Asset","9622000","57011152","1188708" +"856SCAELQ107","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","46943401","400092" +"856SCAELQ171","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","22292269","299807" +"856SCAELQ262","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","17143064","1362635" +"856SOLARCSB2","DCAS","Department of Citywide Administrative Services","Fixed Asset","4614000","18069939.05","95756.46" +"856SOLARDB2","DCAS","Department of Citywide Administrative Services","Fixed Asset","65000000","0","0" +"856SOLARDOS5","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856SOLARFDN3","DCAS","Department of Citywide Administrative Services","Fixed Asset","137000","1153704","241300" +"856SOLARFDN4","DCAS","Department of Citywide Administrative Services","Fixed Asset","285000","833472.05","141531.95" +"856SOLARFDN8","DCAS","Department of Citywide Administrative Services","Fixed Asset","40000","331254","23750" +"856SOLARFDN9","DCAS","Department of Citywide Administrative Services","Fixed Asset","75000","499999.9","275004.1" +"856SOLARGR4","DCAS","Department of Citywide Administrative Services","Fixed Asset","1843000","9973145.51","2023669.49" +"856TYP-INT","DCAS","Department of Citywide Administrative Services","Fixed Asset","44865000","0","0" +"856TYP-ROOF","DCAS","Department of Citywide Administrative Services","Fixed Asset","17445000","0","0" +"856UNIONHALL","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0.01","9666337.30" +"856VOCAL-NY","DCAS","Department of Citywide Administrative Services","Fixed Asset","600000","0","0" +"858DOIT1MOME","OTI","Office of Technology and Innovation","Fixed Asset","10477000","0","0" +"858PSAC1SECU","OTI","Office of Technology and Innovation","Fixed Asset","0","0.0","932305.5" +"858PSAC2BEAM","OTI","Office of Technology and Innovation","Fixed Asset","1571000","499291.8","0" +"998MTABC03","NYCTA","Transit Authority","Fixed Asset","14510000","0","0" +"846P-202CBMP","DPR","Department of Parks and Recreation","Fixed Asset","22900000","412036.09","1241647.68" +"846P-206RHCF","DPR","Department of Parks and Recreation","Fixed Asset","81000","106400.74","647222.64" +"856PWQ77ATRM","DCAS","Department of Citywide Administrative Services","Fixed Asset","100000","0","0" +"846P-104KLMR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1659508.91" +"846P-210C17L","DPR","Department of Parks and Recreation","Fixed Asset","0","425.00","2276207.14" +"846P-405FPCS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","780152.83" +"846P-214CAVE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","216375.80" +"846P-218AC17","DPR","Department of Parks and Recreation","Fixed Asset","0","33505.25","596609.36" +"846P-218C77C","DPR","Department of Parks and Recreation","Fixed Asset","0","121769.68","17584812.78" +"846P-2BDCHOS","DPR","Department of Parks and Recreation","Fixed Asset","4771000","290134.17","138546.03" +"846P-2PWBFTG","DPR","Department of Parks and Recreation","Fixed Asset","30375000","48954.76","2519636.22" +"846P-3CPIERP","DPR","Department of Parks and Recreation","Fixed Asset","10655000","66868.82","317170.37" +"846P-409FPO2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1763010.63" +"846P-413IDL3","DPR","Department of Parks and Recreation","Fixed Asset","282000","302661.12","1178833.98" +"846P-415PAVI","DPR","Department of Parks and Recreation","Fixed Asset","4702000","16774466.34","40321917.49" +"846P-4DUTCH1","DPR","Department of Parks and Recreation","Fixed Asset","729000","183177.51","768307.29" +"846P-503GCPG","DPR","Department of Parks and Recreation","Fixed Asset","4020000","4217110.34","1819340.57" +"846P-6ELUT15","DPR","Department of Parks and Recreation","Fixed Asset","0","147977.86","2338465.94" +"846SANDY1-11","DPR","Department of Parks and Recreation","Fixed Asset","12229000","36361.89","850796.60" +"846SANDY2-03","DPR","Department of Parks and Recreation","Fixed Asset","0","59516.57","2139616.91" +"846SANDY4-46","DPR","Department of Parks and Recreation","Fixed Asset","3420000","44589.95","193002.05" +"846P-2DSTG04","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","62169.12" +"846P-306C043","DPR","Department of Parks and Recreation","Fixed Asset","157000","0.00","18210.06" +"846P-202FTGP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","794025.38" +"850PWDN24LAB","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"846P-103CPB5","DPR","Department of Parks and Recreation","Fixed Asset","352000","179710.51","6334807.76" +"846P-105HOPE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5070956.93" +"846P-108FTFR","DPR","Department of Parks and Recreation","Fixed Asset","333000","284915.11","4194727.33" +"126PV747-NDR","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"846P-1OWENDO","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3475196.45" +"850PWDN49REC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","122000","0","0" +"850PWDN63LGB","DDC","Department of Design and Construction","Lump Sum","1000","0.00","203814.16" +"850PWDNABUSE","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"071HH115SAEU","DHS","Department of Homeless Services","Fixed Asset","3800000","119803.77","180196.23" +"846P-1CRNAPK","DPR","Department of Parks and Recreation","Fixed Asset","0","41600.15","4249338.76" +"846P-1CRO17A","DPR","Department of Parks and Recreation","Fixed Asset","0","453773.23","6532599.68" +"850S136-383N","DDC","Department of Design and Construction","Fixed Asset","4189000","3628452.80","30802244.13" +"846P-1JARDIN","DPR","Department of Parks and Recreation","Fixed Asset","25000","0.00","370212.67" +"856PW326DOFR","DCAS","Department of Citywide Administrative Services","Fixed Asset","1591000","0","0" +"850PW195SW2","DDC","Department of Design and Construction","Fixed Asset","10031000","3785647.62","4360582.67" +"846P-402NOON","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1839550.08" +"846P-407CPSC","DPR","Department of Parks and Recreation","Fixed Asset","0","2047.78","6553173.63" +"846P-407FGP2","DPR","Department of Parks and Recreation","Fixed Asset","53000","435806.36","5486138.45" +"846P-6PAVCW1","DPR","Department of Parks and Recreation","Fixed Asset","42000","51415.30","147375.88" +"846P-6PAVESI","DPR","Department of Parks and Recreation","Fixed Asset","963000","1408394.23","26605.77" +"846P-6PBBP15","DPR","Department of Parks and Recreation","Fixed Asset","103000","0.00","480145.38" +"801PIER69TH","SBS","Department of Small Business Services","Fixed Asset","0","0.00","5200935.88" +"801P-6NEWYN2","SBS","Department of Small Business Services","Lump Sum","0","327367.18","10718952.12" +"826WI-285-L","DEP","Department of Environmental Protection","Fixed Asset","1600000","39309772.40","91280288.31" +"801STGRGEFIT","SBS","Department of Small Business Services","Fixed Asset","1000","0.00","331720.94" +"826WI-292-L","DEP","Department of Environmental Protection","Fixed Asset","226621000","17139361.89","7786037.11" +"826WI-293-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826WI-298-B","DEP","Department of Environmental Protection","Lump Sum","84997000","3499224.77","6938871.73" +"826CAT-399","DEP","Department of Environmental Protection","Fixed Asset","84574000","78375278.34","7404130.66" +"126PV829ADCV","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"846P-1CROT45","DPR","Department of Parks and Recreation","Fixed Asset","0","53289.70","1291857.93" +"846P-1CROT66","DPR","Department of Parks and Recreation","Fixed Asset","0","1377.63","392869.06" +"846P-1LTLELG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1020848.49" +"850PW77417P2","DDC","Department of Design and Construction","Fixed Asset","780000","572863.57","8447862.47" +"850PW77GLDA2","DDC","Department of Design and Construction","Fixed Asset","720000","103954.71","3808543.72" +"850S136-423","DDC","Department of Design and Construction","Fixed Asset","650000","0.00","6545763.73" +"850S216-415A","DDC","Department of Design and Construction","Fixed Asset","690000","2193977.13","97682604.59" +"071HH112FWBO","DHS","Department of Homeless Services","Fixed Asset","2248000","649885.87","10856726.31" +"846P-304LRSQ","DPR","Department of Parks and Recreation",,"30000","889656.10","1965049.37" +"846P-303ASRC","DPR","Department of Parks and Recreation","Fixed Asset","184000","28550.01","632902.36" +"846P-303BPCS","DPR","Department of Parks and Recreation","Fixed Asset","-19000","1742.00","2462943.56" +"846P-303LGPK","DPR","Department of Parks and Recreation","Fixed Asset","2000","1105723.38","8072833.30" +"846P-1DEPOT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3461132.21" +"846P-1ECHOPK","DPR","Department of Parks and Recreation","Fixed Asset","0","207932.03","4507614.11" +"850S216-404A","DDC","Department of Design and Construction","Fixed Asset","0","54110.60","36385723.40" +"846P-200K01T","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1584605.42" +"846P-304MPPR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3038255.32" +"846P-308CSPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3645187.64" +"846P-309CARM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2932025.97" +"846P-309JSPL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1184442.43" +"850PWD5SOUTH","DDC","Department of Design and Construction",,"0","23126.02","10051196.42" +"846P-200PPFB","DPR","Department of Parks and Recreation","Fixed Asset","1000","57080.55","2045558.45" +"846P-200PPMO","DPR","Department of Parks and Recreation","Fixed Asset","10279000","7973325.15","401377.83" +"126PV856-YPC","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","23000","0","240118" +"846P-200PPXR","DPR","Department of Parks and Recreation","Fixed Asset","0","5900.79","748555.52" +"850PWDNDRUGG","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDNLEGAL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"801HIGHLINE2","SBS","Department of Small Business Services","Fixed Asset","15973000","49038.07","59474485.05" +"846P-200PRUN","DPR","Department of Parks and Recreation","Fixed Asset","60000","0.00","310370.56" +"846P-201245E","DPR","Department of Parks and Recreation","Fixed Asset","18000","0.00","1095824.58" +"846P-202018A","DPR","Department of Parks and Recreation","Fixed Asset","4478000","500000.00","283020855.71" +"846P-202C974","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4160343.16" +"846P-214K01A","DPR","Department of Parks and Recreation","Fixed Asset","0","1449.29","5098839.79" +"846P-214KNDR","DPR","Department of Parks and Recreation","Fixed Asset","0","2741.85","485813.92" +"846P-2CPINWP","DPR","Department of Parks and Recreation","Fixed Asset","0","16322.74","634449.61" +"846P-2CIBWK2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2484057.13" +"846P-2PPANEP","DPR","Department of Parks and Recreation","Fixed Asset","0","15009.10","374772.85" +"846P-312WRIT","DPR","Department of Parks and Recreation","Fixed Asset","0","3481.45","2492289.59" +"850PWD308NBR","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDNBUSHW","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850PWDNCHART","DDC","Department of Design and Construction","Fixed Asset","0","0","439012" +"850LBK16CIBR","DDC","Department of Design and Construction","Fixed Asset","0","46296.67","1717727.88" +"850PWD5BIG","DDC","Department of Design and Construction",,"0","0.00","63034.20" +"850PWD5BSSP2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.0","197207.5" +"850PWD998LEG","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDNMOBLE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-311MGLL","DPR","Department of Parks and Recreation","Fixed Asset","243000","416807.19","5548166.13" +"846P-305UNIO","DPR","Department of Parks and Recreation","Fixed Asset","0","39482.00","6332419.51" +"846P-307RVSD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","14964170.95" +"846P-308AGFB","DPR","Department of Parks and Recreation","Fixed Asset","0","139293.25","398993.88" +"846P-308AGMC","DPR","Department of Parks and Recreation","Fixed Asset","0","7679.75","675654.47" +"846P-3RVSP91","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1051389.83" +"850PWDNCHILD","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850SE-413A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","96982.08","1170218.61" +"850PWDNDRUGS","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWKNOHELO","DDC","Department of Design and Construction","Lump Sum","0","0","230200" +"850PWDNPHPPS","DDC","Department of Design and Construction","Lump Sum","93000","0","0" +"850PWDNPROME","DDC","Department of Design and Construction","Lump Sum","0","0.00","313522.87" +"846P-6PBUT15","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","570912.06" +"846P-6PDPLEL","DPR","Department of Parks and Recreation","Fixed Asset","0","279732.50","1798285.61" +"846P-6PDRFMN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2590657.32" +"846P-6PLEL14","DPR","Department of Parks and Recreation","Lump Sum","0","87937.88","713513.28" +"846P-6PLFLTR","DPR","Department of Parks and Recreation","Fixed Asset","0","748668.29","1269748.97" +"846P-6PLPB14","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1226716.56" +"846P-6POL11A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1110818.08" +"846P-6POOL18","DPR","Department of Parks and Recreation","Lump Sum","-1447000","0.00","3799470.03" +"846P-6PREFA1","DPR","Department of Parks and Recreation",,"310000","858827.16","2230986.84" +"846P-6PREFAB","DPR","Department of Parks and Recreation",,"370000","703216.30","4091746.97" +"846P-6PRKLOT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2131032.10" +"846P-6PVMNT1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1943571.59" +"846P-6PVMNT2","DPR","Department of Parks and Recreation","Fixed Asset","0","594806.80","2039368.39" +"846P-6REC11B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","695632.30" +"846P-6RETW14","DPR","Department of Parks and Recreation","Fixed Asset","2678000","3579347.30","21886362.38" +"846P-6RETW18","DPR","Department of Parks and Recreation","Fixed Asset","0","5851618.10","6417175.51" +"846P-6RETW23","DPR","Department of Parks and Recreation","Fixed Asset","3892000","9594883.04","4820573.96" +"850PWDNFORTN","DDC","Department of Design and Construction","Lump Sum","0","0","176156" +"846P-311RIFW","DPR","Department of Parks and Recreation","Fixed Asset","-35000","0.00","1708804.37" +"850C75EWRMSC","DDC","Department of Design and Construction",,"0","3528847.95","84182380.41" +"850C75EWRNDC","DDC","Department of Design and Construction",,"0","923844.00","34444990.43" +"850CC1C3","DDC","Department of Design and Construction","Fixed Asset","0","263158.83","8525235.57" +"850CMERECORD","DDC","Department of Design and Construction","Fixed Asset","7105000","725791.83","1342037.90" +"850CO272BLR","DDC","Department of Design and Construction","Fixed Asset","19254000","1940442","0" +"850CO272DW2","DDC","Department of Design and Construction","Fixed Asset","3232000","1990853.69","807187.67" +"850CO272ELC2","DDC","Department of Design and Construction","Fixed Asset","550000","100569.48","10565878.44" +"850CO272ELV2","DDC","Department of Design and Construction","Fixed Asset","0","145830.22","2670000.18" +"850CO277ELV2","DDC","Department of Design and Construction","Fixed Asset","374000","98112.41","4321025.10" +"850CO278EXT2","DDC","Department of Design and Construction","Fixed Asset","30913000","25389111.79","2270158.21" +"850CO281LL11","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850CO281TOIL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","958000","1011199.99","14090940.66" +"850CO283WT","DDC","Department of Design and Construction","Fixed Asset","2429000","660155.40","5140970.67" +"850CO285FIRE","DDC","Department of Design and Construction","Fixed Asset","1376000","20747461.15","4568571.48" +"850CO290BCHJ","DDC","Department of Design and Construction","Fixed Asset","755000","1306256.09","44376598.03" +"850CO293CTR","DDC","Department of Design and Construction","Fixed Asset","11129000","0","0" +"850CO293LL11","DDC","Department of Design and Construction","Fixed Asset","12230000","48300612.17","25643203.30" +"850CO293SP","DDC","Department of Design and Construction","Fixed Asset","71855000","6083951.30","3905342.53" +"850CO294RF","DDC","Department of Design and Construction","Fixed Asset","23233000","381822.08","884177.92" +"850CO295EV","DDC","Department of Design and Construction","Fixed Asset","22441000","464978.56","1504567.65" +"850CO295FIRE","DDC","Department of Design and Construction","Fixed Asset","10088000","1020102","0" +"850CO296RF","DDC","Department of Design and Construction","Fixed Asset","35749000","2954057.85","1615836.42" +"850CO299EXT2","DDC","Department of Design and Construction","Fixed Asset","11295000","323997.88","1171801.12" +"850CO299FIRE","DDC","Department of Design and Construction","Fixed Asset","4829000","13545369.48","9109071.80" +"850CO301LL","DDC","Department of Design and Construction","Fixed Asset","1480000","326990.69","9056685.80" +"850CO301PD","DDC","Department of Design and Construction","Fixed Asset","1383000","395061.92","7239540.01" +"850CO302ST","DDC","Department of Design and Construction","Fixed Asset","630000","158094.78","7487554.86" +"850CO304REHB","DDC","Department of Design and Construction","Fixed Asset","62198000","2413831.13","4905694.72" +"850CO306EXT2","DDC","Department of Design and Construction","Fixed Asset","24041000","147644.61","690363.39" +"850CO306REHB","DDC","Department of Design and Construction","Fixed Asset","608000","0","0" +"850CO81ELEC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2300000","0.00","72116.25" +"846P-311TJHV","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","124000","0.00","966665.25" +"850LBKA02PKS","DDC","Department of Design and Construction","Fixed Asset","0","29733.00","8777566.29" +"850SEQ200562","DDC","Department of Design and Construction","Lump Sum","17552000","465853.84","692411.16" +"846P-3CENTA","DPR","Department of Parks and Recreation","Lump Sum","82226000","0","0" +"846P-3ANCH01","DPR","Department of Parks and Recreation","Fixed Asset","195000","135770.47","3134232.45" +"846P-312ITRY","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1199561.44" +"850LBM18BVOH","DDC","Department of Design and Construction",,"14630000","25781500.80","4671380.34" +"850LBM19CAOH","DDC","Department of Design and Construction",,"27232000","0","0" +"850LBM22WWBR","DDC","Department of Design and Construction",,"13001000","12740980","0" +"850LBP18BHBR","DDC","Department of Design and Construction",,"150000","56542.48","16723457.52" +"850LBP18WWBR","DDC","Department of Design and Construction",,"0","0.00","16980.84" +"850LNBXA08LS","DDC","Department of Design and Construction","Lump Sum","420000","99195.03","2012400.86" +"850LQARVEXPN","DDC","Department of Design and Construction","Fixed Asset","2829000","15207284.20","6566792.03" +"850LQASADA","DDC","Department of Design and Construction","Fixed Asset","3523000","14530136.47","3536973.13" +"850LQD122BR2","DDC","Department of Design and Construction","Fixed Asset","1000","24103.41","6424712.36" +"850LQD122-CL","DDC","Department of Design and Construction","Fixed Asset","80000","3050118.63","3300173.66" +"850LNC2STAPL","DDC","Department of Design and Construction","Fixed Asset","20000","11281.14","13064148.33" +"850LNC4WLEX","DDC","Department of Design and Construction","Fixed Asset","10109000","268999.25","1903761.95" +"850LNCA0996S","DDC","Department of Design and Construction","Fixed Asset","83000","30695.78","2639893.04" +"850PWDKBGC05","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","76096" +"850PWDKBGC45","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","39024" +"850PWDLEAK","DDC","Department of Design and Construction","Fixed Asset","0","0","74970" +"850PWXTNLLRE","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850PWKNFRANC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWKNFRANL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","350001.23" +"846P-502NDPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","406675.43" +"850PWPNTTECH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","206000","0","0" +"846P-412RKM2","DPR","Department of Parks and Recreation","Fixed Asset","0","34167.82","775648.44" +"850MED-596","DDC","Department of Design and Construction","Fixed Asset","0","0.00","68489472.08" +"850LBKA05RUG","DDC","Department of Design and Construction","Fixed Asset","0","178071.47","12148882.20" +"850P1YANK15A","DDC","Department of Design and Construction","Fixed Asset","185000","440199.05","16210112.24" +"850PWNC025","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-406MCPI","DPR","Department of Parks and Recreation","Fixed Asset","852000","0","102000" +"846P-3BBGARD","DPR","Department of Parks and Recreation","Fixed Asset","107000","1032118.82","11563797.57" +"846P-402HART","DPR","Department of Parks and Recreation","Fixed Asset","0","25977.23","3524415.25" +"850PWDNYU027","DDC","Department of Design and Construction","Fixed Asset","28000","121659","0" +"850PWDNYUNJA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWDSANT","DDC","Department of Design and Construction","Fixed Asset","0","0.00","692468.22" +"850PWKBEFORD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","180239.24" +"850PWUNISRVN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","74844" +"850PWX78BXP","DDC","Department of Design and Construction","Fixed Asset","175000","0","0" +"806RBSHEP172","HPD","Housing Preservation and Development","Fixed Asset","500000","0","0" +"071HH115REBO","DHS","Department of Homeless Services","Fixed Asset","6000000","0","143855" +"071HH115RECL","DHS","Department of Homeless Services","Fixed Asset","1758000","781.02","84218.98" +"071HH115RFRE","DHS","Department of Homeless Services","Fixed Asset","0","814037.60","3124861.99" +"846P-3RIVSTR","DPR","Department of Parks and Recreation","Fixed Asset","506000","248257.54","1919172.74" +"071HH115BFRR","DHS","Department of Homeless Services","Fixed Asset","7711000","463828.98","416171.02" +"806SHN2KINS","HPD","Housing Preservation and Development","Fixed Asset","250000","0.00","3518298.97" +"846P-3RNDLGL","DPR","Department of Parks and Recreation","Fixed Asset","-35000","48930.67","391190.99" +"850SE-789B-3","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4600000","0","0" +"846P-3ROOF9A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.02","3683685.79" +"071HH115UNBT","DHS","Department of Homeless Services","Fixed Asset","2130000","0","0" +"850LNCA13MOT","DDC","Department of Design and Construction","Fixed Asset","94000","0.00","4081869.37" +"071HH115FAFA","DHS","Department of Homeless Services","Fixed Asset","1013000","0","56250" +"846P-3SOHAGS","DPR","Department of Parks and Recreation","Fixed Asset","12000","69970.75","3029.25" +"071HH115CTBU","DHS","Department of Homeless Services","Fixed Asset","1588000","275151.01","9006440.25" +"071HH115CTEF","DHS","Department of Homeless Services","Fixed Asset","3650000","0","244426" +"801RE25HC","SBS","Department of Small Business Services","Fixed Asset","0","0.00","2687030.76" +"841CTYISLBRD","DOT","Department of Transportation","Fixed Asset","5006000","367808.58","7485334.56" +"841HBB241850","DOT","Department of Transportation","Fixed Asset","29292000","0","0" +"841HBBA06672","DOT","Department of Transportation","Fixed Asset","141674000","1390638.03","2904512.23" +"841HBBA06715","DOT","Department of Transportation","Fixed Asset","319250000","0","0" +"841HBBA24180","DOT","Department of Transportation","Fixed Asset","27547000","408747.58","4270870.28" +"850MED-599","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","200000","4257607.77","70087263.01" +"841HBKBQE","DOT","Department of Transportation","Fixed Asset","1664269000","152080730.62","123360751.27" +"841HBQ1208","DOT","Department of Transportation","Fixed Asset","31400000","0","0" +"841HBQ1209","DOT","Department of Transportation","Fixed Asset","35342000","0","0" +"841HBX199","DOT","Department of Transportation","Fixed Asset","11477000","12740.13","20745833.12" +"841HBBA23025","DOT","Department of Transportation",,"102075000","0","0" +"841HBBA66672","DOT","Department of Transportation",,"169313000","0","0" +"841HBKA23143","DOT","Department of Transportation",,"93555000","1036250.90","2192448.10" +"841HBKA24304","DOT","Department of Transportation",,"39866000","0","0" +"841HBKA24382","DOT","Department of Transportation",,"111410000","5888.76","334111.24" +"841HBMA24666","DOT","Department of Transportation",,"260363000","0","0" +"841HBQ1114","DOT","Department of Transportation",,"106010000","747461.02","4581728.15" +"841HBQ1115","DOT","Department of Transportation",,"74735000","1350494.14","10533889.38" +"841HBQA24750","DOT","Department of Transportation",,"64140000","6504990.48","1831403.52" +"841HBQA26614","DOT","Department of Transportation","Lump Sum","69884000","375865.43","3059176.56" +"841HBBA24181","DOT","Department of Transportation","Fixed Asset","35284000","262188.48","2879381.81" +"841HBBA24214","DOT","Department of Transportation","Fixed Asset","98300000","0","0" +"841HBBA24236","DOT","Department of Transportation","Fixed Asset","55144000","0","0" +"846P-406PEGT","DPR","Department of Parks and Recreation","Fixed Asset","424000","350000","0" +"846P-406PG62","DPR","Department of Parks and Recreation","Fixed Asset","856000","1225800.43","2802322.74" +"846P-406YPFN","DPR","Department of Parks and Recreation","Fixed Asset","0","52780.48","347466.12" +"846P-407BBSF","DPR","Department of Parks and Recreation","Fixed Asset","5370000","131848.98","753119.73" +"846P-407BHRE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3427269.26" +"846P-407BLND","DPR","Department of Parks and Recreation","Fixed Asset","1293000","98729.89","5191450.61" +"846P-407BPBC","DPR","Department of Parks and Recreation","Fixed Asset","0","2101.59","463293.04" +"846P-407BPFF","DPR","Department of Parks and Recreation","Fixed Asset","0","65190.18","2860315.90" +"846P-407BTPL","DPR","Department of Parks and Recreation","Fixed Asset","2000","105626.77","3626779.60" +"846P-407BWPK","DPR","Department of Parks and Recreation","Fixed Asset","0","69943.19","569489.70" +"846P-407FFAR","DPR","Department of Parks and Recreation","Fixed Asset","8163000","229880.08","591194.76" +"846P-407LBCS","DPR","Department of Parks and Recreation","Fixed Asset","0","18513.16","6453910.56" +"846P-407LBSF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1939876.61" +"846P-407MAPL","DPR","Department of Parks and Recreation","Fixed Asset","0","89901.29","5281244.43" +"846P-407MCN4","DPR","Department of Parks and Recreation","Fixed Asset","-1000","25628.56","872198.22" +"846P-407MNPW","DPR","Department of Parks and Recreation","Fixed Asset","10002000","116507.15","936756.49" +"846P-407MPSW","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4609069.51" +"039LQNFPFAO","QPL","Queens Borough Public Library","Fixed Asset","400000","0","0" +"841HB1070BX","DOT","Department of Transportation","Fixed Asset","12200000","0","0" +"846P-407FLPU","DPR","Department of Parks and Recreation","Fixed Asset","2655000","0","150000" +"841STGTELPAN","DOT","Department of Transportation","Fixed Asset","694000","0.0","606672.4" +"841HB1070EN","DOT","Department of Transportation","Fixed Asset","13800000","0","0" +"841HB1070GR","DOT","Department of Transportation","Fixed Asset","14641000","3130357.11","0" +"841HB1070LR","DOT","Department of Transportation","Fixed Asset","24021000","0","0" +"841STGTROOF","DOT","Department of Transportation","Fixed Asset","2881000","350465.90","7328542.76" +"841HB1070MH","DOT","Department of Transportation","Fixed Asset","16171000","0","0" +"841HB1070MN","DOT","Department of Transportation","Fixed Asset","23973000","0","0" +"841HB1070WB","DOT","Department of Transportation","Fixed Asset","429985000","0","0" +"841HBB224222","DOT","Department of Transportation","Fixed Asset","22181000","0","0" +"841HWQ100SBS","DOT","Department of Transportation","Fixed Asset","10972000","0","373900" +"841HBBA24245","DOT","Department of Transportation","Fixed Asset","24201000","531717.89","1410644.69" +"841HBBA42081","DOT","Department of Transportation","Fixed Asset","18352000","0","0" +"801BNY5THST","BNY","Brooklyn Navy Yard","Fixed Asset","1016000","153953.23","2579955.85" +"841HBBA42082","DOT","Department of Transportation","Fixed Asset","18940000","0","0" +"841HBBM06691","DOT","Department of Transportation","Fixed Asset","1077436000","0","0" +"841HBBA24138","DOT","Department of Transportation","Fixed Asset","39758000","830883.81","878112.83" +"841HBCR22A","DOT","Department of Transportation","Fixed Asset","31419000","307527.72","2682715.73" +"841HBCR22B","DOT","Department of Transportation","Fixed Asset","39239000","5732773.70","2544797.59" +"841HBCR23B","DOT","Department of Transportation","Fixed Asset","22030000","721050.73","1999846.04" +"841HBK224404","DOT","Department of Transportation","Fixed Asset","4823000","0","0" +"841HBK243050","DOT","Department of Transportation","Fixed Asset","150209000","0","0" +"841HBK243080","DOT","Department of Transportation","Fixed Asset","134350000","0","0" +"841HBK243140","DOT","Department of Transportation","Fixed Asset","30743000","0","0" +"841HBK4470","DOT","Department of Transportation","Fixed Asset","59201000","1145670.42","2104827.97" +"801BNY910SBB","BNY","Brooklyn Navy Yard","Fixed Asset","5773000","1688591.00","50762293.72" +"841HBK530","DOT","Department of Transportation","Fixed Asset","40725000","5703987.01","3213356.22" +"841HBKA23036","DOT","Department of Transportation","Fixed Asset","25731000","0","0" +"841HBKA23038","DOT","Department of Transportation","Fixed Asset","22643000","325260.37","411224.35" +"841HBKA23140","DOT","Department of Transportation","Fixed Asset","69981000","892576.77","1905877.48" +"841HBKA23141","DOT","Department of Transportation","Fixed Asset","94636000","1073839.79","2337725.10" +"841HBKA23308","DOT","Department of Transportation","Fixed Asset","39771000","4121600.87","5289898.02" +"841HBKA24310","DOT","Department of Transportation","Fixed Asset","46795000","492097.82","1995763.44" +"841HBKA24315","DOT","Department of Transportation","Fixed Asset","29929000","0","0" +"841HBKA24371","DOT","Department of Transportation","Fixed Asset","24107000","0","0" +"841HBM1120B","DOT","Department of Transportation","Fixed Asset","76437000","338769.5","733.5" +"841HBM1221","DOT","Department of Transportation","Fixed Asset","0","18712.00","905487.48" +"841HBM191TUN","DOT","Department of Transportation","Fixed Asset","43080000","990762.96","2540647.29" +"841HBM224624","DOT","Department of Transportation","Fixed Asset","30945000","0","0" +"841HBM224625","DOT","Department of Transportation","Fixed Asset","20470000","0","0" +"801BNYB3SUBD","BNY","Brooklyn Navy Yard","Fixed Asset","776000","232958.00","2699793.48" +"841HBM224627","DOT","Department of Transportation","Fixed Asset","100608000","0","0" +"841HBM224628","DOT","Department of Transportation","Fixed Asset","20799000","0","0" +"841HBM224643","DOT","Department of Transportation","Fixed Asset","7203000","0","0" +"841HBM224650","DOT","Department of Transportation","Fixed Asset","15145000","0","0" +"841HBM24064","DOT","Department of Transportation","Fixed Asset","34356000","0","0" +"841HBM245060","DOT","Department of Transportation","Fixed Asset","71452000","0","0" +"841HBM245070","DOT","Department of Transportation","Fixed Asset","33385000","1399013.69","883922.35" +"841HBK244120","DOT","Department of Transportation","Fixed Asset","26540000","1156332.40","2079185.32" +"841HBM8650","DOT","Department of Transportation","Fixed Asset","120450000","16581195.16","9412464.57" +"841HBMA23216","DOT","Department of Transportation","Fixed Asset","80540000","29595019.85","7334068.87" +"841HBMA24501","DOT","Department of Transportation","Fixed Asset","77011000","687128.10","850905.47" +"841HBMA24544","DOT","Department of Transportation","Fixed Asset","48372000","1325845.67","1505330.56" +"841HBMA24613","DOT","Department of Transportation","Fixed Asset","7653000","86384.80","93503.09" +"841HBMA24646","DOT","Department of Transportation","Fixed Asset","14619000","0","0" +"801BNYB131RM","BNY","Brooklyn Navy Yard","Fixed Asset","0","23801.76","1363963.24" +"841HBMA24649","DOT","Department of Transportation","Fixed Asset","21940000","0","0" +"841HBMA25756","DOT","Department of Transportation","Fixed Asset","393203000","0","0" +"841HBMA26724","DOT","Department of Transportation","Fixed Asset","441455000","21999403.24","6601393.24" +"841HBMA29349","DOT","Department of Transportation","Fixed Asset","236191000","0","0" +"841HBMA4501D","DOT","Department of Transportation","Fixed Asset","129132000","0","0" +"841HBMA4501F","DOT","Department of Transportation","Fixed Asset","69621000","0","0" +"841HBMFDNY20","DOT","Department of Transportation","Fixed Asset","53921000","1111534.06","2574506.38" +"841HBQ1137","DOT","Department of Transportation","Fixed Asset","32393000","3875.00","1030316.06" +"841HBQ224766","DOT","Department of Transportation","Fixed Asset","21314000","0","0" +"841HBQ224814","DOT","Department of Transportation","Fixed Asset","19040000","0","0" +"841HBQ224837","DOT","Department of Transportation","Fixed Asset","25494000","0","0" +"841HBQ231620","DOT","Department of Transportation","Fixed Asset","44510000","0","0" +"841HBQ231710","DOT","Department of Transportation","Fixed Asset","23367000","1655717.22","0" +"801BNYB280RF","BNY","Brooklyn Navy Yard","Fixed Asset","1103000","339704.72","4615335.28" +"841HBQ231720","DOT","Department of Transportation","Fixed Asset","22186000","1470400.29","0" +"841HBQ231800","DOT","Department of Transportation","Fixed Asset","48272000","0","0" +"841HBQ231880","DOT","Department of Transportation","Fixed Asset","14904000","0","0" +"841HBQ231900","DOT","Department of Transportation","Fixed Asset","33955000","0","0" +"841HBQ231960","DOT","Department of Transportation","Fixed Asset","46480000","0","0" +"841HBQ240440","DOT","Department of Transportation","Fixed Asset","61597000","0","0" +"841HBQ247020","DOT","Department of Transportation","Fixed Asset","26173000","0","0" +"841HBQ705510","DOT","Department of Transportation","Fixed Asset","19621000","0","0" +"841HBQA23081","DOT","Department of Transportation","Fixed Asset","39050000","2135536.74","2798241.74" +"841HBQA23157","DOT","Department of Transportation","Fixed Asset","40879000","0","0" +"841HBQA23165","DOT","Department of Transportation","Fixed Asset","28160000","0","0" +"841HBQA23176","DOT","Department of Transportation","Fixed Asset","41520000","1206455.74","1056622.75" +"841HBQA24066","DOT","Department of Transportation","Fixed Asset","269739000","0","0" +"841HBQA24718","DOT","Department of Transportation","Fixed Asset","65416000","0","0" +"801BNYBD132","BNY","Brooklyn Navy Yard","Fixed Asset","2654000","0","45750" +"841HBQA24815","DOT","Department of Transportation","Fixed Asset","64132000","349545.54","2215311.17" +"841HBQA24823","DOT","Department of Transportation","Fixed Asset","25206000","0","0" +"841HBR249730","DOT","Department of Transportation","Fixed Asset","7003000","144909.80","534449.99" +"841HBX1127","DOT","Department of Transportation","Fixed Asset","58888000","5107611.92","3913402.07" +"841HBX1148B","DOT","Department of Transportation","Fixed Asset","545382000","20106779.81","9847055.23" +"841HBX1460","DOT","Department of Transportation","Fixed Asset","121605000","23466900.50","9342681.03" +"841HBX2370","DOT","Department of Transportation","Fixed Asset","48451000","0","0" +"841HWMBRT6","DOT","Department of Transportation",,"0","2236.74","12266446.24" +"801HWQ1186","SBS","Department of Small Business Services","Fixed Asset","0","0.00","25118202.64" +"846P-3SRAWIN","DPR","Department of Parks and Recreation","Fixed Asset","-52000","178607.92","967488.13" +"846P-3STFCRL","DPR","Department of Parks and Recreation","Fixed Asset","-293000","0.00","212934.83" +"846P-3STSTSR","DPR","Department of Parks and Recreation","Fixed Asset","18304000","593588.54","940055.05" +"801BNYBDELEV","BNY","Brooklyn Navy Yard","Fixed Asset","4706000","921701.99","19257296.59" +"846P-104HGBG","DPR","Department of Parks and Recreation","Fixed Asset","1000","1042652.83","5767582.59" +"846P-3SUTTON","DPR","Department of Parks and Recreation","Fixed Asset","764000","471394.17","1800711.51" +"846P-3SYCAMO","DPR","Department of Parks and Recreation","Fixed Asset","5060000","52390.4","307609.6" +"846P-3TDCREC","DPR","Department of Parks and Recreation","Fixed Asset","90000","78500","218500" +"846P-3TOMJPK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","1581.49","2761645.94" +"846P-3W185BC","DPR","Department of Parks and Recreation","Fixed Asset","541000","1388897.61","939593.39" +"846P-3W69SB2","DPR","Department of Parks and Recreation","Fixed Asset","3201000","3111784.79","3961130.67" +"846P-3WGNRPL","DPR","Department of Parks and Recreation","Fixed Asset","17784000","34493.49","190506.51" +"846P-405BENN","DPR","Department of Parks and Recreation","Fixed Asset","1130000","2518766.17","1406086.57" +"801BNYDCSUBF","BNY","Brooklyn Navy Yard","Fixed Asset","1015000","1330966.77","8991278" +"846P-400LNCP","DPR","Department of Parks and Recreation","Fixed Asset","0","211600.00","3219160.04" +"846P-400MEAD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2853452.10" +"846P-400SFR2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2153770.55" +"846P-401APFS","DPR","Department of Parks and Recreation","Fixed Asset","5012000","952373.15","17160320.54" +"846P-401APPS","DPR","Department of Parks and Recreation","Fixed Asset","0","44838.90","6126427.53" +"846P-401ATH2","DPR","Department of Parks and Recreation","Fixed Asset","0","7699.09","1012455.85" +"801BNYDCWELD","BNY","Brooklyn Navy Yard","Fixed Asset","2565000","0","435420" +"846P-1AQWALK","DPR","Department of Parks and Recreation","Fixed Asset","9000","0.00","3262323.82" +"846P-401DKLL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3518330.83" +"846P-401DKPG","DPR","Department of Parks and Recreation","Fixed Asset","1145000","956322.15","38677.85" +"846P-405EVE2","DPR","Department of Parks and Recreation","Fixed Asset","5120000","99783.15","719550.85" +"846P-405EVER","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2449394.64" +"846P-405FPPR","DPR","Department of Parks and Recreation","Fixed Asset","9377000","249442.87","739099.94" +"846P-405HIDR","DPR","Department of Parks and Recreation","Fixed Asset","500000","802371.87","1012109.13" +"846P-405JPCS","DPR","Department of Parks and Recreation","Fixed Asset","1178000","3334732.35","353957.65" +"801BNYFNCLIN","BNY","Brooklyn Navy Yard","Fixed Asset","3395000","5841794.03","6426000" +"846P-309RBUS","DPR","Department of Parks and Recreation",,"0","16480.00","3010981.55" +"846P-401DMPG","DPR","Department of Parks and Recreation","Fixed Asset","420000","352950.44","7049.56" +"846P-405JPSS","DPR","Department of Parks and Recreation","Fixed Asset","84000","211663.76","1914278.66" +"846P-405JPTK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5907060.79" +"846P-405JUNP","DPR","Department of Parks and Recreation","Fixed Asset","7644000","599144.52","331837.80" +"846P-405JVBB","DPR","Department of Parks and Recreation","Fixed Asset","4556000","117350.61","796290.46" +"846P-405JVBC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1003884.60" +"846P-405MPPG","DPR","Department of Parks and Recreation","Fixed Asset","7399000","19337.01","435662.99" +"801BNYHITN","BNY","Brooklyn Navy Yard","Fixed Asset","2500000","0","0" +"846P-3SOHO","DPR","Department of Parks and Recreation",,"0","0.00","3730227.70" +"846P-401HCSW","DPR","Department of Parks and Recreation","Fixed Asset","1216000","697014.09","5060997.33" +"846P-405MPST","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5391912.24" +"846P-406HHPR","DPR","Department of Parks and Recreation","Fixed Asset","808000","493105.28","3009894.55" +"801BNYLIGHT","BNY","Brooklyn Navy Yard","Fixed Asset","5000000","0","0" +"846P-401HOY2","DPR","Department of Parks and Recreation","Fixed Asset","106000","282373.51","155626.49" +"846P-401JOEM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1532394.63" +"846P-401QSE2","DPR","Department of Parks and Recreation","Fixed Asset","787000","122334.38","6085187.07" +"846P-401TBDR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1137259.20" +"846P-402SOHN","DPR","Department of Parks and Recreation","Fixed Asset","750000","402921.07","1506949.97" +"846P-402TLLP","DPR","Department of Parks and Recreation","Fixed Asset","8606000","332742.64","551432.17" +"846P-403GOR2","DPR","Department of Parks and Recreation","Fixed Asset","0","266212.76","3275041.11" +"846P-403HIN3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1592706.94" +"846P-403NORT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1532182.27" +"801BNYLL11","BNY","Brooklyn Navy Yard","Lump Sum","1159000","333632","5231087" +"846ACEDPR252","DPR","Department of Parks and Recreation","Fixed Asset","507000","345060","0" +"846ACEDPR403","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2720439.63" +"846ACEDPR404","DPR","Department of Parks and Recreation","Fixed Asset","0","34670.91","1453765.98" +"846ACEDPR405","DPR","Department of Parks and Recreation","Fixed Asset","0","56420.00","3996628.53" +"846EDMFPM","DPR","Department of Parks and Recreation","Fixed Asset","26941000","589573.46","984032.87" +"846GKBKGI-01","DPR","Department of Parks and Recreation","Fixed Asset","-31000","1133904.54","1997668.95" +"846GQGIKISE","DPR","Department of Parks and Recreation","Fixed Asset","18000","63500.83","626794.39" +"846GQQNGI-01","DPR","Department of Parks and Recreation","Fixed Asset","3000","2749793.83","3227682.23" +"846GRSIGI-01","DPR","Department of Parks and Recreation","Fixed Asset","652000","1407481.43","301864.86" +"846GXBXBKQ1","DPR","Department of Parks and Recreation","Fixed Asset","-18000","251019.19","654674.73" +"801BNYPRATT2","BNY","Brooklyn Navy Yard",,"279000","0","2185000" +"846GXBXGI-02","DPR","Department of Parks and Recreation","Fixed Asset","0","60000.00","956173.71" +"846GXBXGI-03","DPR","Department of Parks and Recreation","Fixed Asset","4797000","3561.02","521421.98" +"846HIF-1FSPB","DPR","Department of Parks and Recreation","Fixed Asset","1982000","559496.23","6914190.06" +"846HPF-BPPK","DPR","Department of Parks and Recreation","Fixed Asset","17167000","945481.43","482259.47" +"846HWPLZ001R","DPR","Department of Parks and Recreation","Fixed Asset","0","326705.65","4013634.34" +"846IDA21-02","DPR","Department of Parks and Recreation","Fixed Asset","239000","7458.02","1528356.07" +"846LIC-CTSQP","DPR","Department of Parks and Recreation","Fixed Asset","1478000","1406461.77","2363701.96" +"846NDF-CLNKY","DPR","Department of Parks and Recreation","Fixed Asset","1887000","2465236.69","20190983.52" +"846NDF-DYMAN","DPR","Department of Parks and Recreation","Fixed Asset","856000","420567.20","4560137.11" +"846NDF-GRANT","DPR","Department of Parks and Recreation","Fixed Asset","3808000","2589275.87","12709143.30" +"846NDF-HLDN3","DPR","Department of Parks and Recreation","Fixed Asset","0","458421.47","3800681.27" +"846NDF-HLDN4","DPR","Department of Parks and Recreation","Fixed Asset","158000","132852.01","1589259.56" +"846NDF-HLDN5","DPR","Department of Parks and Recreation","Fixed Asset","0","91073.92","1059472.32" +"846NDF-HRPCS","DPR","Department of Parks and Recreation","Fixed Asset","1569000","3366465.12","3360639.46" +"801BNYROOF77","BNY","Brooklyn Navy Yard","Fixed Asset","0","0","0" +"846NDF-IWOOD","DPR","Department of Parks and Recreation","Fixed Asset","4631000","926978.20","4759248.99" +"846NDF-MKECS","DPR","Department of Parks and Recreation","Fixed Asset","733000","636691.43","5005203.65" +"846NDF-MKETT","DPR","Department of Parks and Recreation","Fixed Asset","2160000","889971.13","5824089.41" +"846NDF-MORTN","DPR","Department of Parks and Recreation","Fixed Asset","2513000","100711.95","2799542.56" +"846NDF-NMKE1","DPR","Department of Parks and Recreation","Fixed Asset","0","293967.32","2694167.94" +"846NDF-NMKE2","DPR","Department of Parks and Recreation","Fixed Asset","839000","1596747.42","2396996.18" +"846NDF-OLDSH","DPR","Department of Parks and Recreation","Fixed Asset","10960000","183974.06","1706527.61" +"846NDF-RDFR","DPR","Department of Parks and Recreation","Fixed Asset","3291000","115222.80","6555675.91" +"846NDF-SOAQK","DPR","Department of Parks and Recreation","Fixed Asset","9111000","768359.59","715407.38" +"846NDF-VHALL","DPR","Department of Parks and Recreation","Fixed Asset","159000","780717.23","3589810.64" +"846P-100PBSG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","677267.15" +"846P-101CGDN","DPR","Department of Parks and Recreation","Fixed Asset","520000","400000","0" +"846P-101PULP","DPR","Department of Parks and Recreation","Fixed Asset","0","15727.87","3346152.84" +"846P-101WLSP","DPR","Department of Parks and Recreation","Fixed Asset","0","112622.10","3008129.94" +"846P-403NPBB","DPR","Department of Parks and Recreation","Fixed Asset","1329000","0","151000" +"801BNYRPZBFL","BNY","Brooklyn Navy Yard","ITT, Vehicles, and Equipment","4792000","1014292.91","4892111.97" +"846P-102FDBP","DPR","Department of Parks and Recreation","Fixed Asset","716000","550000","0" +"846P-102HPRC","DPR","Department of Parks and Recreation","Fixed Asset","1381000","4404.38","163595.62" +"846P-102JCAP","DPR","Department of Parks and Recreation","Fixed Asset","7680000","125362.21","374637.79" +"846P-102MNDA","DPR","Department of Parks and Recreation","Fixed Asset","340000","265049.32","1898672.72" +"846P-102PL52","DPR","Department of Parks and Recreation","Fixed Asset","0","8515.10","3655128.78" +"846P-102RJPP","DPR","Department of Parks and Recreation","Fixed Asset","-288000","0.00","533584.61" +"846P-102TOWD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","445734.90" +"846P-102WWGT","DPR","Department of Parks and Recreation","Fixed Asset","0","60625.80","177994.51" +"846P-103CGJF","DPR","Department of Parks and Recreation","Fixed Asset","285000","337373.86","943238.82" +"846P-103CRCS","DPR","Department of Parks and Recreation","Fixed Asset","0","15480.00","1679877.68" +"846P-103RBGT","DPR","Department of Parks and Recreation","Lump Sum","0","27402.89","311454.42" +"846P-103RRP2","DPR","Department of Parks and Recreation","Fixed Asset","0","2220.00","2032729.80" +"846P-104JKIL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1095879.72" +"846P-104MPSK","DPR","Department of Parks and Recreation","Fixed Asset","10876000","157575.04","932866.59" +"801BNYSPKFIR","BNY","Brooklyn Navy Yard","ITT, Vehicles, and Equipment","3145000","451850.18","24536935.27" +"846P-104MRPG","DPR","Department of Parks and Recreation","Fixed Asset","7749000","186652.56","669451.36" +"846P-104SMPG","DPR","Department of Parks and Recreation","Fixed Asset","2562000","84100.23","397611.75" +"846P-105GALO","DPR","Department of Parks and Recreation","Fixed Asset","3015000","4895091.63","2113937.32" +"846P-105GRNW","DPR","Department of Parks and Recreation","Fixed Asset","1140000","29324.95","104417.04" +"846P-105MHGT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","402000","2299.8","51700.2" +"846P-106CRTN","DPR","Department of Parks and Recreation","Fixed Asset","443000","1664832.83","710167.17" +"846P-106GYWI","DPR","Department of Parks and Recreation","Fixed Asset","805000","0","105000" +"846P-106MAPE","DPR","Department of Parks and Recreation","Fixed Asset","0","16010.03","12510072.35" +"846P-106QUAR","DPR","Department of Parks and Recreation","Fixed Asset","1528000","683055.37","5815052.70" +"846P-107CPFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","381000","51686.96","1539111.79" +"846P-107DPDR","DPR","Department of Parks and Recreation","Fixed Asset","0","22931.84","1035686.73" +"846P-107HRSP","DPR","Department of Parks and Recreation","Fixed Asset","200000","421766.66","2123233.34" +"846P-107KOSS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3971897.21" +"846P-107POEP","DPR","Department of Parks and Recreation","Fixed Asset","8087000","32828.27","1044171.73" +"801BNYTIFUND","BNY","Brooklyn Navy Yard","Lump Sum","8370000","0","0" +"846P-107SJDR","DPR","Department of Parks and Recreation","Fixed Asset","0","64076.28","1208088.02" +"846P-107SJRC","DPR","Department of Parks and Recreation","Fixed Asset","17537000","352383.67","325777.80" +"846P-107WBSK","DPR","Department of Parks and Recreation","Fixed Asset","89000","290708.12","1034677.25" +"846P-108EWNP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","197969.00","780137.09" +"846P-108HHPK","DPR","Department of Parks and Recreation","Fixed Asset","0","312021.77","2294586.55" +"846P-108SETN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2183363.57" +"846P-108SPDU","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1557707.72" +"846P-108VCBD","DPR","Department of Parks and Recreation","Fixed Asset","0","45100.00","3525151.64" +"846P-108VCIW","DPR","Department of Parks and Recreation","Fixed Asset","-87000","948.53","3504152.75" +"846P-108WDLN","DPR","Department of Parks and Recreation","Fixed Asset","5602000","26543.72","833636.28" +"846P-108WWFF","DPR","Department of Parks and Recreation","Fixed Asset","28000","327695.07","297304.93" +"846P-108WWST","DPR","Department of Parks and Recreation","Fixed Asset","711000","341516.14","3612434.71" +"846P-109CHLL","DPR","Department of Parks and Recreation","Fixed Asset","1545000","1211647.83","3352.17" +"846P-109NOB1","DPR","Department of Parks and Recreation","Fixed Asset","907000","0","205000" +"850QED1059","DDC","Department of Design and Construction","Lump Sum","7130000","5938908.76","14491928.33" +"801BNYUBFARM","BNY","Brooklyn Navy Yard","Lump Sum","1000000","0","0" +"846P-109NOBE","DPR","Department of Parks and Recreation","Fixed Asset","40000","42835.48","2170660.18" +"846P-109WFNT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","572000","41187.87","19812.13" +"846P-109WGTF","DPR","Department of Parks and Recreation","Fixed Asset","1437000","938752.55","4844.45" +"846P-110CLPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1102059.17" +"846P-110FLAG","DPR","Department of Parks and Recreation","Fixed Asset","379000","288517.80","1200319.32" +"846P-110FPPP","DPR","Department of Parks and Recreation","Fixed Asset","742000","1689953.00","1170678.27" +"846P-110GCWP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","6872000","131108.88","757374.05" +"846P-110HRMO","DPR","Department of Parks and Recreation","Fixed Asset","2944000","204557.07","220000" +"846P-110LOCP","DPR","Department of Parks and Recreation","Fixed Asset","144000","139064.49","935.51" +"846P-110MAN2","DPR","Department of Parks and Recreation","Fixed Asset","8993000","661405.39","308937.11" +"846P-110ODFA","DPR","Department of Parks and Recreation","Fixed Asset","69000","32220.71","315779.29" +"846P-110PFIT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1133941.37" +"846P-110PPTH","DPR","Department of Parks and Recreation","Fixed Asset","692000","0","0" +"846P-111BFIT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","387502.30" +"801BNYUPSTM","BNY","Brooklyn Navy Yard","Fixed Asset","697000","585208.09","4507360" +"846P-111BPWF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","413984.55" +"846P-111BXP1","DPR","Department of Parks and Recreation","Fixed Asset","562000","464465.42","534.58" +"846P-111ESPG","DPR","Department of Parks and Recreation","Fixed Asset","1846000","577207.46","5592884.57" +"846P-111LRTO","DPR","Department of Parks and Recreation","Fixed Asset","0","5446.20","3318840.14" +"846P-112AGNS","DPR","Department of Parks and Recreation","Fixed Asset","191000","278787.88","3522059.37" +"846P-112SETW","DPR","Department of Parks and Recreation","Fixed Asset","181000","131326.27","1007419.02" +"846P-112SHLP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1069000","953921.16","550370.84" +"846P-112WKFD","DPR","Department of Parks and Recreation","Fixed Asset","0","60713.96","5220949.69" +"846P-1ANCH01","DPR","Department of Parks and Recreation","Fixed Asset","-3000","28477.00","9173634.29" +"846P-1ANCH02","DPR","Department of Parks and Recreation","Fixed Asset","-1100000","0.00","16974615.90" +"846P-1ARAELV","DPR","Department of Parks and Recreation","Lump Sum","261000","341981.28","327018.72" +"846P-1AWRWR","DPR","Department of Parks and Recreation","Fixed Asset","3132000","14197","85803" +"846P-1BILYRF","DPR","Department of Parks and Recreation","Fixed Asset","17000","7562.85","167281.02" +"846P-1BOLTPK","DPR","Department of Parks and Recreation","Fixed Asset","9245000","110651.23","968098.77" +"846P-1BWRCTR","DPR","Department of Parks and Recreation","Fixed Asset","-10000","340.00","1264949.18" +"846P-1CASHIL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1041934.34" +"846P-1CHRLRF","DPR","Department of Parks and Recreation","Fixed Asset","6000","16851.83","179295.95" +"846P-1CPI134","DPR","Department of Parks and Recreation","Fixed Asset","0","180721.08","7324087.37" +"846P-1CPIBPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1847783.34" +"846P-1CPIBR2","DPR","Department of Parks and Recreation","Fixed Asset","521000","274785.48","4359501.04" +"846P-1CPIBR3","DPR","Department of Parks and Recreation","Fixed Asset","453000","433273.96","1296035.91" +"846P-1CPIDPG","DPR","Department of Parks and Recreation","Fixed Asset","1327000","744156.90","2066211.10" +"846P-1CPIDVP","DPR","Department of Parks and Recreation","Fixed Asset","1146000","1649256.73","723703.27" +"846P-1CPIEJM","DPR","Department of Parks and Recreation","Fixed Asset","2532000","32357.40","158942.36" +"846P-1CPIFIP","DPR","Department of Parks and Recreation","Fixed Asset","6725000","597615.71","324586.83" +"846P-1CPIHAP","DPR","Department of Parks and Recreation","Fixed Asset","12680000","800006.76","1205035.52" +"846P-1CPIHCS","DPR","Department of Parks and Recreation","Fixed Asset","656000","2098173.34","59823.66" +"846P-1CRO66A","DPR","Department of Parks and Recreation","Lump Sum","0","33920.01","4187305.69" +"846P-1CROT36","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2256279.00" +"846P-1CRPOHS","DPR","Department of Parks and Recreation","Fixed Asset","144000","69789.58","3216533.43" +"846P-1DCTVCP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","90000","205328.41","339955.22" +"846P-1EDENPG","DPR","Department of Parks and Recreation","Fixed Asset","1051000","201972.68","3876178.48" +"846P-1EWENPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1738606.58" +"846P-1GHPCSR","DPR","Department of Parks and Recreation","Fixed Asset","0","159187.54","1648532.83" +"846P-1GIGP01","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1528836.54" +"846P-1HAFFP1","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","35909000","207519.45","2702210.00" +"846P-1HAFFP3","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","5794000","121806.09","882002.46" +"846P-1HAFFP4","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","30156000","753932","200000" +"846P-1HAFFPL","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","20874000","11858495.71","1148220.29" +"846P-1HGCVPR","DPR","Department of Parks and Recreation","Fixed Asset","0","7956.40","9644957.87" +"846P-1HUNTPT","DPR","Department of Parks and Recreation","Fixed Asset","159000","32449.36","640293.38" +"846P-1HVMRCS","DPR","Department of Parks and Recreation","Fixed Asset","328000","94675.77","1459659.50" +"846P-1LZDARF","DPR","Department of Parks and Recreation","Fixed Asset","14000","13542.32","99623.86" +"846P-412BPP4","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1866916.61" +"846P-1MELRO","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6729031.28" +"846P-1OWEND2","DPR","Department of Parks and Recreation","Fixed Asset","0","143052.33","2127742.55" +"846P-1OWEND3","DPR","Department of Parks and Recreation","Fixed Asset","617000","260210.20","2097471.11" +"846P-1PAVBRX","DPR","Department of Parks and Recreation","Fixed Asset","892000","1154652.34","3848273.29" +"846P-1PBEAST","DPR","Department of Parks and Recreation","Fixed Asset","1584000","1384123.59","1891622.17" +"846P-1PDSMRC","DPR","Department of Parks and Recreation","Fixed Asset","12346000","6103196.32","8540080.32" +"846P-1PNYC03","DPR","Department of Parks and Recreation","Fixed Asset","-6000","32623.57","2772585.39" +"846P-1PNYFL1","DPR","Department of Parks and Recreation","Fixed Asset","-57000","0.00","648525.84" +"846P-1PNYFL5","DPR","Department of Parks and Recreation","Fixed Asset","74000","36175.59","922083.69" +"846P-1POECOT","DPR","Department of Parks and Recreation","Fixed Asset","544000","102870.43","653961.78" +"846P-1PTSNPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4578902.03" +"846P-1RNQ22A","DPR","Department of Parks and Recreation","Fixed Asset","41239000","456721.34","2094990.39" +"846P-1RNQARF","DPR","Department of Parks and Recreation","Fixed Asset","-103000","5040.00","5241290.13" +"846P-1RNQRMP","DPR","Department of Parks and Recreation","Fixed Asset","774000","5598232.03","911567.69" +"846P-1SERTRF","DPR","Department of Parks and Recreation","Fixed Asset","-217000","0.00","559730.76" +"846P-1SPACET","DPR","Department of Parks and Recreation","Fixed Asset","2221000","5243331.13","528852.26" +"846P-1SPC21A","DPR","Department of Parks and Recreation","Fixed Asset","355000","2693872.01","1284543.49" +"846P-1STFPEL","DPR","Department of Parks and Recreation","Fixed Asset","328000","1400898.31","2127571.93" +"846P-1VNCFTR","DPR","Department of Parks and Recreation","Fixed Asset","1253000","3560180.39","641776.61" +"846P-1VNFPOL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","648480.02" +"846P-1WASHPK","DPR","Department of Parks and Recreation","Fixed Asset","7555000","225429.41","473470.97" +"846P-1WDLNCS","DPR","Department of Parks and Recreation","Fixed Asset","459000","1343371.41","718762.42" +"846P-1WDLNSS","DPR","Department of Parks and Recreation","Fixed Asset","14000","167396.3","1254851.7" +"846P-1WKFLDC","DPR","Department of Parks and Recreation","Fixed Asset","420000","1885508.35","84491.65" +"846P-1WPSOTO","DPR","Department of Parks and Recreation","Fixed Asset","88000","109185.68","2025615.81" +"846P-1WPWATS","DPR","Department of Parks and Recreation","Fixed Asset","0","126935.19","2397797.37" +"846P-1YANK22","DPR","Department of Parks and Recreation","Fixed Asset","2000","243992.87","1511264.25" +"846P-201FROS","DPR","Department of Parks and Recreation","Fixed Asset","287000","7028.26","1298421.40" +"846P-201JAME","DPR","Department of Parks and Recreation","Fixed Asset","-10000","0.00","255082.60" +"846P-201MCBH","DPR","Department of Parks and Recreation","Fixed Asset","1467000","1574227.76","9306066.07" +"846P-201MCGK","DPR","Department of Parks and Recreation","Fixed Asset","0","284612.20","2155957.44" +"846P-202CADM","DPR","Department of Parks and Recreation","Fixed Asset","18000","832452.10","3544901.26" +"846P-202CBPK","DPR","Department of Parks and Recreation","Fixed Asset","22693000","197064.29","1472538.44" +"846P-202CHAP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","89245.71" +"846P-202CUGP","DPR","Department of Parks and Recreation","Fixed Asset","2286000","1088019.05","3758817.73" +"846P-202GRPL","DPR","Department of Parks and Recreation","Fixed Asset","295000","320606.60","3278468.86" +"846P-202OPGR","DPR","Department of Parks and Recreation","Fixed Asset","3677000","117165.14","545316.87" +"846P-202WASH","DPR","Department of Parks and Recreation","Fixed Asset","0","153906.98","1600630.97" +"846P-202WPDR","DPR","Department of Parks and Recreation","Fixed Asset","23000","34696.64","871165.89" +"846P-203CARV","DPR","Department of Parks and Recreation","Fixed Asset","750000","653539.22","26460.78" +"846P-203CHRL","DPR","Department of Parks and Recreation","Fixed Asset","0","18960.06","1340443.63" +"846P-203D17E","DPR","Department of Parks and Recreation","Fixed Asset","72000","51421.64","9101945.81" +"846P-203FULT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1824298.43" +"846P-203HVKP","DPR","Department of Parks and Recreation","Fixed Asset","2054000","0","394000" +"846P-203LFGP","DPR","Department of Parks and Recreation","Fixed Asset","3977000","2648541.53","616823.26" +"846P-203SBIP","DPR","Department of Parks and Recreation","Fixed Asset","6521000","1620.11","73379.89" +"846P-203SRTG","DPR","Department of Parks and Recreation","Fixed Asset","0","54952.39","2443096.25" +"846P-203STAR","DPR","Department of Parks and Recreation","Fixed Asset","55000","133974.60","285025.40" +"846P-203SUMN","DPR","Department of Parks and Recreation","Fixed Asset","0","1760.00","6259824.90" +"846P-204BPST","DPR","Department of Parks and Recreation","Fixed Asset","120000","355319.16","619680.84" +"846P-204GRCK","DPR","Department of Parks and Recreation","Fixed Asset","404000","206671.72","3811092.20" +"846P-204ISPD","DPR","Department of Parks and Recreation","Fixed Asset","1680000","15000","167000" +"846P-204MHPG","DPR","Department of Parks and Recreation","Fixed Asset","7910000","145555.92","690140.63" +"846P-204RUDD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3534450.20" +"846P-205CYPS","DPR","Department of Parks and Recreation","Fixed Asset","0","26798.39","5976176.43" +"846P-205D17H","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3282874.48" +"846P-205SHNK","DPR","Department of Parks and Recreation","Fixed Asset","88000","856325.81","5122832.48" +"846P-206SMRY","DPR","Department of Parks and Recreation","Fixed Asset","0","7879.36","1192695.89" +"846P-207GWHB","DPR","Department of Parks and Recreation","Fixed Asset","105000","324001.41","917305.09" +"846P-207RAIN","DPR","Department of Parks and Recreation","Fixed Asset","100000","112909.87","1764821.15" +"846P-207SPHD","DPR","Department of Parks and Recreation","Fixed Asset","33000","43697.05","796403.53" +"846P-207SSPK","DPR","Department of Parks and Recreation","Fixed Asset","0","1000.00","1179089.71" +"846P-207SUNS","DPR","Department of Parks and Recreation","Fixed Asset","-30000","5525.05","4196979.93" +"846P-208BRBC","DPR","Department of Parks and Recreation","Fixed Asset","338000","38594.83","245232.37" +"846P-208BROW","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","930096.08" +"846P-208HVAC","DPR","Department of Parks and Recreation","Fixed Asset","126000","158713.05","4098755.24" +"846P-208K11E","DPR","Department of Parks and Recreation","Fixed Asset","161000","112876.19","2098482.71" +"846P-208LIN2","DPR","Department of Parks and Recreation","Fixed Asset","0","983671.06","3048082.35" +"846P-208LTCS","DPR","Department of Parks and Recreation","Fixed Asset","3552000","3453188.91","3005247.44" +"846P-208SJFA","DPR","Department of Parks and Recreation","Fixed Asset","168000","75218.34","681195.07" +"846P-208STFE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","539695.83" +"846P-209MSGT","DPR","Department of Parks and Recreation","Fixed Asset","86000","54037.18","103073.73" +"846P-209WNGE","DPR","Department of Parks and Recreation","Fixed Asset","243000","800386.90","1968100.04" +"846P-210DBCS","DPR","Department of Parks and Recreation","Fixed Asset","0","20691.00","2423660.50" +"801SANDBCT","SBS","Department of Small Business Services",,"2700000","0","0" +"801SANDB3416","BNY","Brooklyn Navy Yard","Fixed Asset","516000","370472.42","831240.00" +"846P-210DBDM","DPR","Department of Parks and Recreation","Fixed Asset","2525000","0","300000" +"846P-210DBPK","DPR","Department of Parks and Recreation","Fixed Asset","372000","315862.75","1423137.25" +"846P-210DBPP","DPR","Department of Parks and Recreation","Fixed Asset","2324000","5229307.71","75692.29" +"846P-210DOG","DPR","Department of Parks and Recreation","Fixed Asset","164000","42789.10","1120107.04" +"846P-210FTHM","DPR","Department of Parks and Recreation","Fixed Asset","0","3662.55","2451701.18" +"846P-210JCAR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","3136435.11" +"846P-210JJCP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","101000","193191.10","4754917.81" +"846P-210JPPT","DPR","Department of Parks and Recreation","Fixed Asset","926000","131980.04","1364019.96" +"846P-210RUPP","DPR","Department of Parks and Recreation","Fixed Asset","1769000","222007.21","5109204.89" +"846P-210SHCP","DPR","Department of Parks and Recreation","Fixed Asset","0","22832.80","1527560.62" +"846P-210SHRD","DPR","Department of Parks and Recreation","Fixed Asset","125000","209045.10","5306210.80" +"846P-210SHRS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","672982.34" +"846P-210SRPF","DPR","Department of Parks and Recreation","Fixed Asset","278000","698211.85","887788.15" +"846P-210VINP","DPR","Department of Parks and Recreation","Fixed Asset","1001000","178487.60","3263041.85" +"801SANDB3820","BNY","Brooklyn Navy Yard","Fixed Asset","10934000","569039.72","5813406.56" +"846P-211BBCH","DPR","Department of Parks and Recreation","Fixed Asset","0","304932.57","5214336.99" +"846P-211BBST","DPR","Department of Parks and Recreation","Fixed Asset","7748000","110341.83","591603.61" +"846P-211BENS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1337036.54" +"846P-211BHPI","DPR","Department of Parks and Recreation","Fixed Asset","13436000","378130.43","628123.52" +"846P-211BNHT","DPR","Department of Parks and Recreation","Fixed Asset","-2000","0.00","7748817.61" +"846P-211SGBG","DPR","Department of Parks and Recreation","Fixed Asset","0","0","123285" +"846P-212ALBE","DPR","Department of Parks and Recreation","Fixed Asset","76000","51964.43","708555.08" +"846P-212FRFD","DPR","Department of Parks and Recreation","Fixed Asset","0","10124.21","2851314.96" +"846P-213ALAE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","929005.07" +"846P-213ALDR","DPR","Department of Parks and Recreation","Fixed Asset","1598000","20000","358000" +"846P-213ALVY","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4097615.49" +"846P-213ASRL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","95213.12" +"846P-213BABI","DPR","Department of Parks and Recreation","Fixed Asset","0","82293.69","1868148.91" +"846P-213BOIL","DPR","Department of Parks and Recreation","Fixed Asset","128000","172078.87","2511762.46" +"801SANDRBCT","SBS","Department of Small Business Services",,"18524000","681153.08","1121080.92" +"801SANDB4225","BNY","Brooklyn Navy Yard","Fixed Asset","14181000","0","1715774" +"846P-213BPLG","DPR","Department of Parks and Recreation","Fixed Asset","3512000","149030.85","445887.59" +"846P-213CVPK","DPR","Department of Parks and Recreation","Fixed Asset","823000","981150.78","2043849.22" +"846P-213KSRP","DPR","Department of Parks and Recreation","Fixed Asset","7840000","21185.81","78814.19" +"846P-213SNPK","DPR","Department of Parks and Recreation","Lump Sum","2797000","5223133.78","1524309.90" +"846P-213SURF","DPR","Department of Parks and Recreation","Fixed Asset","0","74849.09","3761965.29" +"846P-213WEST","DPR","Department of Parks and Recreation","Fixed Asset","1108000","2265927.17","2088305.12" +"846P-214DIGI","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3396279.55" +"846P-214KPKP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","249539.70" +"846P-214LTFN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1544379.11" +"846P-214UMMA","DPR","Department of Parks and Recreation","Fixed Asset","3382000","2115683.48","465723.37" +"846P-215BBPG","DPR","Department of Parks and Recreation","Fixed Asset","183000","394795.88","5536216.48" +"846P-215HCPL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3641363.35" +"846P-215MBGD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1065333.42" +"846P-215MCDD","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","192718.19","3389651.00" +"801SANDB4270","BNY","Brooklyn Navy Yard","Fixed Asset","1050000","0","134477" +"846P-216BHIP","DPR","Department of Parks and Recreation","Fixed Asset","926000","465969.13","3841740.87" +"846P-216CHES","DPR","Department of Parks and Recreation","Fixed Asset","9637000","12605.04","697079.96" +"846P-216K11C","DPR","Department of Parks and Recreation","Fixed Asset","-51000","17440.00","2133166.65" +"846P-216OCAN","DPR","Department of Parks and Recreation","Fixed Asset","0","226166.21","4941045.71" +"846P-216OSBN","DPR","Department of Parks and Recreation","Fixed Asset","0","17996.18","2614167.26" +"846P-216OSBO","DPR","Department of Parks and Recreation","Fixed Asset","957000","424837.28","455397.27" +"846P-216POWL","DPR","Department of Parks and Recreation","Fixed Asset","0","3607.00","3084883.44" +"846P-216PS25","DPR","Department of Parks and Recreation","Fixed Asset","0","28728.94","1209226.38" +"846P-217AQBO","DPR","Department of Parks and Recreation","Fixed Asset","0","3073.06","605188.78" +"846P-217D017","DPR","Department of Parks and Recreation","Fixed Asset","597000","968690.91","6212130.50" +"846P-217HMZE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","203396.61" +"846P-217NOST","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2107747.94" +"846P-217PADG","DPR","Department of Parks and Recreation","Fixed Asset","4033000","2242995.70","1072220.08" +"846P-217PBYC","DPR","Department of Parks and Recreation","Fixed Asset","0","0","205934" +"801SANDB4271","BNY","Brooklyn Navy Yard","Fixed Asset","1678000","352110.11","2789188.89" +"846P-217WYKF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","614418.44" +"846P-218CCMF","DPR","Department of Parks and Recreation","Fixed Asset","595000","101638.98","4479664.27" +"846P-218HKMN","DPR","Department of Parks and Recreation","Fixed Asset","4294000","104223.05","430369.58" +"846P-218JFEE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","2979877.96" +"846P-218LIND","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1941250.51" +"846P-218LOTT","DPR","Department of Parks and Recreation","Fixed Asset","4923000","203554.99","666179.99" +"846P-218MPNC","DPR","Department of Parks and Recreation","Fixed Asset","80000","140060.35","2595868.18" +"846P-218MPVT","DPR","Department of Parks and Recreation","Fixed Asset","0","0","48550" +"846P-2ANCH03","DPR","Department of Parks and Recreation","Fixed Asset","0","423163.50","13628428.03" +"846P-2ANCH04","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6532564.16" +"846P-2BARRYP","DPR","Department of Parks and Recreation","Fixed Asset","1343000","668471.83","2635758.56" +"846P-2BELTPA","DPR","Department of Parks and Recreation","Fixed Asset","0","48541.00","6714305.26" +"846P-2BELTPC","DPR","Department of Parks and Recreation","Lump Sum","0","1083221.16","4894057.99" +"846P-2BELTPD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1411923.19" +"801SANDB4273","BNY","Brooklyn Navy Yard","Fixed Asset","1260000","0","181050" +"846P-2BELTPE","DPR","Department of Parks and Recreation","Fixed Asset","1694000","3558238.54","9182454.38" +"846P-2BKPLG1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4091015.28" +"846P-2BKSTF1","DPR","Department of Parks and Recreation","Fixed Asset","1712000","884868.83","2615131.17" +"846P-2BRIGHM","DPR","Department of Parks and Recreation","Fixed Asset","0","119760.23","6408064.34" +"846P-2BSKBL1","DPR","Department of Parks and Recreation","Fixed Asset","566000","1035722.25","2268063.92" +"846P-2BWCC02","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1120050.18" +"846P-2BWCC03","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1296292.25" +"846P-2BWCC04","DPR","Department of Parks and Recreation","Fixed Asset","54000","499648.99","1816530.17" +"846P-2BWCC09","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2619696.87" +"846P-2BWRPAV","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","488096.93" +"846P-2CIBBOL","DPR","Department of Parks and Recreation","Fixed Asset","0","111623.51","3977205.70" +"846P-2CIBWLK","DPR","Department of Parks and Recreation","Fixed Asset","0","10278.00","8552727.50" +"801SANDB4274","BNY","Brooklyn Navy Yard","Fixed Asset","1872000","0","1154204" +"846P-2CIWALK","DPR","Department of Parks and Recreation","Fixed Asset","13663000","33168.35","1267060.20" +"846P-2COOPCS","DPR","Department of Parks and Recreation","Fixed Asset","438000","226491.46","1544720.78" +"846P-2CPIBN2","DPR","Department of Parks and Recreation",,"0","339746.85","4759128.26" +"846P-2CPIBPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6156268.59" +"846P-2CPIDMC","DPR","Department of Parks and Recreation","Fixed Asset","6959000","180311.9","602351.7" +"846P-2CPIEPP","DPR","Department of Parks and Recreation","Fixed Asset","-44000","281049.00","3770609.18" +"846P-2CPIGPP","DPR","Department of Parks and Recreation","Fixed Asset","10266000","391073.86","773546.86" +"846P-2CPIHCP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","8548000","68978.00","238168.19" +"846P-2CPIJCS","DPR","Department of Parks and Recreation","Fixed Asset","797000","2042684.83","25612.17" +"846P-2CPIJRM","DPR","Department of Parks and Recreation","Fixed Asset","7540000","4423167.58","198998.42" +"846P-2CPILGD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2961806.15" +"846P-2CPILIP","DPR","Department of Parks and Recreation","Fixed Asset","7612000","734937.58","238864.77" +"846P-2CPILWS","DPR","Department of Parks and Recreation","Fixed Asset","0","138330.10","1815069.36" +"846P-2CPINEW","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1241260.86" +"801SANDB4275","BNY","Brooklyn Navy Yard","Fixed Asset","12080000","300258.54","21572105" +"846P-2CPIPEN","DPR","Department of Parks and Recreation","Fixed Asset","0","7532.50","2097088.98" +"846P-2CPIPHP","DPR","Department of Parks and Recreation","Fixed Asset","8201000","20487.66","565396.90" +"846P-2CPIRHP","DPR","Department of Parks and Recreation","Fixed Asset","1680000","18231.22","190768.78" +"846P-2CPISBF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4427874.78" +"846P-2CPITBP","DPR","Department of Parks and Recreation","Fixed Asset","0","733.58","5307406.71" +"846P-2FRNDRF","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1000","21307.15","516627.08" +"846P-2GPWB12","DPR","Department of Parks and Recreation","Fixed Asset","181000","224043.06","1144775.94" +"846P-2GPWB25","DPR","Department of Parks and Recreation","Fixed Asset","2708000","1213463.14","9095044.73" +"846P-2GPWBKT","DPR","Department of Parks and Recreation","Fixed Asset","0","270983.78","6659762.68" +"846P-2GRNTHB","DPR","Department of Parks and Recreation","Fixed Asset","1094000","538929.13","899221.06" +"846P-2GTGRDN","DPR","Department of Parks and Recreation","Fixed Asset","0","24237.05","629042.66" +"846P-2HOOPER","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","177821.21" +"801SANDB4307","BNY","Brooklyn Navy Yard","Fixed Asset","7407000","0","776261" +"846P-2HWRDPL","DPR","Department of Parks and Recreation","Fixed Asset","-36000","0.00","1257808.08" +"846P-2JRCOUR","DPR","Department of Parks and Recreation","Fixed Asset","5652000","405025.10","258521.86" +"846P-2MTFLTR","DPR","Department of Parks and Recreation","Fixed Asset","3391000","7379.21","222620.79" +"846P-2MTRORC","DPR","Department of Parks and Recreation","Fixed Asset","4202000","0","0" +"846P-2PDSSRC","DPR","Department of Parks and Recreation","Fixed Asset","8935000","1577080.77","7785975.29" +"846P-2PEPWIN","DPR","Department of Parks and Recreation","Fixed Asset","15000","175348.02","957655.22" +"846P-2PGRD11","DPR","Department of Parks and Recreation","Fixed Asset","40000","220675.84","3141348.35" +"846P-2PLAY13","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1713906.89" +"846P-2PLG13F","DPR","Department of Parks and Recreation","Fixed Asset","0","27804.08","2309558.51" +"846P-2PLG14B","DPR","Department of Parks and Recreation","Fixed Asset","0","601.15","2678334.80" +"846P-2PLG14F","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","140025.84" +"846P-2PLG15A","DPR","Department of Parks and Recreation","Fixed Asset","0","270.04","130884.19" +"801SANDB4388","BNY","Brooklyn Navy Yard","Fixed Asset","1763000","79669.2","249053" +"846P-2PLG17A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","224116.11" +"846P-2PLGR9E","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3000","0.00","1686026.69" +"846P-2PNYC01","DPR","Department of Parks and Recreation","Fixed Asset","0","2595610.58","54267787.23" +"846P-2PNYC05","DPR","Department of Parks and Recreation","Fixed Asset","656000","801643.44","9816769.32" +"846P-2PPESIT","DPR","Department of Parks and Recreation","Fixed Asset","124000","106223.52","818677.11" +"846P-2PPLHFR","DPR","Department of Parks and Recreation","Fixed Asset","1247000","9663.57","1336.43" +"846P-2SPUD69","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","1076289.55" +"846P-2STFBSH","DPR","Department of Parks and Recreation","Fixed Asset","-410000","0.00","752639.26" +"846P-2STFHM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1886955.12" +"846P-2STFLEF","DPR","Department of Parks and Recreation","Fixed Asset","-400000","0.00","627223.44" +"846P-2STFMH","DPR","Department of Parks and Recreation","Fixed Asset","0","5271.87","3694546.84" +"846P-2SUCSGN","DPR","Department of Parks and Recreation","Fixed Asset","0","39437.54","2241640.10" +"846P-2WPKBGH","DPR","Department of Parks and Recreation","Fixed Asset","1519000","122910.77","4718056.08" +"801SANDB4582","BNY","Brooklyn Navy Yard",,"10111000","0.0","391091.4" +"846P-300FDCG","DPR","Department of Parks and Recreation","Fixed Asset","12000","0.00","194122.76" +"846P-301BPBP","DPR","Department of Parks and Recreation","Fixed Asset","48000","1832602.66","15319910.26" +"846P-301BPCG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","852422.29" +"846P-301BPCS","DPR","Department of Parks and Recreation","Fixed Asset","-40000","0.00","2025405.04" +"846P-301WAPT","DPR","Department of Parks and Recreation","Fixed Asset","46000","27822.40","196177.60" +"846P-302BLEE","DPR","Department of Parks and Recreation","Fixed Asset","1395000","1046764.48","746624.81" +"846P-302BLEK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1049836.84" +"846P-302CJSC","DPR","Department of Parks and Recreation","Lump Sum","0","390.00","1293367.23" +"846P-302DPCA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2298596.60" +"846P-302DRYD","DPR","Department of Parks and Recreation","Fixed Asset","-1000","0.00","2060103.73" +"846P-302GLAF","DPR","Department of Parks and Recreation","Fixed Asset","0","294244.46","2076088.94" +"846P-302HUHO","DPR","Department of Parks and Recreation","Fixed Asset","5098000","11245.58","220746.28" +"846P-302MHSA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1648795.30" +"826CAT-392","DEP","Department of Environmental Protection","Lump Sum","9850000","1015664.75","21808404.44" +"801SANDB4583","BNY","Brooklyn Navy Yard",,"11187000","0.0","350890.2" +"846P-303ABCP","DPR","Department of Parks and Recreation","Fixed Asset","7830000","9867.02","35132.98" +"846P-303CRES","DPR","Department of Parks and Recreation","Fixed Asset","277000","62303.97","12696.03" +"846P-303ERSF","DPR","Department of Parks and Recreation","Fixed Asset","0","1800.00","3292549.57" +"846P-303HFRC","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","100273000","2949945.28","1510565.37" +"846P-303HMFS","DPR","Department of Parks and Recreation","Fixed Asset","1366000","1037387.03","2510863.97" +"846P-303LFPG","DPR","Department of Parks and Recreation","Fixed Asset","2564000","3350218.00","1447379.79" +"846P-303MCKY","DPR","Department of Parks and Recreation","Fixed Asset","0","338367.91","3064789.56" +"846P-303SDRP","DPR","Department of Parks and Recreation","Fixed Asset","6306000","53663.87","939938.28" +"846P-303TPSQ","DPR","Department of Parks and Recreation","Fixed Asset","1541000","643706.16","4910395.79" +"846P-303TSPK","DPR","Department of Parks and Recreation","Fixed Asset","12436000","1234393.21","29044.58" +"846P-30420S2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2997147.36" +"846P-304CBBC","DPR","Department of Parks and Recreation","Fixed Asset","106000","43725.22","1219313.82" +"846P-304CRLB","DPR","Department of Parks and Recreation","Fixed Asset","0","41305.47","3320790.04" +"846P-304DWIT","DPR","Department of Parks and Recreation","Fixed Asset","0","5551.13","1916748.80" +"801SANDBNYAM","BNY","Brooklyn Navy Yard","Lump Sum","29587000","0","0" +"846P-306ASEQ","DPR","Department of Parks and Recreation","Fixed Asset","541000","61543.98","913817.33" +"846P-306ASGP","DPR","Department of Parks and Recreation","Fixed Asset","4292000","67077.72","630178.40" +"846P-306DAGP","DPR","Department of Parks and Recreation","Fixed Asset","3809000","9752.71","205247.29" +"846P-306GLIC","DPR","Department of Parks and Recreation","Fixed Asset","20226000","8142.63","229857.37" +"846P-306PETD","DPR","Department of Parks and Recreation","Fixed Asset","77000","138972.71","554099.21" +"846P-306SSHR","DPR","Department of Parks and Recreation","Fixed Asset","5013000","513440.46","122434.05" +"846P-306STVA","DPR","Department of Parks and Recreation","Fixed Asset","5418000","4363241.59","946587.47" +"846P-306TRYG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1790524.32" +"846P-306TUDO","DPR","Department of Parks and Recreation","Fixed Asset","0","105881.05","1206395.25" +"846P-307BENN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2790032.80" +"846P-307BLOC","DPR","Department of Parks and Recreation","Fixed Asset","-5000","9680.00","1321262.09" +"846P-307BLOP","DPR","Department of Parks and Recreation","Fixed Asset","0","4143.67","4725714.91" +"846P-307BMAP","DPR","Department of Parks and Recreation","Fixed Asset","5000","420550.59","1335405.22" +"846P-307FDBB","DPR","Department of Parks and Recreation","Fixed Asset","9643000","373508.53","543049.43" +"846P-307RAMP","DPR","Department of Parks and Recreation","Fixed Asset","1800000","40966.34","34033.66" +"846P-307RIBF","DPR","Department of Parks and Recreation","Fixed Asset","375000","0","51000" +"846P-307RIVR","DPR","Department of Parks and Recreation","Fixed Asset","11669000","629207.36","227397.33" +"846P-307RPAF","DPR","Department of Parks and Recreation","Fixed Asset","313000","4198.16","38801.84" +"846P-307RPKS","DPR","Department of Parks and Recreation","Fixed Asset","6089000","1225701.89","20512865.86" +"846P-307RPPI","DPR","Department of Parks and Recreation","Fixed Asset","21000","339729.21","7026194.65" +"846P-307RPRP","DPR","Department of Parks and Recreation","Fixed Asset","199000","154489.04","642726.56" +"846P-307RPTH","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2213638.05" +"846P-307RS91","DPR","Department of Parks and Recreation","Fixed Asset","1693000","983214.0","125305.6" +"846P-307RSTF","DPR","Department of Parks and Recreation","Fixed Asset","1847000","1464468","0" +"846P-307SAPO","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","79000","73315.05","1931350.03" +"846P-307SASM","DPR","Department of Parks and Recreation","Fixed Asset","77473000","2037705.48","1446727.35" +"846P-307STGR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1439518.26" +"846P-308EREI","DPR","Department of Parks and Recreation","Fixed Asset","0","8446.20","2412576.25" +"846P-308JJPK","DPR","Department of Parks and Recreation","Fixed Asset","0","129075.80","682279.37" +"846P-308SPCS","DPR","Department of Parks and Recreation","Fixed Asset","100000","7980.83","1948138.78" +"846P-309ANUN","DPR","Department of Parks and Recreation","Fixed Asset","22000","174631.78","539570.27" +"846P-309JRFA","DPR","Department of Parks and Recreation","Fixed Asset","-265000","6527.75","124026.89" +"846P-309JRRC","DPR","Department of Parks and Recreation","Fixed Asset","975000","753075.18","4028184.69" +"846P-309JSST","DPR","Department of Parks and Recreation","Fixed Asset","0","9890.19","1505545.67" +"846P-309MOR2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2967149.08" +"846P-309MPMP","DPR","Department of Parks and Recreation","Fixed Asset","0","41257.74","3336507.80" +"846P-309MSSC","DPR","Department of Parks and Recreation","Fixed Asset","7242000","126889.47","740660.53" +"846P-309SKRP","DPR","Department of Parks and Recreation","Fixed Asset","0","14655.60","2408207.97" +"846P-309SSTF","DPR","Department of Parks and Recreation","Fixed Asset","0","34634.91","2033277.34" +"846P-309STN4","DPR","Department of Parks and Recreation","Fixed Asset","3043000","211176.08","300614.95" +"846P-309STNC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1514445.68" +"846P-310CCPG","DPR","Department of Parks and Recreation","Fixed Asset","35000","0.00","469731.76" +"846P-310FJTC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","747354.55" +"846P-311HEL3","DPR","Department of Parks and Recreation","Fixed Asset","710000","0.00","3365450.73" +"801BNYMWBEEI","BNY","Brooklyn Navy Yard","Lump Sum","6500000","0","0" +"846P-311HWTR","DPR","Department of Parks and Recreation","Fixed Asset","-44000","24770.75","5235156.67" +"846P-311MCST","DPR","Department of Parks and Recreation","Fixed Asset","4521000","329159.58","205781.98" +"846P-311MGFI","DPR","Department of Parks and Recreation","Fixed Asset","144000","175184.20","8021082.06" +"846P-311P155","DPR","Department of Parks and Recreation","Fixed Asset","665000","353528.41","281471.59" +"846P-311PFFA","DPR","Department of Parks and Recreation","Fixed Asset","1000","0","0" +"846P-311PFRC","DPR","Department of Parks and Recreation","Fixed Asset","5720000","11649.64","263350.36" +"846P-311PFRI","DPR","Department of Parks and Recreation","Fixed Asset","77000","224092.38","1073439.66" +"846P-311PRPL","DPR","Department of Parks and Recreation","Fixed Asset","0","2472.01","1406228.76" +"846P-311RILS","DPR","Department of Parks and Recreation","Fixed Asset","1249000","0.00","2559825.06" +"846P-311RIPW","DPR","Department of Parks and Recreation","Fixed Asset","636000","0","0" +"846P-311RSTF","DPR","Department of Parks and Recreation","Fixed Asset","2574000","433862.67","5347587.33" +"846P-311TJDR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","2418000","0","200000" +"846P-311TJFA","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","115000","19821.81","178.19" +"846P-311TJMP","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","316000","384668.92","460331.08" +"801BNYSTEAM2","BNY","Brooklyn Navy Yard","Fixed Asset","175000","0","0" +"846P-403TPP4","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","7330338.18" +"846P-403TRVR","DPR","Department of Parks and Recreation","Fixed Asset","1193000","0","388000" +"846P-403TTOT","DPR","Department of Parks and Recreation","Fixed Asset","0","100000.00","2000831.08" +"846P-404ATRI","DPR","Department of Parks and Recreation","Fixed Asset","386000","60773.33","515114.67" +"846P-404CCPS","DPR","Department of Parks and Recreation","Fixed Asset","7000","852829.25","4865553.04" +"846P-404CROW","DPR","Department of Parks and Recreation","Fixed Asset","1684000","562197.10","2401710.18" +"846P-404GSPS","DPR","Department of Parks and Recreation","Fixed Asset","0","29389.84","576615.66" +"846P-404HOPK","DPR","Department of Parks and Recreation","Fixed Asset","9532000","13059.44","201940.56" +"846P-404JCPI","DPR","Department of Parks and Recreation","Fixed Asset","1904000","2156751.25","1322531.87" +"846P-404LIND","DPR","Department of Parks and Recreation","Fixed Asset","2934000","1421032.86","2298096.11" +"846P-404NTPG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1443115.04" +"846P-404PATF","DPR","Department of Parks and Recreation","Fixed Asset","0","60653.70","906491.79" +"846P-404PKAM","DPR","Department of Parks and Recreation","Fixed Asset","10643000","460120.85","493275.84" +"846P-404WMPG","DPR","Department of Parks and Recreation","Fixed Asset","1824000","2090776.98","1398925.49" +"846P-407PG21","DPR","Department of Parks and Recreation","Fixed Asset","1178000","555436.33","469563.67" +"846P-407PWLL","DPR","Department of Parks and Recreation","Fixed Asset","3214000","162339.92","342852.08" +"846P-407WBPK","DPR","Department of Parks and Recreation","Fixed Asset","7108000","149479.87","624091.13" +"846P-408CHLG","DPR","Department of Parks and Recreation","Fixed Asset","6780000","352617.49","420953.56" +"846P-408CPB2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1713018.11" +"846P-408CPGA","DPR","Department of Parks and Recreation","Fixed Asset","23422000","18685666.72","7992246.68" +"846P-408CPPA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2974774.28" +"846P-408HOV2","DPR","Department of Parks and Recreation","Fixed Asset","5034000","0.00","803181.36" +"846P-408TIL2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1400495.00" +"846P-408TILL","DPR","Department of Parks and Recreation","Fixed Asset","0","7950.00","1172088.50" +"846P-408VAN2","DPR","Department of Parks and Recreation","Fixed Asset","0","174467.70","4194494.66" +"846P-408VAND","DPR","Department of Parks and Recreation","Fixed Asset","0","147299.96","2210445.82" +"846P-409DEMO","DPR","Department of Parks and Recreation","Fixed Asset","0","9826.37","683625.43" +"846P-409EQTY","DPR","Department of Parks and Recreation","Fixed Asset","2948000","287678.12","540132.73" +"846P-409FPAP","DPR","Department of Parks and Recreation","Fixed Asset","886000","2086093.65","2403906.35" +"846P-409MARD","DPR","Department of Parks and Recreation","Fixed Asset","0","52959.44","3895464.03" +"846P-409PRPC","DPR","Department of Parks and Recreation","Fixed Asset","4787000","24873.11","157610.72" +"846P-410ALST","DPR","Department of Parks and Recreation","Fixed Asset","0","101277.68","1563626.13" +"846P-410PEBP","DPR","Department of Parks and Recreation","Fixed Asset","0","287708.06","1564284.63" +"846P-410ROCK","DPR","Department of Parks and Recreation","Fixed Asset","9300000","501949.14","528392.68" +"846P-410SCN2","DPR","Department of Parks and Recreation","Fixed Asset","1128000","149305.87","3053417.90" +"846P-410SFTF","DPR","Department of Parks and Recreation","Fixed Asset","1679000","1282474","0" +"846P-410TPAF","DPR","Department of Parks and Recreation","Fixed Asset","899000","4943.06","108056.94" +"846P-410TUDO","DPR","Department of Parks and Recreation","Fixed Asset","309000","264599.07","400.93" +"846P-411APE2","DPR","Department of Parks and Recreation","Fixed Asset","607000","739884.55","28932487.26" +"846P-411CDTR","DPR","Department of Parks and Recreation","Fixed Asset","0","23273.11","754958.59" +"846P-411CRCH","DPR","Department of Parks and Recreation","Fixed Asset","441000","226936.7","28053.3" +"846P-411CRPG","DPR","Department of Parks and Recreation","Fixed Asset","6912000","356657.45","455943.20" +"846P-411OKPT","DPR","Department of Parks and Recreation","Fixed Asset","0","3022.26","631865.59" +"846P-411SWP2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1151962.87" +"846P-411TELE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3461000","323366.81","321989.34" +"846P-412BAI2","DPR","Department of Parks and Recreation","Fixed Asset","14639000","309806.48","1133679.89" +"846P-412BLST","DPR","Department of Parks and Recreation","Fixed Asset","852000","21564.31","80435.69" +"846P-412BPP3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1678753.02" +"846P-412BPTH","DPR","Department of Parks and Recreation","Fixed Asset","116000","400617.32","137382.68" +"846P-412CRDP","DPR","Department of Parks and Recreation","Fixed Asset","12914000","377163.33","308551.37" +"846P-412DKWP","DPR","Department of Parks and Recreation","Fixed Asset","0","50429.94","1016674.41" +"846P-412DOP2","DPR","Department of Parks and Recreation","Fixed Asset","0","44921.28","2418762.86" +"846P-412DOP3","DPR","Department of Parks and Recreation","Fixed Asset","4616000","388643.48","682391.07" +"826CAN-HYDRO","DEP","Department of Environmental Protection","Lump Sum","15700000","1602546.74","521736.80" +"846P-412GECG","DPR","Department of Parks and Recreation","Fixed Asset","424000","350000","0" +"846P-412HARP","DPR","Department of Parks and Recreation","Fixed Asset","3303000","282285.96","290401.52" +"846P-412HVDP","DPR","Department of Parks and Recreation","Fixed Asset","0","14000.00","1489122.32" +"846P-412JAMP","DPR","Department of Parks and Recreation","Fixed Asset","1536000","347012.84","4134728.18" +"846P-412JMIC","DPR","Department of Parks and Recreation","Fixed Asset","0","97234.94","4303297.49" +"846P-412KLWP","DPR","Department of Parks and Recreation","Fixed Asset","20538000","94043.98","939061.02" +"846P-412MBPF","DPR","Department of Parks and Recreation","Fixed Asset","7852000","233684.91","512203.89" +"846P-412P157","DPR","Department of Parks and Recreation","Fixed Asset","854000","762036.08","22963.92" +"846P-412RCON","DPR","Department of Parks and Recreation","Fixed Asset","130000","0.00","514833.68" +"846P-412RKGZ","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2202124.96" +"846P-412RKPP","DPR","Department of Parks and Recreation","Fixed Asset","5112000","80776.94","931629.01" +"846P-412RWIL","DPR","Department of Parks and Recreation","Fixed Asset","334000","222259.99","5197644.57" +"846P-412RWP3","DPR","Department of Parks and Recreation","Fixed Asset","981000","241452.90","1745695.97" +"846P-412SRPC","DPR","Department of Parks and Recreation","Fixed Asset","1480000","2426691.34","3447119.73" +"846P-412WATR","DPR","Department of Parks and Recreation","Fixed Asset","876000","795174.36","194340.64" +"846P-413BRKE","DPR","Department of Parks and Recreation","Fixed Asset","2271000","159636.45","164470.28" +"846P-413BRO3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1341383.42" +"846P-413BRSY","DPR","Department of Parks and Recreation","Fixed Asset","0","36632.42","2209897.91" +"846P-413CAMB","DPR","Department of Parks and Recreation","Fixed Asset","4632000","25017.5","686982.5" +"846P-413CAST","DPR","Department of Parks and Recreation","Fixed Asset","0","445331.82","2875331.16" +"846P-413COV2","DPR","Department of Parks and Recreation","Fixed Asset","800000","399428.62","3501377.90" +"846P-413ESPG","DPR","Department of Parks and Recreation","Fixed Asset","7156000","160580.22","528164.78" +"846P-413IDPK","DPR","Department of Parks and Recreation","Fixed Asset","17000","383117.89","8359828.99" +"846P-413IDPM","DPR","Department of Parks and Recreation","Fixed Asset","2533000","46642.65","88695.17" +"846P-413LAPC","DPR","Department of Parks and Recreation","Fixed Asset","5245000","417790.19","323814.02" +"846P-413LPCT","DPR","Department of Parks and Recreation","Fixed Asset","902000","487148.28","4341206.75" +"846P-413READ","DPR","Department of Parks and Recreation","Fixed Asset","9000","28863.99","557189.35" +"846P-413SPBD","DPR","Department of Parks and Recreation","Fixed Asset","0","223226.72","2099507.80" +"846P-413WGPF","DPR","Department of Parks and Recreation","Fixed Asset","6118000","513557.36","217382.16" +"846P-41417PG","DPR","Department of Parks and Recreation","Fixed Asset","275000","0.00","2350197.60" +"846P-414ARVR","DPR","Department of Parks and Recreation","Fixed Asset","9362000","7308.82","97691.18" +"846P-414B108","DPR","Department of Parks and Recreation","Fixed Asset","289000","169187.68","1772837.19" +"846P-414LAN2","DPR","Department of Parks and Recreation","Fixed Asset","0","73881.80","1014958.89" +"846P-414RB59","DPR","Department of Parks and Recreation","Fixed Asset","1726000","333454.28","3428284.59" +"846P-414RBHD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","299930.23" +"846P-414SRHV","DPR","Department of Parks and Recreation","Fixed Asset","0","14950.00","1812031.29" +"846P-415ALOT","DPR","Department of Parks and Recreation","Fixed Asset","752000","1105.39","40894.61" +"846P-415AQFL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","956889.45" +"846P-415AQNT","DPR","Department of Parks and Recreation","Fixed Asset","0","684037.58","1830165.25" +"846P-415CAND","DPR","Department of Parks and Recreation","Fixed Asset","4222000","220065.48","476979.27" +"846P-415FMC2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4891649.23" +"846P-415FMWS","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","7920.23","424861.88" +"846P-415FSTF","DPR","Department of Parks and Recreation","Fixed Asset","680000","1029953.57","7053561.57" +"846P-415LWCS","DPR","Department of Parks and Recreation","Fixed Asset","0","6580.00","1155535.91" +"846P-415MEA2","DPR","Department of Parks and Recreation","Fixed Asset","-32000","1117081.57","6995100.68" +"846P-415WRLD","DPR","Department of Parks and Recreation","Fixed Asset","0","162223.62","1542634.56" +"846P-4ALHVAC","DPR","Department of Parks and Recreation","Fixed Asset","5107000","26900.79","188099.21" +"846P-4ALYPND","DPR","Department of Parks and Recreation","Fixed Asset","410000","1449262.38","35737.62" +"846P-4ANCH02","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","12990926.31" +"846P-4ANCH03","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","11880676.35" +"846P-4ANCH04","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1589693.91" +"846P-4ANCH05","DPR","Department of Parks and Recreation","Fixed Asset","1226000","239974.45","3804878.51" +"846P-4ASTRRF","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1000","47350.39","574144.45" +"846P-4BASDCS","DPR","Department of Parks and Recreation","Fixed Asset","301000","155826.35","1781359.65" +"846P-4BIGSTF","DPR","Department of Parks and Recreation","Fixed Asset","-243000","0.00","571767.05" +"846P-4BLISSV","DPR","Department of Parks and Recreation","Fixed Asset","96000","429553.82","137285.54" +"846P-4BLSPTH","DPR","Department of Parks and Recreation","Fixed Asset","0","5834.31","567447.96" +"846P-4BRKVBB","DPR","Department of Parks and Recreation","Fixed Asset","2748000","290942.89","4040959.22" +"846P-4BRODCH","DPR","Department of Parks and Recreation","Fixed Asset","4017000","259160.08","142280.34" +"846P-4BSHIST","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","444313.59" +"846P-4BWIDEH","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","2017649.93" +"846P-4BWIDEL","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1226227.19" +"846P-4BWIDEM","DPR","Department of Parks and Recreation",,"0","0.00","1020032.32" +"846P-4BWIDEN","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","2003896.06" +"846P-4BWIDEP","DPR","Department of Parks and Recreation","Lump Sum","100000","680676.26","1668508.44" +"846P-4BWIDER","DPR","Department of Parks and Recreation","Lump Sum","99000","0.00","756284.13" +"846P-4BWIDES","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","1074994.96" +"846P-4CAPTGP","DPR","Department of Parks and Recreation",,"5746000","4251339.16","889278.27" +"846P-4CPIBN5","DPR","Department of Parks and Recreation","Fixed Asset","0","3692.12","4415034.92" +"846P-4CPIGRS","DPR","Department of Parks and Recreation","Fixed Asset","-121000","0.00","3969571.12" +"846P-4CPIHCS","DPR","Department of Parks and Recreation","Fixed Asset","438000","1541351.15","55019.85" +"846P-4CPIHPP","DPR","Department of Parks and Recreation","Fixed Asset","5128000","87799.10","346740.66" +"846P-4CPIP35","DPR","Department of Parks and Recreation","Fixed Asset","0","489533.57","2569590.79" +"846P-4CPIRCP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","7178139.39" +"846P-4CPPLGD","DPR","Department of Parks and Recreation","Fixed Asset","0","61774.19","4059406.08" +"846P-4CPSLIT","DPR","Department of Parks and Recreation","Fixed Asset","978000","298460.34","1578687.07" +"846P-4CPTLCS","DPR","Department of Parks and Recreation","Fixed Asset","0","123824.75","2228581.39" +"846P-4CROCHP","DPR","Department of Parks and Recreation","Fixed Asset","307000","1192688.40","38311.60" +"846P-4CROCLL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1684903.40" +"846P-4CUN210","DPR","Department of Parks and Recreation","Fixed Asset","412000","115009.12","3866328.59" +"846P-4CUNPLG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2275450.16" +"846P-4DCTALP","DPR","Department of Parks and Recreation","Fixed Asset","18000","0.00","222702.86" +"846P-4DELGRP","DPR","Department of Parks and Recreation","Fixed Asset","8558000","1060107.05","42943.13" +"846P-4DSTG02","DPR","Department of Parks and Recreation","Fixed Asset","4205000","244941.30","486132.46" +"846P-4DSTG5A","DPR","Department of Parks and Recreation","Fixed Asset","31306000","1276748.67","816569.56" +"846P-4ELMPRK","DPR","Department of Parks and Recreation","Fixed Asset","8696000","59067.05","594814.32" +"846P-4EMLDRF","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","1000","56643.65","138090.14" +"846P-4FITZPG","DPR","Department of Parks and Recreation","Fixed Asset","6198000","174470.60","431755.44" +"846P-4FMCPIC","DPR","Department of Parks and Recreation","Fixed Asset","3937000","174538.95","295702.05" +"846P-4FMCPML","DPR","Department of Parks and Recreation","Fixed Asset","121000","170916.02","294083.98" +"846P-4FMGARG","DPR","Department of Parks and Recreation","Fixed Asset","0","99892.60","7581116.14" +"846P-4FMMAUR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5432023.34" +"846P-4FMPLUM","DPR","Department of Parks and Recreation","Fixed Asset","654000","500000","0" +"846P-4FRDJPU","DPR","Department of Parks and Recreation","Fixed Asset","4604000","17199.76","618681.61" +"846P-4FRNOCP","DPR","Department of Parks and Recreation","Fixed Asset","9905000","42904.15","758007.22" +"846P-4FTTOTB","DPR","Department of Parks and Recreation","Fixed Asset","-202000","18350.00","5769017.61" +"846P-4FTTOTP","DPR","Department of Parks and Recreation",,"872000","117855.27","687514.73" +"846P-4GLNOAK","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","977644.74" +"846P-4GRST21","DPR","Department of Parks and Recreation","Fixed Asset","632000","329530.33","1086310.42" +"846P-4HCHAND","DPR","Department of Parks and Recreation","Fixed Asset","134000","17124.34","377575.33" +"846P-4HCOVP2","DPR","Department of Parks and Recreation","Fixed Asset","84000","192350.83","2788588.56" +"846P-4HILNDP","DPR","Department of Parks and Recreation","Fixed Asset","456000","1251480.32","1348519.68" +"846P-4HKRINK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2095527.85" +"846P-4IDLTRF","DPR","Department of Parks and Recreation","Fixed Asset","10866000","466059.95","666747.05" +"846P-4INGRVL","DPR","Department of Parks and Recreation","Fixed Asset","5169000","152498.70","502448.76" +"846P-4KCPPAV","DPR","Department of Parks and Recreation","Fixed Asset","344000","253604.22","744522.78" +"846P-4KNDYFL","DPR","Department of Parks and Recreation","Fixed Asset","2216000","0","302000" +"846P-4KSNAPK","DPR","Department of Parks and Recreation","Fixed Asset","2188000","1170166.58","19833.42" +"846P-4LINDE2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3873665.21" +"846P-4LTLBSH","DPR","Department of Parks and Recreation","Fixed Asset","0","213258.03","3237318.54" +"846P-4NFWF01","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","89040.75" +"846P-4NNANPG","DPR","Department of Parks and Recreation","Fixed Asset","0","145699.73","1575843.94" +"846P-4OLMSFA","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","239000","31149.97","200088.27" +"846P-4OLMSRF","DPR","Department of Parks and Recreation","Fixed Asset","20053000","14606988.26","429051.74" +"846P-4OLMST4","DPR","Department of Parks and Recreation","Fixed Asset","608000","1403772.75","35420105.32" +"846P-4OLMST8","DPR","Department of Parks and Recreation","Fixed Asset","958000","844122.29","516538.71" +"846P-4OVERLO","DPR","Department of Parks and Recreation","Fixed Asset","2687000","797405.73","399964.27" +"846P-4PDLBRC","DPR","Department of Parks and Recreation","Fixed Asset","3939000","2435628.15","24824858.88" +"846P-4PHIPPS","DPR","Department of Parks and Recreation","Fixed Asset","1092000","2473457.21","3471214.29" +"846P-4PLG12B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","837524.03" +"846P-4PLG13C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","483429.03" +"846P-4PLG13G","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1122902.93" +"846P-4PLG13J","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2529244.00" +"846P-4PLG13K","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","821240.27" +"846P-4PLG15B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2278683.37" +"846P-4PLG15C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2358457.58" +"846P-4PWOB01","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3808849.79" +"846P-4QERIVE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3129036.20" +"846P-4QMULT2","DPR","Department of Parks and Recreation","Fixed Asset","1319000","982310.04","1432104.96" +"846P-4QNPAV1","DPR","Department of Parks and Recreation","Fixed Asset","4392000","664063.35","2610006.42" +"846P-4QSTORE","DPR","Department of Parks and Recreation","Fixed Asset","9394000","3037323.55","6510316.65" +"846P-4RAIMON","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2065659.57" +"846P-4RAINE2","DPR","Department of Parks and Recreation","Fixed Asset","1731000","662355.85","9003259.83" +"846P-4RAMBLE","DPR","Department of Parks and Recreation","Fixed Asset","5268000","82441.66","485229.34" +"846P-4RDGEWD","DPR","Department of Parks and Recreation","Fixed Asset","81000","26893.57","3130761.24" +"846P-4RRDPK","DPR","Department of Parks and Recreation","Fixed Asset","24536000","191487.62","2262549.30" +"846P-4SAND02","DPR","Department of Parks and Recreation","Fixed Asset","184000","0.00","3278904.75" +"846P-4UDALNP","DPR","Department of Parks and Recreation","Fixed Asset","714000","10500.00","55331.71" +"846P-4WATEDG","DPR","Department of Parks and Recreation","Fixed Asset","17807000","148933.05","1239913.11" +"846P-4WOODPG","DPR","Department of Parks and Recreation","Fixed Asset","1945000","1670926.91","2422927.78" +"846P-4WOODPZ","DPR","Department of Parks and Recreation","Fixed Asset","883000","133909.54","1419465.06" +"846P-4WPJAMC","DPR","Department of Parks and Recreation","Fixed Asset","0","133785.74","2394285.98" +"846P-4WPWSDE","DPR","Department of Parks and Recreation","Fixed Asset","0","95373.40","1132028.66" +"846P-501CLEX","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","595978.37" +"846P-501CLRT","DPR","Department of Parks and Recreation","Fixed Asset","-141000","35862.50","1969902.63" +"846P-501FABL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6324309.94" +"846P-501FPFA","DPR","Department of Parks and Recreation","Fixed Asset","137000","261063.23","24255.66" +"846P-501LLCS","DPR","Department of Parks and Recreation","Fixed Asset","23000","483413.95","4308593.18" +"846P-501LPFA","DPR","Department of Parks and Recreation","Fixed Asset","129000","143501.83","188873.12" +"846P-501MAHO","DPR","Department of Parks and Recreation","Fixed Asset","2585000","25625.24","333994.13" +"846P-501NAPL","DPR","Department of Parks and Recreation","Fixed Asset","0","312348.94","3196451.92" +"846P-501SGDR","DPR","Department of Parks and Recreation","Fixed Asset","2027000","38323.58","111676.42" +"846P-501SKYL","DPR","Department of Parks and Recreation","Fixed Asset","8086000","367364.54","613790.84" +"846P-501WLKR","DPR","Department of Parks and Recreation","Fixed Asset","4820000","151537.07","491101.82" +"846P-502GBFA","DPR","Department of Parks and Recreation","Fixed Asset","164000","24467.28","264532.72" +"846P-502GBRE","DPR","Department of Parks and Recreation","Fixed Asset","1117000","595194.30","1672115.70" +"846P-502MLPG","DPR","Department of Parks and Recreation","Fixed Asset","4647000","220282.07","411951.75" +"846P-502OBRF","DPR","Department of Parks and Recreation","Fixed Asset","79862000","2810702.02","673678.90" +"846P-502SHML","DPR","Department of Parks and Recreation","Fixed Asset","648000","261053.37","3036391.38" +"846P-503AESP","DPR","Department of Parks and Recreation","Fixed Asset","3031000","3784432.27","1812247.23" +"846P-503ANNA","DPR","Department of Parks and Recreation","Fixed Asset","771000","1487461.79","1083393.40" +"846P-503CHLP","DPR","Department of Parks and Recreation","Fixed Asset","863000","20000","218000" +"846P-503CRBP","DPR","Department of Parks and Recreation","Fixed Asset","0","5352.25","2723080.11" +"846P-503DUPL","DPR","Department of Parks and Recreation","Fixed Asset","0","150907.81","3935077.83" +"846P-503GCPL","DPR","Department of Parks and Recreation","Fixed Asset","18000","138287.02","4020444.74" +"846P-503LEMN","DPR","Department of Parks and Recreation","Fixed Asset","348000","538062.54","2068405.00" +"846P-503SNCS","DPR","Department of Parks and Recreation","Fixed Asset","1582000","2303458.67","5020624.52" +"846P-503TOTT","DPR","Department of Parks and Recreation","Fixed Asset","24225000","943146.01","606061.92" +"846P-503WLFP","DPR","Department of Parks and Recreation","Fixed Asset","10470000","728811.67","575987.96" +"846P-5ANCH02","DPR","Department of Parks and Recreation","Fixed Asset","36236000","498238.98","686641.02" +"846P-5ANCH03","DPR","Department of Parks and Recreation","Fixed Asset","8072000","160913.80","395467.29" +"846P-5ARDTR","DPR","Department of Parks and Recreation","Fixed Asset","0","81318.35","1695065.74" +"846P-5BBPAV","DPR","Department of Parks and Recreation",,"0","323671.56","2800838.11" +"846P-5BLOOJF","DPR","Department of Parks and Recreation","Fixed Asset","0","58260.88","4486638.51" +"846P-5BLOOMB","DPR","Department of Parks and Recreation","Fixed Asset","310000","813250.79","38818.11" +"846P-5CHARCS","DPR","Department of Parks and Recreation","Fixed Asset","239000","342562.94","3837466.14" +"846P-5CLAWS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2930136.88" +"846P-5CPIB12","DPR","Department of Parks and Recreation",,"-71000","44175.00","8292632.57" +"846P-5CPIBN6","DPR","Department of Parks and Recreation",,"0","317327.00","3571862.78" +"846P-5CPILEV","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2568567.81" +"846P-5CPIMDP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","5640773.80" +"846P-5CPISTP","DPR","Department of Parks and Recreation","Fixed Asset","0","49351.48","11108759.45" +"846P-5FABBAS","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","634000","493058.52","1813666.50" +"846P-5FRES10","DPR","Department of Parks and Recreation","Fixed Asset","744000","351952.19","4544493.51" +"846P-5FRES11","DPR","Department of Parks and Recreation","Fixed Asset","0","10052.77","1049948.98" +"846P-5FRESHS","DPR","Department of Parks and Recreation","Fixed Asset","0","13275.81","9400642.92" +"846P-5GBRCTF","DPR","Department of Parks and Recreation","Fixed Asset","1639000","435271.84","4652080.81" +"846P-5GRNBRC","DPR","Department of Parks and Recreation","Fixed Asset","177000","419771.26","1193094.55" +"846P-5HEROPK","DPR","Department of Parks and Recreation","Fixed Asset","-8000","46350.20","249881.28" +"846P-5LILOPL","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","3694395.34" +"846P-5OBRZDR","DPR","Department of Parks and Recreation","Fixed Asset","1211000","40303.4","114696.6" +"846P-5PLG13B","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1751726.53" +"846P-5PLG15B","DPR","Department of Parks and Recreation","Fixed Asset","0","1000.00","2760115.45" +"846P-5PRALCS","DPR","Department of Parks and Recreation","Fixed Asset","317000","98866.40","1740922.38" +"846P-5PRESPL","DPR","Department of Parks and Recreation","Fixed Asset","0","681817.75","3806535.20" +"846P-5RECSI","DPR","Department of Parks and Recreation","Fixed Asset","0","263998.37","2916786.71" +"846P-5SEGNRF","DPR","Department of Parks and Recreation","Fixed Asset","29000","46880.59","138031.87" +"846P-5SLVLK1","DPR","Department of Parks and Recreation","Fixed Asset","-29000","136093.78","1064941.11" +"846P-5STFMHN","DPR","Department of Parks and Recreation","Fixed Asset","-218000","0.00","384649.67" +"846P-5WHITEP","DPR","Department of Parks and Recreation","Fixed Asset","257000","64297.15","1370178.67" +"846P-6BLD14B","DPR","Department of Parks and Recreation","Fixed Asset","0","14573.79","2001935.11" +"846P-6BLDG13","DPR","Department of Parks and Recreation","Fixed Asset","0","3200.19","3257306.65" +"846P-6BLGC15","DPR","Department of Parks and Recreation","Fixed Asset","0","37722.47","1040059.79" +"846P-6BLPB14","DPR","Department of Parks and Recreation","Lump Sum","4000","0.00","682299.84" +"846P-6BLRC14","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","2772271.12" +"846P-6BOIL15","DPR","Department of Parks and Recreation",,"286000","371855.75","621300.21" +"846P-6CADMAR","DPR","Department of Parks and Recreation","Fixed Asset","2800000","2450991.36","377496.64" +"846P-6CPIBN3","DPR","Department of Parks and Recreation","Fixed Asset","-33000","195062.50","19862642.09" +"846P-6CPIBN4","DPR","Department of Parks and Recreation",,"0","327524.27","8877227.99" +"846P-6CWPAV1","DPR","Department of Parks and Recreation","Fixed Asset","555000","1223724.00","919276.00" +"846P-6CWPLG1","DPR","Department of Parks and Recreation","Fixed Asset","-11000","729815.35","1388487.20" +"846P-6CWRWXM","DPR","Department of Parks and Recreation","Fixed Asset","4888000","6531701.34","2506734.99" +"846P-6CWSTF2","DPR","Department of Parks and Recreation","Fixed Asset","9157000","3199210.94","3402475.56" +"846P-6ELBR15","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","105636.66" +"846P-6GDRL15","DPR","Department of Parks and Recreation","Fixed Asset","0","0.01","236258.70" +"846P-6GMBXGI","DPR","Department of Parks and Recreation","Fixed Asset","587000","369372.63","219761.61" +"846P-6LIGHT1","DPR","Department of Parks and Recreation","Fixed Asset","0","37539.85","866814.85" +"846P-6MSHVAC","DPR","Department of Parks and Recreation","Fixed Asset","2849000","817712.97","5279780.96" +"846P-6RFMN14","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1309526.30" +"846P-6ROOF14","DPR","Department of Parks and Recreation","Fixed Asset","0","0.50","2107664.84" +"846P-6ROOF22","DPR","Department of Parks and Recreation","Fixed Asset","2716000","122676.74","1767847.47" +"850LQMA-BLR","DDC","Department of Design and Construction","Fixed Asset","0","0.00","268738.30" +"846P-6ROOF9A","DPR","Department of Parks and Recreation","Fixed Asset","0","1670.00","5487360.82" +"846P-6ROOFQN","DPR","Department of Parks and Recreation","Fixed Asset","0","137705.48","2606654.34" +"846P-6RPZBKQ","DPR","Department of Parks and Recreation","Fixed Asset","266000","486667.86","907658.91" +"846P-6SEAWAL","DPR","Department of Parks and Recreation","Fixed Asset","16544000","15562.19","214437.81" +"846P-6STRUC1","DPR","Department of Parks and Recreation","Fixed Asset","112000","434798.25","570526.75" +"846P-6STURF1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1918451.41" +"846P-6SUSTN1","DPR","Department of Parks and Recreation",,"316000","543310.06","1896689.94" +"846P-6TRAI20","DPR","Department of Parks and Recreation","Fixed Asset","222000","30449.79","477696.16" +"846RE2544DR2","DPR","Department of Parks and Recreation","Fixed Asset","0","166018.28","8490609.83" +"846SANDY1-04","DPR","Department of Parks and Recreation","Fixed Asset","-20000","36324.43","2347806.70" +"846SANDY1-06","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1066404.41" +"846SANDY1-10","DPR","Department of Parks and Recreation","Fixed Asset","5750000","4642353.79","650520.76" +"846SANDY2-07","DPR","Department of Parks and Recreation","Fixed Asset","0","2970.00","951395.54" +"846SANDY2-10","DPR","Department of Parks and Recreation","Fixed Asset","-2000","23016.88","2072865.74" +"846SANDY2-16","DPR","Department of Parks and Recreation","Fixed Asset","2234000","669305.09","6633131.35" +"846SANDY2-28","DPR","Department of Parks and Recreation","Fixed Asset","12204000","490800.63","578698.37" +"846SANDY2-35","DPR","Department of Parks and Recreation","Fixed Asset","14176000","1253021.26","419405.40" +"846SANDY3-11","DPR","Department of Parks and Recreation","Fixed Asset","234000","408654.64","2033454.95" +"846SANDY3-17","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","847347.60" +"846SANDY4-02","DPR","Department of Parks and Recreation","Fixed Asset","0","224989.02","7902717.35" +"846SANDY4-08","DPR","Department of Parks and Recreation","Fixed Asset","344000","16957.13","89329.87" +"846SANDY4-10","DPR","Department of Parks and Recreation","Fixed Asset","9979000","253643.53","5963285.63" +"846SANDY4-25","DPR","Department of Parks and Recreation","Fixed Asset","512000","457194.40","4452319.64" +"846SANDY4-29","DPR","Department of Parks and Recreation","Fixed Asset","79596000","950226.33","2214682.67" +"846SANDY4-36","DPR","Department of Parks and Recreation","Fixed Asset","0","209711.46","3661033.30" +"846SANDY4-37","DPR","Department of Parks and Recreation","Fixed Asset","1528000","2476604.24","6329328.15" +"846SANDY4-38","DPR","Department of Parks and Recreation","Fixed Asset","241000","220895.87","1226466.24" +"846SANDY4-39","DPR","Department of Parks and Recreation","Fixed Asset","12374000","7462628.54","1270669.33" +"846SANDY4-42","DPR","Department of Parks and Recreation","Fixed Asset","0","2800.00","2033024.60" +"846SANDY4-44","DPR","Department of Parks and Recreation","Fixed Asset","124000","220619.56","3313329.68" +"846SANDY4-45","DPR","Department of Parks and Recreation","Fixed Asset","12813000","208649.98","1050622.02" +"846SANDY4-48","DPR","Department of Parks and Recreation","Fixed Asset","17622000","25245314.48","2306885.52" +"846SANDY4-49","DPR","Department of Parks and Recreation","Fixed Asset","9528000","66683.79","134524.21" +"846SANDY4-51","DPR","Department of Parks and Recreation","Fixed Asset","5112000","3407722.04","104158.63" +"850LQLI-ROOF","DDC","Department of Design and Construction","Fixed Asset","4060000","1848.23","23151.77" +"846SANDY4-52","DPR","Department of Parks and Recreation","Fixed Asset","1724000","146640.99","91693.01" +"846SANDY5-04","DPR","Department of Parks and Recreation",,"-272000","0.00","2890745.64" +"846SANDY5-13","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1622090.72" +"846SANDY5-16","DPR","Department of Parks and Recreation","Fixed Asset","-3000","79769.10","541670.81" +"846SANDY5-17","DPR","Department of Parks and Recreation","Fixed Asset","0","200324.12","2354786.86" +"846SANDY5-18","DPR","Department of Parks and Recreation",,"2869000","0.00","4986396.64" +"846SANDY5-24","DPR","Department of Parks and Recreation","Fixed Asset","-65000","0.00","1705471.55" +"846SANDY5-25","DPR","Department of Parks and Recreation",,"0","0.00","435163.81" +"846SANDY5-26","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1086749.44" +"846SANDY5-27","DPR","Department of Parks and Recreation","Fixed Asset","0","5420.00","2565857.57" +"846SANDY5-30","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","189978.76" +"846SANDY5-32","DPR","Department of Parks and Recreation",,"0","0.00","485413.24" +"846SANDY5-34","DPR","Department of Parks and Recreation",,"0","0.00","166243.23" +"846SANDY5-37","DPR","Department of Parks and Recreation","Fixed Asset","110000","32008.97","1015752.44" +"846SANDY5-41","DPR","Department of Parks and Recreation",,"0","7691.44","60195.22" +"846SANDY5-46","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","468429.51" +"846SANDY5-50","DPR","Department of Parks and Recreation","Fixed Asset","0","3781.81","5346650.54" +"846SANDY6-06","DPR","Department of Parks and Recreation",,"0","234.00","4108300.34" +"846SANDY6-08","DPR","Department of Parks and Recreation","Lump Sum","5778000","204596.63","639532.32" +"846SEED-SAPG","DPR","Department of Parks and Recreation","Fixed Asset","29044000","24017.01","492982.99" +"801SAND1113","SBS","Department of Small Business Services",,"5074000","78529.61","14877054.69" +"801SEED-LICL","SBS","Department of Small Business Services","Lump Sum","72000000","0","0" +"801P-215SHBS","SBS","Department of Small Business Services","Fixed Asset","12487000","0","0" +"801P-401HPS","SBS","Department of Small Business Services","Fixed Asset","1808000","0","0" +"850CRO-AGS","DDC","Department of Design and Construction","Fixed Asset","-710000","5784024.94","85537851.73" +"850CV19COEBU","DDC","Department of Design and Construction","Fixed Asset","23000","342829.38","67170556.71" +"850CV19COERO","DDC","Department of Design and Construction","Fixed Asset","26000","9028.34","27110057.08" +"850E12-0043","DDC","Department of Design and Construction","Fixed Asset","30000","143445.96","4107261.62" +"826CSO-AC-DF","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","1329382.23","1011488.16" +"850E17-0001","DDC","Department of Design and Construction","Fixed Asset","2061000","5237458.33","7005623.03" +"850LQD122-QW","DDC","Department of Design and Construction",,"0","8088.42","49079626.95" +"850LQD122RO2","DDC","Department of Design and Construction","Fixed Asset","742000","2597573.03","1211563.32" +"850LQD122SA1","DDC","Department of Design and Construction","Fixed Asset","0","0.00","101892.92" +"850LQEM19FLU","DDC","Department of Design and Construction",,"352000","960432.44","1412561.89" +"850E17-0006","DDC","Department of Design and Construction","Fixed Asset","642000","1205602.65","5146237.58" +"850EO26-0002","DDC","Department of Design and Construction","Fixed Asset","826000","451103.83","1609483.87" +"850EP6-KENT2","DDC","Department of Design and Construction","Fixed Asset","0","104413.96","36896254.32" +"850F175EC268","DDC","Department of Design and Construction","Fixed Asset","33009000","16999050.89","4055877.68" +"850F175EMS17","DDC","Department of Design and Construction","Fixed Asset","32199000","9238541.05","15070269.59" +"850F204INFRA","DDC","Department of Design and Construction","Fixed Asset","59889000","26102894.59","5499826.48" +"850FD175273H","DDC","Department of Design and Construction","Fixed Asset","0","0.00","946046.92" +"850HAM17GHSE","DDC","Department of Design and Construction","Fixed Asset","4915000","6342138.90","13438882.58" +"850HAM17MRCC","DDC","Department of Design and Construction","Fixed Asset","1138000","850611.12","12306724.20" +"850HAM18MHCC","DDC","Department of Design and Construction","Fixed Asset","1112000","932740.30","7214171.65" +"850HAM20BVBG","DDC","Department of Design and Construction","Fixed Asset","2408000","3787411.12","6891005.17" +"850HAM20BVCC","DDC","Department of Design and Construction","Fixed Asset","2195000","1448249.88","7768564.60" +"850HED-CLUB","DDC","Department of Design and Construction","Fixed Asset","1256000","1223772.12","15189037.64" +"850HH112BEES","DDC","Department of Design and Construction","Fixed Asset","892000","1951185.68","24823449.21" +"850HH112BEGE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","150000","21173.56","1491776.19" +"850HH112BELS","DDC","Department of Design and Construction","Fixed Asset","89223000","11592793.11","20017748.24" +"850HH112BLBR","DDC","Department of Design and Construction","Fixed Asset","19975000","1069207.65","2928425.35" +"850HH112BLCY","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HH112BLFS","DDC","Department of Design and Construction","Fixed Asset","27035000","757363.35","1720143.86" +"850HH112BLFX","DDC","Department of Design and Construction","Fixed Asset","707000","493965.74","538288.2" +"850HH112BLRR","DDC","Department of Design and Construction","Fixed Asset","689000","1676158.82","28905802.68" +"850HH112BVFA","DDC","Department of Design and Construction","Fixed Asset","4879000","1010670.90","753653.11" +"850HH112CGIU","DDC","Department of Design and Construction","Lump Sum","3736000","75351.74","444044.51" +"850HH112FBFS","DDC","Department of Design and Construction","Fixed Asset","922000","4842743.57","644670.40" +"850HH112FTRF","DDC","Department of Design and Construction","Fixed Asset","17891000","12466517.59","2107344.62" +"850HH112FWFA","DDC","Department of Design and Construction","Fixed Asset","13170000","311188.86","1345163.59" +"850HH112HSFA","DDC","Department of Design and Construction","Fixed Asset","7026000","221564.01","1038971.52" +"850HH112HWFS","DDC","Department of Design and Construction","Fixed Asset","0","15823.01","258740.65" +"850HH112KEFA","DDC","Department of Design and Construction","Fixed Asset","2800000","2465796.17","760323.68" +"850HH112LXFA","DDC","Department of Design and Construction","Fixed Asset","170000","1417.23","935400.19" +"850HH112PJBO","DDC","Department of Design and Construction","Fixed Asset","0","255815.55","871687.45" +"850HH112PJRC","DDC","Department of Design and Construction","Fixed Asset","0","626185.48","206424.52" +"850HH112THFA","DDC","Department of Design and Construction","Fixed Asset","55000","0","0" +"850HH112WBLR","DDC","Department of Design and Construction","Fixed Asset","0","634422.81","9600298.17" +"850HH112WLFA","DDC","Department of Design and Construction","Fixed Asset","0","348835.50","103217.53" +"850HH115BWKF","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","15884.57","1584116.46" +"850HH115FRFA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","23263.58","739604.80" +"850HH115HHFA","DDC","Department of Design and Construction","Fixed Asset","0","4068.85","560305.53" +"850HH115JCFB","DDC","Department of Design and Construction","Fixed Asset","644000","2411406.43","659979.22" +"850HH115JCFS","DDC","Department of Design and Construction","Fixed Asset","854000","265341.76","2160792.38" +"850HH115LFAU","DDC","Department of Design and Construction","Fixed Asset","2133000","56727.60","273667.05" +"850HH115REGX","DDC","Department of Design and Construction","Fixed Asset","830000","1524317.76","20543487.08" +"850HH115RFEU","DDC","Department of Design and Construction","Fixed Asset","0","705172.99","751540.01" +"850HH115SFFA","DDC","Department of Design and Construction","Fixed Asset","70000","507.44","1004286.68" +"850LQD122-MG","DDC","Department of Design and Construction","Fixed Asset","30000","1916.19","1369812.96" +"850HH115SGFA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","53000","30831.85","1363942.91" +"850HH115SRFA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","31000","94293.43","1197561.59" +"850HL82BRKLN","DDC","Department of Design and Construction","Fixed Asset","7267000","31195953.25","20363950.88" +"850HL82BUSHX","DDC","Department of Design and Construction","Fixed Asset","549000","1591708.47","16951196.47" +"850HL82CORHC","DDC","Department of Design and Construction","Fixed Asset","3154000","3043016.28","10686441.65" +"850HL82FGHVC","DDC","Department of Design and Construction","Fixed Asset","0","48168.00","4333417.61" +"850HL82MANAT","DDC","Department of Design and Construction","Fixed Asset","264000","106324.84","9056852.76" +"850HL82SIABE","DDC","Department of Design and Construction","Fixed Asset","360000","63737.40","15102911.92" +"850HR25FACA4","DDC","Department of Design and Construction","Fixed Asset","15300000","668699.74","1631650.96" +"850HRC002MPL","DDC","Department of Design and Construction","Lump Sum","0","0.00","145478.80" +"850HRCN303ER","DDC","Department of Design and Construction","Fixed Asset","0","0.00","818910.45" +"850HWHARPADM","DDC","Department of Design and Construction","Fixed Asset","99004000","45026347.04","46580796.03" +"850HWHARPERG","DDC","Department of Design and Construction","Fixed Asset","48000000","31348442.53","621402.02" +"850HWQF033","DDC","Department of Design and Construction","Fixed Asset","1130000","787866.20","1012937.96" +"850LQD122NF4","DDC","Department of Design and Construction","Fixed Asset","0","0.00","346256.88" +"850LQFH-ADA","DDC","Department of Design and Construction","Fixed Asset","6400000","1004842","59000" +"850LB-104KEN","DDC","Department of Design and Construction","Fixed Asset","0","0.00","17232497.62" +"850LB20DUMBO","DDC","Department of Design and Construction","Fixed Asset","120000","960267.4","3765192.6" +"850LBC10CDHC","DDC","Department of Design and Construction","Fixed Asset","592000","437343.89","3426603.62" +"850LBC11BBHC","DDC","Department of Design and Construction","Fixed Asset","7000","11996.74","1922081.89" +"850LBC12STHC","DDC","Department of Design and Construction","Fixed Asset","142000","4214.72","3625551.50" +"850LBC13BPRF","DDC","Department of Design and Construction","Fixed Asset","12588000","24116375.41","3439944.30" +"850LBC14LDRF","DDC","Department of Design and Construction","Fixed Asset","345000","166164.64","1839507.40" +"850LBC15BWHC","DDC","Department of Design and Construction","Fixed Asset","4247000","3595440.73","1245197.42" +"850LBC15FLRF","DDC","Department of Design and Construction","Fixed Asset","21000","313500.07","2261696.76" +"850LBC16MD2F","DDC","Department of Design and Construction","Fixed Asset","2963000","6380489.35","1318961.90" +"850LBC17CDOP","DDC","Department of Design and Construction","Fixed Asset","258000","52621.90","1040594.28" +"850LBC17MPGD","DDC","Department of Design and Construction","Fixed Asset","2512000","320937.87","951864.41" +"850LBC17MRAD","DDC","Department of Design and Construction","Lump Sum","318000","0.00","641350.25" +"850LBC21MNRF","DDC","Department of Design and Construction","Fixed Asset","11000000","0","0" +"850LBC22JBIF","DDC","Department of Design and Construction","Fixed Asset","6866000","0","0" +"850LBC22KBIF","DDC","Department of Design and Construction","Fixed Asset","7567000","638873.54","665936.28" +"850LBC22SAIF","DDC","Department of Design and Construction","Fixed Asset","6946000","735150.28","687276.33" +"850LBCA06SPK","DDC","Department of Design and Construction","Fixed Asset","0","0.00","521003.71" +"850LBCA07FBH","DDC","Department of Design and Construction","Fixed Asset","0","61873.11","1805116.82" +"850LBCENPH2","DDC","Department of Design and Construction","Fixed Asset","27303000","53956573.8","2505592.2" +"850LBK13EFBR","DDC","Department of Design and Construction","Fixed Asset","639000","169853.93","14715286.72" +"850LBK14DRRF","DDC","Department of Design and Construction","Fixed Asset","0","0.00","723967.62" +"850LBK15BDHC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1115000","512919.90","4166173.53" +"850LBM08WBRF","DDC","Department of Design and Construction","Fixed Asset","0","18711.00","1617115.15" +"850LBM13CGHC","DDC","Department of Design and Construction","Fixed Asset","1048000","1039597.03","6878258.63" +"850LBM13CYFS","DDC","Department of Design and Construction","Fixed Asset","0","0.00","78437.05" +"850LBM13FLHC","DDC","Department of Design and Construction","Fixed Asset","0","0.00","408258.06" +"850LBM13LDHC","DDC","Department of Design and Construction","Fixed Asset","251000","147754.19","4823299.83" +"850LBM14BWRF","DDC","Department of Design and Construction","Fixed Asset","3006000","2071852.75","402095.55" +"850LBM14CDRF","DDC","Department of Design and Construction","Fixed Asset","0","29278.00","807579.94" +"850LBM15GBRF","DDC","Department of Design and Construction","Fixed Asset","924000","196546.01","3388612.17" +"850LBM15MPRF","DDC","Department of Design and Construction","Fixed Asset","2545000","743106.96","4232648.99" +"850LBM15RDHC","DDC","Department of Design and Construction","Fixed Asset","155000","569932.38","3049347.28" +"850LBM15RDRF","DDC","Department of Design and Construction","Fixed Asset","50000","29015.65","846996.78" +"850LBM16GSFC","DDC","Department of Design and Construction","Fixed Asset","1890000","965630.84","2154029.80" +"850LBM17NUOH","DDC","Department of Design and Construction",,"24283000","153749.67","1811268.06" +"850ACEDCA212","DDC","Department of Design and Construction","Fixed Asset","0","742440","0" +"850ACEDCA215","DDC","Department of Design and Construction","Fixed Asset","15324000","2014267.04","1833068.77" +"850ACEDCL213","DDC","Department of Design and Construction",,"269000","13442000","0" +"850ARMORIES","DDC","Department of Design and Construction","Fixed Asset","0","21561.90","43665214.85" +"850C75EWAMKC","DDC","Department of Design and Construction",,"0","418384.87","22307895.13" +"850C75EWGRVC","DDC","Department of Design and Construction",,"0","184276.54","11356481.66" +"850LQMARN-23","DDC","Department of Design and Construction","Fixed Asset","13932000","122131.05","0" +"850LQNFP-ADA","DDC","Department of Design and Construction","Fixed Asset","16916000","1845960.68","0" +"850LQQ122EE2","DDC","Department of Design and Construction","Fixed Asset","3000","18856.29","11334083.64" +"850LQQ122-FA","DDC","Department of Design and Construction","Fixed Asset","4442000","2535608.75","30872642.64" +"850LQQ122-RG","DDC","Department of Design and Construction","Fixed Asset","8651000","34363131.87","6235985.43" +"850LQQBHHVAC","DDC","Department of Design and Construction","Fixed Asset","942000","234052.76","3369871.93" +"850LQQVHVAC","DDC","Department of Design and Construction","Fixed Asset","275000","0.00","492436.07" +"850LQQVROOF","DDC","Department of Design and Construction","Fixed Asset","400000","0.00","196452.57" +"850LQRDMASON","DDC","Department of Design and Construction","Fixed Asset","5501000","544256.41","882342.21" +"850LQRH-RENO","DDC","Department of Design and Construction","Fixed Asset","24816000","0","0" +"850LQRS-EXTR","DDC","Department of Design and Construction","Fixed Asset","25794000","1568716.98","2932547.42" +"850LQSARENOV","DDC","Department of Design and Construction","Fixed Asset","12768000","1630795.88","23321.41" +"850LQSAROOF","DDC","Department of Design and Construction","Fixed Asset","0","1251.14","1192147.90" +"850LQSEHVAC","DDC","Department of Design and Construction","Fixed Asset","994000","297758.83","2744139.27" +"850LQSHRN-23","DDC","Department of Design and Construction","Fixed Asset","21021000","0","0" +"850LQSJ-INT","DDC","Department of Design and Construction","Fixed Asset","19893000","2094171.23","0" +"850LQSZ-RENO","DDC","Department of Design and Construction","Fixed Asset","21355000","242874.91","18826.72" +"850LQWSADA","DDC","Department of Design and Construction","Fixed Asset","0","0.0","44789.1" +"850LRCA17SCH","DDC","Department of Design and Construction","Fixed Asset","0","1398858.24","12206631.33" +"850MURPHCOMF","DDC","Department of Design and Construction","Fixed Asset","4212000","1183737.46","1921312.54" +"850NDF-CRLYN","DDC","Department of Design and Construction","Fixed Asset","26591000","33351696.45","61233347.77" +"850NDF-DAVID","DDC","Department of Design and Construction","Fixed Asset","13173000","1951391.60","1010113.94" +"850NEWCJC2","DDC","Department of Design and Construction","Fixed Asset","-2000000","0.00","2282119.69" +"850NEWHJC2","DDC","Department of Design and Construction","Fixed Asset","282893000","126779755.34","31960345.60" +"850P-108KHC1","DDC","Department of Design and Construction","Fixed Asset","5236000","763060.05","0" +"850P-108VCCS","DDC","Department of Design and Construction","Fixed Asset","3513000","1298736.09","416288.91" +"850P-1HARTIS","DDC","Department of Design and Construction","Fixed Asset","2391000","5418106.39","48135056.31" +"850P-1ORCHMO","DDC","Department of Design and Construction","Fixed Asset","2433000","3898008.26","40757487.84" +"850P-1SDVREC","DDC","Department of Design and Construction","Fixed Asset","78414000","9204978.30","6170172.70" +"850P-1TREREC","DDC","Department of Design and Construction","Fixed Asset","94832000","8236379.16","7409211.84" +"850P-216BVRC","DDC","Department of Design and Construction","Fixed Asset","241940000","0","0" +"850PW7722R","DDC","Department of Design and Construction","Fixed Asset","31076000","30853.79","243146.21" +"850P-217SCRC","DDC","Department of Design and Construction","Fixed Asset","4018000","12699378.45","130880693.07" +"850P-2CIB1HQ","DDC","Department of Design and Construction","Fixed Asset","59107000","5677281.87","5548967.63" +"850P-308RPCS","DDC","Department of Design and Construction","Fixed Asset","3521000","1428209.10","305780.90" +"850P-407BHV4","DDC","Department of Design and Construction","Fixed Asset","7309000","41815.50","3930.99" +"850P-407KIN2","DDC","Department of Design and Construction","Fixed Asset","0","0.00","935429.18" +"850P-412RWR1","DDC","Department of Design and Construction","Fixed Asset","128442000","35333184.51","8708215.06" +"850P-413SCS1","DDC","Department of Design and Construction","Fixed Asset","4249000","1488835.26","376189.74" +"850P-4DSTG06","DDC","Department of Design and Construction","Fixed Asset","7377000","874059.06","853867.94" +"850P-4QNHSR1","DDC","Department of Design and Construction","Lump Sum","2745000","205812.86","118459.14" +"850P-5PNYC06","DDC","Department of Design and Construction","Fixed Asset","1222000","2879758.50","108642209.37" +"850PO002-116","DDC","Department of Design and Construction",,"7690000","4633257.87","94391063.38" +"850PO141-40P","DDC","Department of Design and Construction",,"3281000","5039100.96","83971026.33" +"850PO223-001","DDC","Department of Design and Construction",,"0","0.00","69920015.18" +"850PO79-77FA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","165000","604401.90","3787131.46" +"850PO79BMAHJ","DDC","Department of Design and Construction","Fixed Asset","174000","875348.27","1714300.88" +"850PO79BMAHQ","DDC","Department of Design and Construction","Fixed Asset","103000","284954.03","2663075.09" +"850PO79ROD","DDC","Department of Design and Construction","Fixed Asset","223646000","148265382.59","23973028.10" +"850PO79SHOPR","DDC","Department of Design and Construction","Lump Sum","11690000","362003.63","1081642.74" +"850PO79WNDWS","DDC","Department of Design and Construction","Fixed Asset","6100000","168326.73","2408890.31" +"850PV001SELM","DDC","Department of Design and Construction","Fixed Asset","919000","2604333.01","1532282.55" +"850PV01WSTAR","DDC","Department of Design and Construction","Fixed Asset","2600000","2549000","0" +"850PV01ZFRIC","DDC","Department of Design and Construction","Fixed Asset","127000","6313000","0" +"850PV022-SKY","DDC","Department of Design and Construction","Fixed Asset","24156000","6241196.77","31682634.23" +"850PV028-ISS","DDC","Department of Design and Construction","Fixed Asset","10365000","658409.71","3499160.23" +"850PV034RR77","DDC","Department of Design and Construction","Fixed Asset","21280000","20863000","0" +"850PV03PRENO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","67000","166650","3166350" +"850PV040ELEV","DDC","Department of Design and Construction","Fixed Asset","557000","14953.21","1686513.66" +"850PV040HVAC","DDC","Department of Design and Construction","Fixed Asset","1517000","3275771.40","1954482.99" +"850PV072HVAC","DDC","Department of Design and Construction","Fixed Asset","3615000","3099048.92","5534367.25" +"850PV075RENO","DDC","Department of Design and Construction","Fixed Asset","6418000","541637.99","530072.01" +"850PV099-NMP","DDC","Department of Design and Construction","Fixed Asset","46518000","0","0" +"850PV122-DTH","DDC","Department of Design and Construction","Fixed Asset","350000","0.00","1484676.81" +"850PV132DCTV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","1645593" +"850PV143INFR","DDC","Department of Design and Construction","Fixed Asset","3869000","160256.93","836256.78" +"850PV175CLOV","DDC","Department of Design and Construction","Fixed Asset","19069000","391792.46","2381080.34" +"850PV175ROOF","DDC","Department of Design and Construction","Fixed Asset","76000","2766.05","3077177.00" +"850PV176CES2","DDC","Department of Design and Construction","Fixed Asset","24602000","2571052","108381" +"850PV176CESU","DDC","Department of Design and Construction","Fixed Asset","4528000","1383094.25","18142328.43" +"850PV176-LIO","DDC","Department of Design and Construction","Fixed Asset","0","269837.24","52302460.73" +"850PV204ELEV","DDC","Department of Design and Construction","Fixed Asset","30000","1428000","0" +"850PV204-LOB","DDC","Department of Design and Construction","Fixed Asset","0","0.00","4769140.24" +"850PV205CHIL","DDC","Department of Design and Construction","Fixed Asset","550000","4023745.00","137039.00" +"850PV205LIEL","DDC","Department of Design and Construction","Fixed Asset","90000","2280392","35000" +"850PV205WOC","DDC","Department of Design and Construction","Fixed Asset","16285000","15965680","0" +"850PV222HVAC","DDC","Department of Design and Construction","Fixed Asset","6111000","44642.16","968785.79" +"850PV235BDEV","DDC","Department of Design and Construction","Fixed Asset","4155000","2601199.26","5082566.57" +"850PV235EDUC","DDC","Department of Design and Construction","Fixed Asset","369000","73947.03","6082032.97" +"850PV235HA3B","DDC","Department of Design and Construction","Fixed Asset","0","0.00","5738263.15" +"850PV236SGD3","DDC","Department of Design and Construction","Fixed Asset","0","121649.88","14115164.12" +"850PV241BOIL","DDC","Department of Design and Construction","Fixed Asset","5905000",, +"850PV241EXTR","DDC","Department of Design and Construction","Fixed Asset","2131000","4087650.45","1947844.75" +"850PV262-RT","DDC","Department of Design and Construction","Fixed Asset","92000","218569.14","9013723.22" +"850PV262-RTW","DDC","Department of Design and Construction","Fixed Asset","2385000","5576231.11","10996963.04" +"850PV268MORG","DDC","Department of Design and Construction","Fixed Asset","1110000","0","0" +"850PV272EDUC","DDC","Department of Design and Construction","Fixed Asset","3983000","30106249.35","5935890.03" +"850PV274CHLL","DDC","Department of Design and Construction","Fixed Asset","104000","68540.42","3699326.60" +"850PV274KITR","DDC","Department of Design and Construction","Fixed Asset","2704000","951689.40","3580650.43" +"850PV279ACON","DDC","Department of Design and Construction","Fixed Asset","5476000","486967.05","637393.70" +"850PV289-DEL","DDC","Department of Design and Construction","Fixed Asset","42000","20505780.91","21453219.09" +"850PV289ELEV","DDC","Department of Design and Construction","Fixed Asset","0","0","11000" +"850PV291-QM2","DDC","Department of Design and Construction","Fixed Asset","41613000","1616993.03","3953050.64" +"850PV302-AB","DDC","Department of Design and Construction","Fixed Asset","0","30798.49","26288720.69" +"850PV302BPH1","DDC","Department of Design and Construction","Fixed Asset","33925000","778477.71","2286683.97" +"850PV341SIPA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2224000","415976.6","0" +"850PV362ANN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","5539912.68" +"850PV385RLP3","DDC","Department of Design and Construction","Fixed Asset","0","400893.40","1179874.60" +"850PV406-CAS","DDC","Department of Design and Construction","Fixed Asset","0","108860.53","2677057.59" +"850PV411ITC2","DDC","Department of Design and Construction","Fixed Asset","581000","85723.31","3947585.78" +"850PV419CAR2","DDC","Department of Design and Construction","Fixed Asset","0","0","3470000" +"850PV467-122","DDC","Department of Design and Construction","Fixed Asset","16000","546109.51","34257738.90" +"850PV467ANYC","DDC","Department of Design and Construction","Fixed Asset","202000","459239.16","15122387.73" +"850PV467-BHT","DDC","Department of Design and Construction","Fixed Asset","0","44113.90","4571553.34" +"850PV467BSRC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0.00","848465.14" +"850PV467-CRG","DDC","Department of Design and Construction","Fixed Asset","1560000","447506.40","29044776.52" +"850PV467-HTC","DDC","Department of Design and Construction","Fixed Asset","0","4754.73","618303.97" +"850PV467IRT1","DDC","Department of Design and Construction","Fixed Asset","108000","78234.97","7245507.04" +"850PV467POPP","DDC","Department of Design and Construction","Fixed Asset","2633000","230530.72","7620439.88" +"850PV467SCUL","DDC","Department of Design and Construction","Fixed Asset","0","21145.00","4124567.92" +"850PV488-BN","DDC","Department of Design and Construction","Fixed Asset","157000","101577.13","3075066.24" +"850PV489GEFF","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","51000","2549000","0" +"850PV490ELEC","DDC","Department of Design and Construction","Fixed Asset","1618000","102769.72","4262387.48" +"850PV490-INF","DDC","Department of Design and Construction","Fixed Asset","1863000","7220599.19","11774763.22" +"850PV503ELEV","DDC","Department of Design and Construction","Fixed Asset","5000","35667.92","2749332.08" +"850PV525STU2","DDC","Department of Design and Construction","Fixed Asset","136000","3600000","0" +"850PV525STUD","DDC","Department of Design and Construction","Fixed Asset","600000","7640696.50","52020303.50" +"850PV656-EXT","DDC","Department of Design and Construction","Fixed Asset","2195000","77176.03","683820.97" +"850PV686RENO","DDC","Department of Design and Construction","Fixed Asset","213000","10662000","0" +"850PV784-EWC","DDC","Department of Design and Construction","Lump Sum","21846000","0","0" +"850PV788-FAC","DDC","Department of Design and Construction","Fixed Asset","6430000","414945.74","1002899.26" +"850PV791-TNC","DDC","Department of Design and Construction","Fixed Asset","1484000","422777.89","2908477.69" +"850PV818RENO","DDC","Department of Design and Construction","Fixed Asset","2288000","2242987","0" +"850PV829HVAC","DDC","Department of Design and Construction","Fixed Asset","10566000","745970.58","952184.42" +"850PV957DGRW","DDC","Department of Design and Construction","Fixed Asset","15510000","711222.25","2545238.06" +"850PW29310R","DDC","Department of Design and Construction","Fixed Asset","14289000","288509.71","1284855.29" +"850PW348-71","DDC","Department of Design and Construction","Fixed Asset","469000","12091580.67","17563169.33" +"850PW348-72","DDC","Department of Design and Construction","Fixed Asset","8380000","4179849.55","11260150.45" +"850PW348-73","DDC","Department of Design and Construction","Fixed Asset","772000","4104049.00","17388774.00" +"850PW348-74","DDC","Department of Design and Construction","Fixed Asset","1104000","2037802.82","29451779.17" +"850PW357FIRE","DDC","Department of Design and Construction","Fixed Asset","45823000","2017481.15","10653484.33" +"850PW357MOCS","DDC","Department of Design and Construction","Fixed Asset","0","26081.00","3895523.55" +"850PW77198CT","DDC","Department of Design and Construction","Fixed Asset","10579000","209256.00","1212616.25" +"850PW77207RF","DDC","Department of Design and Construction","Fixed Asset","42683000","5340246.01","754952.6" +"850PW7722V","DDC","Department of Design and Construction","Fixed Asset","200000","4129732.18","7451152.82" +"850PW77ELEV","DDC","Department of Design and Construction","Fixed Asset","3080000","217624.84","719753.93" +"850PW77SIFJC","DDC","Department of Design and Construction","Fixed Asset","0","5450.00","8411241.77" +"850PW80DYCD2","DDC","Department of Design and Construction","Fixed Asset","700000","722559.38","70398048.42" +"850PWD05TH1","DDC","Department of Design and Construction","Fixed Asset","0","1033.51","452357.16" +"111PO187-PR4","UK","Unknown",,"121000","0","0" +"850PWDNJUMBO","DDC","Department of Design and Construction","Fixed Asset","0","0","1078000" +"850PWDNRIBON","DDC","Department of Design and Construction",,"20000","0","980000" +"850PWMNARMR4","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850PWQ077AT2","DDC","Department of Design and Construction","Fixed Asset","309000","174620.09","18834269.65" +"850PWXTNLLS","DDC","Department of Design and Construction","Fixed Asset","1641000","0","0" +"850REMPIV","DDC","Department of Design and Construction","Fixed Asset","0","51530.71","4286425.21" +"850S136-367","DDC","Department of Design and Construction","Fixed Asset","10579000","15352656.83","216627653.04" +"850S136-383S","DDC","Department of Design and Construction","Fixed Asset","6909000","1382141.02","41067670.62" +"850S136-436","DDC","Department of Design and Construction","Fixed Asset","150000","0.02","2674356.39" +"850S195-227S","DDC","Department of Design and Construction","Fixed Asset","178000","74159.55","21848095.09" +"850S219-233A","DDC","Department of Design and Construction","Fixed Asset","2000","1323469.40","212415856.78" +"850SANDBRIGH","DDC","Department of Design and Construction","Fixed Asset","0","440602.11","3586672.19" +"850SANDCONDC","DDC","Department of Design and Construction","Fixed Asset","633000","240.23","845727.77" +"850SANDELEC4","DDC","Department of Design and Construction","Fixed Asset","504000","497122.24","5606723.60" +"850SANDELEC8","DDC","Department of Design and Construction","Fixed Asset","0","1803074.13","2793387.97" +"850SANDPRFAB","DDC","Department of Design and Construction","Fixed Asset","0","4490314.81","143412459.58" +"850SANDSLIP","DDC","Department of Design and Construction","Fixed Asset","2544000","1730738.37","899420.63" +"850SANDY4-50","DDC","Department of Design and Construction","Fixed Asset","1472000","4121493.62","26265610.37" +"850TLCWOOD","DDC","Department of Design and Construction","Fixed Asset","16667000","92924522.11","56652442.43" +"850TLCWOOD1","DDC","Department of Design and Construction","Fixed Asset","27145000","6530661.18","2562935.05" +"056PO79BMAIZ","NYPD","Police Department","Fixed Asset","5175000","126000","21000" +"056SANDWARE","NYPD","Police Department","Fixed Asset","15609000","0","0" +"057F204-DEMO","FDNY","Fire Department","Fixed Asset","-1000","0.00","3012713.91" +"057FX175WN48","FDNY","Fire Department","Fixed Asset","77000","0.00","170812.52" +"068ACSPCR","ACS","Administration for Children's Services","Fixed Asset","8293000","0.00","13011435.98" +"068CYPRESSC","ACS","Administration for Children's Services","Fixed Asset","107000","0","0" +"068FASS","ACS","Administration for Children's Services","Fixed Asset","0","0.00","1402134.22" +"068JJCONS","ACS","Administration for Children's Services","Fixed Asset","0","0","0" +"068NSCC","ACS","Administration for Children's Services","Fixed Asset","14833000","0","0" +"071HH115FLRF","DHS","Department of Homeless Services","Fixed Asset","4053000","0","82500" +"072C138FEDER","DOC","Department of Correction","Fixed Asset","285000","2598842.12","244359.41" +"072C138PURGR","DOC","Department of Correction","Fixed Asset","168000","131529.87","102190.11" +"072C75RNDHV","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","0","0" +"111PO187PR11","UK","Unknown","Fixed Asset","119000","2636.00","285888.63" +"111PO187PR15","UK","Unknown","Fixed Asset","643000","0.00","113844.14" +"111PO187-PR3","UK","Unknown",,"146000","0","104267" +"111PO187-PR8","UK","Unknown",,"377000","0","0" +"111PO187-XRD","UK","Unknown",,"346000","0","499696" +"801HHNC004","SBS","Department of Small Business Services","Lump Sum","693000","0","0" +"806HAM09SINB","HPD","Housing Preservation and Development","Fixed Asset","10000","42715.94","272523.06" +"806HAM13CLEV","HPD","Housing Preservation and Development","Fixed Asset","713000","0","4452000" +"806HAM14KBEY","HPD","Housing Preservation and Development","Fixed Asset","353000","34021.53","2914248.67" +"806HAM14MRSR","HPD","Housing Preservation and Development","Fixed Asset","409000","456213.45","2512831.55" +"806HAM14VAUP","HPD","Housing Preservation and Development","Fixed Asset","456000","24572182.44","17031700.26" +"806HAM16AMBL","HPD","Housing Preservation and Development","Fixed Asset","0","14743.94","993799.23" +"806HAM16MODC","HPD","Housing Preservation and Development","Fixed Asset","1000000","0","0" +"806HAM16SURF","HPD","Housing Preservation and Development","Fixed Asset","250000","0","0" +"806HAM17AHPL","HPD","Housing Preservation and Development","Fixed Asset","38000","0.00","311287.32" +"806HAM17BPSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","66000","9337.33","424885.48" +"806HAM17FORF","HPD","Housing Preservation and Development","Fixed Asset","19027000","15864518","280037" +"806HAM17MRPL","HPD","Housing Preservation and Development","Fixed Asset","0","0.00","419392.00" +"806HAM17PHCC","HPD","Housing Preservation and Development","Fixed Asset","200000","0","0" +"806HAM17SHSC","HPD","Housing Preservation and Development","ITT, Vehicles, and Equipment","38000","0.00","462284.99" +"806HAM17WHPL","HPD","Housing Preservation and Development","Fixed Asset","5000","0.00","344600.54" +"81924201610","HHC","Health and Hospitals Corporation","Fixed Asset","54000","0.00","1004513.87" +"81927201610","HHC","Health and Hospitals Corporation","ITT, Vehicles, and Equipment","132000","0.0","2663342.0" +"850CO296ELEC","DDC","Department of Design and Construction","Fixed Asset","756000","4765991.49","3110173.41" +"850JJ1FACREN","DDC","Department of Design and Construction","Fixed Asset","2276000","5753838.74","64759847.21" +"850LNCA10AGL","DDC","Department of Design and Construction","Fixed Asset","2655000","962077.04","1714773.76" +"850LNCA10JMB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","546000","385041.30","14032639.42" +"850LNCA10RIS","DDC","Department of Design and Construction","Fixed Asset","15000","113190.63","9342978.16" +"850LNCA12EPH","DDC","Department of Design and Construction","Fixed Asset","0","12083.37","382518.29" +"850LNCA12SWP","DDC","Department of Design and Construction","Fixed Asset","50000","9629.49","219113.56" +"850LNCA13GBR","DDC","Department of Design and Construction","Fixed Asset","8428000","227361.50","1217222.82" +"850LNCA13HAM","DDC","Department of Design and Construction","Fixed Asset","4167000","4941758.12","13856969.84" +"850LNCA13HUD","DDC","Department of Design and Construction","Fixed Asset","0","0.00","531981.70" +"850LNCA13MLB","DDC","Department of Design and Construction","Fixed Asset","197000","18496.70","964884.21" +"850LNCA13MOR","DDC","Department of Design and Construction","Fixed Asset","40000","56411.45","2575575.57" +"850LNCA13NAM","DDC","Department of Design and Construction","Fixed Asset","150000","0.00","5323875.87" +"850LNCA13TRE","DDC","Department of Design and Construction","Fixed Asset","23000","110070.77","895114.04" +"850LNCA14MBG","DDC","Department of Design and Construction","Fixed Asset","379000","68659.47","3711957.42" +"850LNCA15RSD","DDC","Department of Design and Construction","Fixed Asset","50000","43629.89","469342.35" +"850LNCAL15CC","DDC","Department of Design and Construction","Fixed Asset","944000","880867.66","8165998.09" +"850LNCM10WCH","DDC","Department of Design and Construction","Fixed Asset","538000","274259.30","4670409.01" +"850LNCM12CPT","DDC","Department of Design and Construction","Fixed Asset","2000","0.00","1183583.01" +"850LNEA13HGR","DDC","Department of Design and Construction","Fixed Asset","5211000","400354.40","1187303.98" +"850LNXA12GRC","DDC","Department of Design and Construction","Lump Sum","1000","32512.45","4916716.64" +"850LNXEA08FN","DDC","Department of Design and Construction","Fixed Asset","0","0.00","1381460.95" +"846P-104COWF","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","490394.09" +"846P-2CPIBDC","DPR","Department of Parks and Recreation","Lump Sum","2600000","0","0" +"846P-213K11B","DPR","Department of Parks and Recreation","Lump Sum","0","64040.40","1095071.17" +"806BINSCOMLI","HPD","Housing Preservation and Development",,"1000000","0","0" +"846P-409FORE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","47000" +"846P-108MARB","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","509912.44" +"846P-103CPEW","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","763980.86" +"846P-108SPBF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","829170.98" +"846P-203RBP1","DPR","Department of Parks and Recreation","Fixed Asset","6500000","0","0" +"846P-405JVPP","DPR","Department of Parks and Recreation","Fixed Asset","1272000","0","0" +"846P-216PPCS","DPR","Department of Parks and Recreation","Fixed Asset","5175000","0","0" +"846P-213K11J","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1297856.43" +"846P-103CPFH","DPR","Department of Parks and Recreation","Fixed Asset","0","12980.05","1832204.96" +"846P-107PPVC","DPR","Department of Parks and Recreation","Fixed Asset","28000","203912.22","4787982.73" +"846P-107WOEF","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","416506.75" +"801BEDFORDAV","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","5448000","0","0" +"126PV988-IT1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","0","0","0" +"846P-109CLAS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1095863.18" +"846P-1BXTEN1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","953614.11" +"846SEED-MPPR","DPR","Department of Parks and Recreation","Fixed Asset","7000000","0","0" +"846P-214C64A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1205022.95" +"801NYCFSHELT","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","330000","0","0" +"846P-109SONA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","189463.53" +"846P-1STMARY","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","429326.64" +"801NYCFSHUTT","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","100000","0","0" +"846P-109SVPT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1848289.79" +"846P-110PSKT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","66241.69" +"846P-200412A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1878329.54" +"816HLQLICCOM","DOHMH","Department of Health and Mental Hygiene","ITT, Vehicles, and Equipment","250000","0","0" +"846P-1BXTEN2","DPR","Department of Parks and Recreation","Fixed Asset","-288000","0.83","4621432.68" +"846P-1CRPOOL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","561831.01" +"846P-214C64B","DPR","Department of Parks and Recreation","Fixed Asset","0","35693.15","1574262.56" +"846P-216K011","DPR","Department of Parks and Recreation","Fixed Asset","0","921.59","17510.4" +"846P-200BNDC","DPR","Department of Parks and Recreation","Fixed Asset","3385000","0.00","4854.55" +"846P-200C17B","DPR","Department of Parks and Recreation","Fixed Asset","0","68182.17","1880718.44" +"846P-205CLPB","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1881920.84" +"846P-216C17L","DPR","Department of Parks and Recreation","Fixed Asset","0","7899.19","974994.32" +"846P-200C64K","DPR","Department of Parks and Recreation","Fixed Asset","0","1354.40","1072915.15" +"846P-200C64P","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","72909.95" +"846P-301C018","DPR","Department of Parks and Recreation","Fixed Asset","4000","0.00","26212.45" +"846P-218CPBF","DPR","Department of Parks and Recreation","Fixed Asset","15240000","0","0" +"801HLKNVITAL","SBS","Department of Small Business Services",,"800000","0","0" +"846P-200C64S","DPR","Department of Parks and Recreation","Fixed Asset","0","9740.63","3132356.81" +"846P-200HPPP","DPR","Department of Parks and Recreation","Fixed Asset","768000","274981.53","687752.00" +"846P-210245A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1392410.98" +"846P-210C17T","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2347186.59" +"846P-214D17A","DPR","Department of Parks and Recreation","Fixed Asset","35000","0.00","1383004.61" +"846P-200K001","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","43534.28" +"846P-200LMBF","DPR","Department of Parks and Recreation","Fixed Asset","1000","55660.16","1534908.54" +"846P-412MON2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1897259.21" +"846P-218CPMC","DPR","Department of Parks and Recreation","Fixed Asset","2618000","0","0" +"846P-200NETH","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","182435.34" +"846P-200PPEB","DPR","Department of Parks and Recreation","Fixed Asset","685000","525342.73","99526.13" +"846P-414019S","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","689633.22" +"846SEED-TPPR","DPR","Department of Parks and Recreation","Fixed Asset","4666000","0","0" +"846SEED-TYLR","DPR","Department of Parks and Recreation","Fixed Asset","15750000","0","0" +"846SEED-BGDC","DPR","Department of Parks and Recreation","Lump Sum","3900000","0","0" +"846SEED-BTHG","DPR","Department of Parks and Recreation","Fixed Asset","28310000","77594.48","2405.52" +"846SEED-GARI","DPR","Department of Parks and Recreation","Fixed Asset","8422000","0","0" +"846P-200PPMB","DPR","Department of Parks and Recreation","Fixed Asset","1809000","110556.87","361476.59" +"846P-200PPNM","DPR","Department of Parks and Recreation","Fixed Asset","49000","138554.42","346548.19" +"846SEED-GPPR","DPR","Department of Parks and Recreation","Fixed Asset","2894000","0","0" +"846SEED-VAPG","DPR","Department of Parks and Recreation","Fixed Asset","8250000","0","0" +"846SEED-VPPR","DPR","Department of Parks and Recreation","Fixed Asset","4666000","0","0" +"846P-214K001","DPR","Department of Parks and Recreation","Fixed Asset","0","296911.87","3991253.54" +"846P-200PPOC","DPR","Department of Parks and Recreation","Fixed Asset","16420000","10498386.27","941825.33" +"846P-200PPWM","DPR","Department of Parks and Recreation","Fixed Asset","688000","382575.26","701359.53" +"846P-200TNCR","DPR","Department of Parks and Recreation","Fixed Asset","0","175334.41","172136.51" +"846P-201K11C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1002371.82" +"846P-201K11E","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","40690.6" +"846P-214K11D","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","37858.53" +"846P-205SPRN","DPR","Department of Parks and Recreation","Fixed Asset","0","9420.00","401207.84" +"846P-206GDAM","DPR","Department of Parks and Recreation","Fixed Asset","743000","708897.76","5810565.49" +"846P-206GDAS","DPR","Department of Parks and Recreation","Fixed Asset","362000","300392.91","2546195.35" +"846P-207D17A","DPR","Department of Parks and Recreation","Fixed Asset","0","1000.00","3429373.76" +"846P-208K11C","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1242655.97" +"846P-208K11D","DPR","Department of Parks and Recreation","Fixed Asset","3000","40424.48","582471.92" +"806NWASHTEMP","HPD","Housing Preservation and Development",,"500000","0","0" +"846P-216K11A","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","521919.60" +"846P-218CNRS","DPR","Department of Parks and Recreation","Fixed Asset","108000","0.00","1796324.51" +"846P-218D17P","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1829509.29" +"846P-302HIGH","DPR","Department of Parks and Recreation","Fixed Asset","4821000","32101.25","42898.75" +"846P-303ERSA","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","303468.25" +"846P-309MPP1","DPR","Department of Parks and Recreation","Fixed Asset","11682000","316553.12","99919.41" +"850HLQNURBH","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"126PV001-EQ1","DCLA","Department of Cultural Affairs","ITT, Vehicles, and Equipment","7000","0","109269" +"846P-309STN2","DPR","Department of Parks and Recreation","Fixed Asset","0","53495.90","766903.77" +"846P-309STNP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","566107.58" +"846P-3CENBOL","DPR","Department of Parks and Recreation","Fixed Asset","-112000","0.00","18299.45" +"850PWMNYORKA","DDC","Department of Design and Construction",,"61000","0","0" +"846P-312IHBT","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1317567.41" +"846P-2GPWBBD","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-3CENTPK","DPR","Department of Parks and Recreation","Fixed Asset","0","1.00","22781957.67" +"846P-200BAND","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","79000","108396.78","1273542.20" +"846P-312INW2","DPR","Department of Parks and Recreation","Fixed Asset","0","13559.40","340986.39" +"846P-313APLG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","1299730.4" +"846P-105UWPB","DPR","Department of Parks and Recreation","Fixed Asset","720000","0","0" +"846P-414BAY6","DPR","Department of Parks and Recreation","Fixed Asset","2125000","311632.94","302727.06" +"846P-414BC88","DPR","Department of Parks and Recreation","Fixed Asset","609000","19530.34","332919.64" +"846P-415FMCP","DPR","Department of Parks and Recreation","Fixed Asset","0","38485.22","6886199.56" +"846P-415FMEN","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1168258.33" +"846SEED-JFPR","DPR","Department of Parks and Recreation","Fixed Asset","6260000","0","0" +"846P-4BC94S1","DPR","Department of Parks and Recreation","Fixed Asset","1000","680.59","178664.41" +"846P-4COLLEG","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","7512563.43" +"846P-200LFHH","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","335000","179194.23","2793098.65" +"846P-407FTMB","DPR","Department of Parks and Recreation","Fixed Asset","3000","9347.84","1256144.48" +"846P-4PNYCA1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1210490.54" +"846P-407SSCS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1823053.77" +"846P-408ADDA","DPR","Department of Parks and Recreation","Fixed Asset","0","142.85","494685.97" +"846SEED-JFRT","DPR","Department of Parks and Recreation","Fixed Asset","7040000","0","0" +"846SEED-CHPR","DPR","Department of Parks and Recreation","Fixed Asset","5962000","0","0" +"846P-408CPCS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","51085.30" +"846SEED-CSTL","DPR","Department of Parks and Recreation","Fixed Asset","16694000","0","0" +"846P-2GPWB28","DPR","Department of Parks and Recreation","Fixed Asset","64318000","64743.13","10256.87" +"850EDDNIMMSS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-409FPBS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1305563.33" +"846P-409FPGR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3281225.92" +"846P-409FPS3","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","795901.76" +"846P-409FPSP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","750122.34" +"846P-409FPTC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","879525.91" +"111PO-MISC","UK","Unknown","ITT, Vehicles, and Equipment","87693000","50000","754000" +"846P-410SFLD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1191687.68" +"850HHKNWIN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","120000","0","0" +"846P-413CRIC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1994124.34" +"846P-216OSPL","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-202GREN","DPR","Department of Parks and Recreation","Fixed Asset","3250000","0","0" +"850HLDNIMEDC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-413IDLE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1250844.42" +"846P-302WSPT","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SEED-PTMC","DPR","Department of Parks and Recreation","Fixed Asset","12920000","0","0" +"846SEED-PTPR","DPR","Department of Parks and Recreation","Fixed Asset","5020000","0","0" +"850HLDNDIGTL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","103000","0","0" +"111SWEMS","UK","Unknown","ITT, Vehicles, and Equipment","221000","0.00","468562.00" +"846P-413LPLG","DPR","Department of Parks and Recreation","Fixed Asset","0","277888.58","907379.76" +"846P-413QCFR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","102752.53" +"846P-4SHREAC","DPR","Department of Parks and Recreation","Fixed Asset","84000","0","498975" +"846P-4SHREDP","DPR","Department of Parks and Recreation","Fixed Asset","24000","25.64","129451.48" +"846P-4DEVOYP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","561058.04" +"850HLDN36VAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","373655" +"846P-4FTTOTC","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-4HISTOR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","1993819.27" +"846P-500LEM2","DPR","Department of Parks and Recreation","Fixed Asset","6000000","0","0" +"850HLDN42XRA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","465060" +"850HLDNIMANS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","252000","252000","0" +"846P-4JAMAIC","DPR","Department of Parks and Recreation","Fixed Asset","0","68593.34","655682.93" +"846P-4JAUSTI","DPR","Department of Parks and Recreation","Fixed Asset","0","46898.00","3165845.62" +"846P-1DREDSC","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","591630.10" +"846P-5FAIRVW","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"826CAT-OPTIM","DEP","Department of Environmental Protection","Lump Sum","29723000","38874641.49","263603670.41" +"846P-4RWSQPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","663958.13" +"850HLDN42WEL","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNHSSIT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","726000","0","0" +"846P-4SHREPG","DPR","Department of Parks and Recreation","Fixed Asset","236000","70137.11","337969.17" +"846P-4SHRESA","DPR","Department of Parks and Recreation","Fixed Asset","95000","13180.31","250425.66" +"850HLDNIMEDI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","305000","0","0" +"850HLDNHCARN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNODAHC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-4SHRESF","DPR","Department of Parks and Recreation","Fixed Asset","114000","0","614228" +"846P-503GHSE","DPR","Department of Parks and Recreation","Fixed Asset","0","34507.90","1705575.80" +"846P-502OCEA","DPR","Department of Parks and Recreation","Fixed Asset","0","167345.10","2507488.25" +"846SANDY1-01","DPR","Department of Parks and Recreation","Fixed Asset","1000","0.00","327530.86" +"846P-5CLVCHL","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","183264.74" +"846P-104BILL","DPR","Department of Parks and Recreation","Fixed Asset","0","3352.83","164510.34" +"846P-4PNYC05","DPR","Department of Parks and Recreation","Fixed Asset","-11000","0.00","10121797.02" +"826GI-OTHER","DEP","Department of Environmental Protection","Fixed Asset","82629000","0","0" +"846P-200K01Q","DPR","Department of Parks and Recreation","Fixed Asset","0","402.30","374407.49" +"846P-200PPEC","DPR","Department of Parks and Recreation","Fixed Asset","0","346821.00","1029385.82" +"846P-206GAPM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","57470.32" +"846P-2PWBPFB","DPR","Department of Parks and Recreation","Fixed Asset","0","27.90","3504217.03" +"846P-308GMGL","DPR","Department of Parks and Recreation","Fixed Asset","0","42739.00","476227.51" +"846P-407KORE","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","581566.86" +"846P-311WATT","DPR","Department of Parks and Recreation","Fixed Asset","0","16500.00","171829.50" +"846P-4DUBOIS","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","559073.00" +"846P-2GPWB30","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"826HED-545","DEP","Department of Environmental Protection","Fixed Asset","5143000","40857474.39","2848223215.50" +"846P-407KPTC","DPR","Department of Parks and Recreation","Fixed Asset","44000","0.00","720318.75" +"846P-414RBPY","DPR","Department of Parks and Recreation","Fixed Asset","0","0.0","90347.8" +"846P-415FMPV","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","392560.42" +"846P-4CLILLO","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","137849.86" +"846P-213MBCS","DPR","Department of Parks and Recreation","Fixed Asset","2335000","1826557","69879" +"841TFX50301","DOT","Department of Transportation","Fixed Asset","258000","0.00","569640.87" +"846SANDY5-35","DPR","Department of Parks and Recreation","Fixed Asset","29000","23458.00","543264.66" +"846SANDY5-49","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","495982.28" +"846P-503WPMO","DPR","Department of Parks and Recreation","Lump Sum","550000","0","0" +"846P-503WPPL","DPR","Department of Parks and Recreation","Fixed Asset","1860000","0","0" +"846P-2FGCSUP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-213MRLB","DPR","Department of Parks and Recreation","Fixed Asset","11100000","22223.15","52776.85" +"846P-300ZO20","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","43000","0","0" +"850HWK1048D","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3213000","5022830.60","22979454.70" +"850HLDNPRIMC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-300ZOO8","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","-8000","0","268615" +"846P-300ZO18","DPR","Department of Parks and Recreation","Fixed Asset","1800000","0","0" +"846SEED-TILY","DPR","Department of Parks and Recreation","Fixed Asset","3400000","0","0" +"846P-300ZO19","DPR","Department of Parks and Recreation","Fixed Asset","2300000","0","0" +"850HLDNLENOX","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNPRIMH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-300ZO21","DPR","Department of Parks and Recreation","Fixed Asset","4621000","501811","0" +"846P-300ZO22","DPR","Department of Parks and Recreation","Fixed Asset","700000","0","0" +"846P-308CSPB","DPR","Department of Parks and Recreation","Fixed Asset","1500000","0","0" +"846P-308CSPC","DPR","Department of Parks and Recreation","Fixed Asset","3614000","0","0" +"846P-305ARMY","DPR","Department of Parks and Recreation","Fixed Asset","1126000","278686.01","3475880.99" +"846P-3CENBL2","DPR","Department of Parks and Recreation","Fixed Asset","21300000","0","0" +"846P-3CENCGD","DPR","Department of Parks and Recreation","Fixed Asset","1522000","1249387.21","5070873.79" +"846P-414RCPR","DPR","Department of Parks and Recreation","Fixed Asset","650000","0","0" +"846P-3CENDL2","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"826JOC-15BWS","DEP","Department of Environmental Protection","Lump Sum","5760000","40596135.83","56631540.11" +"846P-3CENDLC","DPR","Department of Parks and Recreation","Fixed Asset","10429000","401101","7620919" +"846P-3CENHMP","DPR","Department of Parks and Recreation","Fixed Asset","5194000","2168350","0" +"846P-108MHDR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-503OWLH","DPR","Department of Parks and Recreation","Fixed Asset","5768000","0","0" +"846P-3CENHMW","DPR","Department of Parks and Recreation","Fixed Asset","31518000","0","0" +"850HLDNIMVEN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNIMXRA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","284000","0","0" +"826JOC-BWS","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"846P-3CENNMC","DPR","Department of Parks and Recreation","Fixed Asset","1152000","294769.5","5600620.5" +"846P-3CENT13","DPR","Department of Parks and Recreation","Fixed Asset","1890000","0","6297000" +"846SEED-ASPK","DPR","Department of Parks and Recreation","Fixed Asset","21000000","0","0" +"846P-3CENTHM","DPR","Department of Parks and Recreation","Fixed Asset","1723000","0","0" +"850HLDNODAPT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-3CENTSC","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-3CENW85","DPR","Department of Parks and Recreation","Fixed Asset","4003000","1641873.8","1437496.2" +"846P-501APPD","DPR","Department of Parks and Recreation","Fixed Asset","2028000","0","0" +"846P-105SLRG","DPR","Department of Parks and Recreation","Fixed Asset","1800000","0","0" +"846P-3CENZPG","DPR","Department of Parks and Recreation","Fixed Asset","2713000","46801.96","28198.04" +"850HLDNIMVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-3CPPERM","DPR","Department of Parks and Recreation","Fixed Asset","3960000","7138349.62","6062625.38" +"846P-414BAY8","DPR","Department of Parks and Recreation","Fixed Asset","50000","44891.33","0" +"846P-308TRAM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","2480000","0","0" +"846P-303TDRR","DPR","Department of Parks and Recreation","Fixed Asset","522000","0","0" +"846P-307VRSL","DPR","Department of Parks and Recreation","Fixed Asset","54000","0","0" +"846IDA21-13","DPR","Department of Parks and Recreation","Fixed Asset","249000","0","0" +"846P-312IWDH","DPR","Department of Parks and Recreation","Fixed Asset","2780000","38956","0" +"846P-414BAY9","DPR","Department of Parks and Recreation","Fixed Asset","868000","2071448.03","94726.97" +"846P-200ZO19","DPR","Department of Parks and Recreation","Fixed Asset","8263000","0","0" +"846SANDY4-53","DPR","Department of Parks and Recreation","Fixed Asset","328000","55527.74","18605.26" +"846P-111PPWF","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"850HLDNOCARE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-3INHPHR","DPR","Department of Parks and Recreation","Fixed Asset","31352000","0","0" +"846P-414BAY7","DPR","Department of Parks and Recreation","Lump Sum","45000","0","0" +"846P-3ISAAC","DPR","Department of Parks and Recreation","Fixed Asset","714000","0","0" +"846P-414THUR","DPR","Department of Parks and Recreation","Fixed Asset","533000","9703.52","40296.38" +"846P-408CPFR","DPR","Department of Parks and Recreation","Fixed Asset","22700000","0","0" +"846P-4GBLPLG","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"850HLDNUNCOD","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","111000","0","0" +"850HLDNSLKRH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","36000","0","898290" +"846P-4CUNHCP","DPR","Department of Parks and Recreation","Fixed Asset","299000","0.00","534.57" +"846SANDY5-56","DPR","Department of Parks and Recreation","Fixed Asset","1599000","121881.52","62758.07" +"850HLDNUCDEN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","70000","61995","0" +"850HLMNHHSCH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","19000","940375","0" +"846P-305UNQP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-305USP1","DPR","Department of Parks and Recreation","Fixed Asset","520000","0","0" +"846P-5TPSBF","DPR","Department of Parks and Recreation","Fixed Asset","3000","0.00","28612.12" +"846P-503OLMS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","2212000" +"846IDA21-07","DPR","Department of Parks and Recreation","Fixed Asset","338000","0","0" +"846IDA21-08","DPR","Department of Parks and Recreation","Fixed Asset","425000","0","0" +"850HLDNUCBIO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","60000","0","0" +"846IDA21-09","DPR","Department of Parks and Recreation","Fixed Asset","315000","0","0" +"846P-310JRPG","DPR","Department of Parks and Recreation","Lump Sum","6501000","0","0" +"846P-401SOGP","DPR","Department of Parks and Recreation","Fixed Asset","160000","0","0" +"846P-107OVAL","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","96295.34" +"846P-108WORC","DPR","Department of Parks and Recreation","Fixed Asset","5246000","464261.19","22697.47" +"846P-312HPRF","DPR","Department of Parks and Recreation","Fixed Asset","5983000","0","0" +"846P-312HRUL","DPR","Department of Parks and Recreation","Fixed Asset","5964000","0","0" +"846P-2KISRPV","DPR","Department of Parks and Recreation","Fixed Asset","5000000","0.00","2385.44" +"850HLXNUNIC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","300000","0","0" +"846P-3RVLILE","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","3300000","0","0" +"846P-3BBASIN","DPR","Department of Parks and Recreation","Lump Sum","232000","0.00","155911.63" +"846IDA21-12","DPR","Department of Parks and Recreation","Fixed Asset","552000","0","0" +"846IDA21-14","DPR","Department of Parks and Recreation","Fixed Asset","180000","0","0" +"846P-307RPSB","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","98493.62" +"846P-307RPWR","DPR","Department of Parks and Recreation","Fixed Asset","274000","0","0" +"846P-309RBNK","DPR","Department of Parks and Recreation","Fixed Asset","5456000","71592.18","3407.82" +"846P-309RPK1","DPR","Department of Parks and Recreation","Fixed Asset","600000","0","0" +"846P-3RIV110","DPR","Department of Parks and Recreation","Fixed Asset","475000","0","0" +"846P-3RV105L","DPR","Department of Parks and Recreation","Fixed Asset","1650000","0","0" +"846SANDY3-25","DPR","Department of Parks and Recreation","Fixed Asset","3301000","279915.36","70462.52" +"846P-307GEGF","DPR","Department of Parks and Recreation","Fixed Asset","260000","0","0" +"846P-306VPSL","DPR","Department of Parks and Recreation","Fixed Asset","136000","0","0" +"846P-312JHEP","DPR","Department of Parks and Recreation","Fixed Asset","1950000","0","0" +"846SEED-LRTO","DPR","Department of Parks and Recreation","Fixed Asset","14750000","0","0" +"846P-308AGEE","DPR","Department of Parks and Recreation","Fixed Asset","74000","0","0" +"846P-308AGFA","DPR","Department of Parks and Recreation","Fixed Asset","2392000","0","0" +"846P-308AGPO","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SEED-MCGI","DPR","Department of Parks and Recreation","Fixed Asset","19110000","0","0" +"846P-300ERES","DPR","Department of Parks and Recreation","Fixed Asset","0","176.14","18661.86" +"846P-301DUAN","DPR","Department of Parks and Recreation","Fixed Asset","372000","0","0" +"846P-4RGROI1","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3214797.16" +"850HLQNFLUCA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","260000","0","0" +"850HLQNSINAI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","757000","0","0" +"846P-308EPOA","DPR","Department of Parks and Recreation","Fixed Asset","24924000","23210677.42","38440.73" +"846IDA21-03","DPR","Department of Parks and Recreation","Fixed Asset","180000","179885.73","0" +"846P-301CITH","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-312IFPP","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","924653.30" +"846P-2CPIVAD","DPR","Department of Parks and Recreation","Fixed Asset","14040000","0","0" +"846P-214ANDP","DPR","Department of Parks and Recreation","Fixed Asset","1170000","0","0" +"846P-410BPPR","DPR","Department of Parks and Recreation","Fixed Asset","392000","0","0" +"826MIS-DEP","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","2573000","0","0" +"846P-312IHP2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","607680.07" +"846P-304HLKP","DPR","Department of Parks and Recreation","Lump Sum","84000","0","0" +"846P-4RGROI2","DPR","Department of Parks and Recreation","Fixed Asset","18513000","8310960","860000" +"850HRMNFCBC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","540000","0","0" +"846P-203HPUP","DPR","Department of Parks and Recreation","Fixed Asset","6734000","70523.06","4476.94" +"846P-3CPINPR","DPR","Department of Parks and Recreation","Fixed Asset","5380000","442249.17","62089.97" +"846SEED-DEAN","DPR","Department of Parks and Recreation","Fixed Asset","15450000","0","0" +"846P-201ROEB","DPR","Department of Parks and Recreation","Fixed Asset","11116000","35356.01","4643.99" +"846P-311MGPG","DPR","Department of Parks and Recreation","Fixed Asset","7094000","57249.01","92750.99" +"846P-117CPBM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"846SEED-MCDP","DPR","Department of Parks and Recreation","Lump Sum","49000000","0","0" +"846SEED-RNZI","DPR","Department of Parks and Recreation","Fixed Asset","15140000","0","0" +"846SEED-RZPR","DPR","Department of Parks and Recreation","Fixed Asset","6294000","0","0" +"846P-107PPPE","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SEED-KING","DPR","Department of Parks and Recreation","Fixed Asset","3800000","0","0" +"846SEED-RKPH","DPR","Department of Parks and Recreation","Fixed Asset","9100000","0","0" +"846SEED-EPPR","DPR","Department of Parks and Recreation","Fixed Asset","6414000","0","0" +"846P-3CPIEPR","DPR","Department of Parks and Recreation","Fixed Asset","11290000","822.6","19177.4" +"846P-307MPSP","DPR","Department of Parks and Recreation","Fixed Asset","5320000","25285.92","49714.08" +"846P-1CMNDST","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","172632" +"846P-103ROOF","DPR","Department of Parks and Recreation","Fixed Asset","953000","0","0" +"846P-308AHG1","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SEED-BRPR","DPR","Department of Parks and Recreation","Fixed Asset","4666000","0","0" +"850PWDNFOCHE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","64143","0" +"850PWDNMSOUP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-110HIMO","DPR","Department of Parks and Recreation","Lump Sum","0","0","0" +"846P-110HART","DPR","Department of Parks and Recreation","Fixed Asset","16300000","1661395.63","492007.3" +"846P-2BUSHDE","DPR","Department of Parks and Recreation","Lump Sum","30488000","0","0" +"850PWDBCAAVH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","0","0" +"850PWDNRIDGE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-110HIWC","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SANDY1-12","DPR","Department of Parks and Recreation","Fixed Asset","8538000","43225.13","56774.87" +"846P-203CHPL","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-304MCFR","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","106000","0","0" +"846SEED-MCFR","DPR","Department of Parks and Recreation","Fixed Asset","13480000","0","0" +"846P-3CPIVLD","DPR","Department of Parks and Recreation","Fixed Asset","7580000","0","0" +"826MONIT-13","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","-72000","0","214475" +"846P-4IDLETB","DPR","Department of Parks and Recreation","Fixed Asset","1249000","7293.72","47706.28" +"846P-204ELGD","DPR","Department of Parks and Recreation","Fixed Asset","390000","300000","0" +"846P-2CPIWPR","DPR","Department of Parks and Recreation","Fixed Asset","6500000","0","0" +"846P-307HWSC","DPR","Department of Parks and Recreation","Fixed Asset","3800000","87493.5","12506.5" +"850BC-10WW","DDC","Department of Design and Construction","Lump Sum","0","0.00","4492794.08" +"846SANDRP3","DPR","Department of Parks and Recreation","Fixed Asset","1240000","2621.66","1157148.66" +"846P-303SWRD","DPR","Department of Parks and Recreation","Fixed Asset","360000","0","0" +"846P-3SEWARD","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4069.78" +"846IDA21-06","DPR","Department of Parks and Recreation","Fixed Asset","154000","0","0" +"846P-501NSES","DPR","Department of Parks and Recreation","Fixed Asset","6275000","0","0" +"846P-412BPP1","DPR","Department of Parks and Recreation","Fixed Asset","6366000","0","0" +"846P-412BPP5","DPR","Department of Parks and Recreation","Fixed Asset","6872000","0","0" +"846P-2MCTURF","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"850PWDNNYLAG","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-311PAM2","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","4267.94" +"846P-303KILS","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-502DNGN","DPR","Department of Parks and Recreation","Fixed Asset","4001000","35366.42","14633.58" +"846P-3SHRMRW","DPR","Department of Parks and Recreation","Fixed Asset","1801000","21325.61","78674.39" +"846P-411OKPG","DPR","Department of Parks and Recreation","Fixed Asset","4916000","0","0" +"846P-401QBBF","DPR","Department of Parks and Recreation","Fixed Asset","15272000","1471374.21","3608.28" +"846P-4DSTG04","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-2GPWB29","DPR","Department of Parks and Recreation","Lump Sum","5200000","0","0" +"846P-4DSTG08","DPR","Department of Parks and Recreation","Fixed Asset","15146000","0","0" +"846P-5CHARLS","DPR","Department of Parks and Recreation","Fixed Asset","493000","2945.00","9056380.63" +"846P-411KPEF","DPR","Department of Parks and Recreation","Fixed Asset","7864000","0","0" +"846P-108SPTP","DPR","Department of Parks and Recreation","Fixed Asset","2600000","0","0" +"846P-5MIDLPL","DPR","Department of Parks and Recreation","Fixed Asset","1308000","0","0" +"846P-204MHDR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-303BDCG","DPR","Department of Parks and Recreation","Fixed Asset","163000","0","0" +"846P-3CPIHRL","DPR","Department of Parks and Recreation","Lump Sum","1712000","0.00","171508.68" +"846SEED-PCCS","DPR","Department of Parks and Recreation","Fixed Asset","900000","0","0" +"846P-215SPBK","DPR","Department of Parks and Recreation","Fixed Asset","1656000","0","0" +"846SEED-JHNK","DPR","Department of Parks and Recreation","Fixed Asset","24320000","0","0" +"846SEED-JHPR","DPR","Department of Parks and Recreation","Fixed Asset","6260000","0","0" +"850PWDLEGVAN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","453000","0","0" +"846P-200C64J","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","512156.08" +"846P-200PPBH","DPR","Department of Parks and Recreation","Fixed Asset","904000","40088.05","9911.95" +"846SEED-QBRG","DPR","Department of Parks and Recreation","Fixed Asset","30000000","0","0" +"850PWMNPALVN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","87000" +"846P-200PPCC","DPR","Department of Parks and Recreation","Fixed Asset","629000","353455.91","201685.84" +"846P-200PPGA","DPR","Department of Parks and Recreation","Fixed Asset","117795000","0","0" +"846P-410TPFP","DPR","Department of Parks and Recreation","Fixed Asset","326000","0","0" +"846P-108KHC1","DPR","Department of Parks and Recreation","Fixed Asset","660000","0","0" +"850PWDNUAUI","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850PWFCNYHUB","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"846P-200PPGF","DPR","Department of Parks and Recreation","Fixed Asset","116000","13732.7","267.3" +"846P-200PPGR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-102PRNT","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","17740000","0","0" +"801ERFERRY","SBS","Department of Small Business Services",,"1852000","0","0" +"846P-200PPIP","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-200PPLS","DPR","Department of Parks and Recreation","Fixed Asset","5709000","640515.74","14556.09" +"826CI-113-L","DEP","Department of Environmental Protection","Fixed Asset","32750000","7497142.46","285359.08" +"846P-200PPLW","DPR","Department of Parks and Recreation","Fixed Asset","3340000","268435.61","291543.76" +"846P-200PPTS","DPR","Department of Parks and Recreation","Fixed Asset","3956000","111089.27","231198.89" +"850SE848","DDC","Department of Design and Construction","Lump Sum","1243000","9675893.11","54971866.79" +"850PWDNTCAHV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","874000","0","441661" +"850HED-569","DDC","Department of Design and Construction","Fixed Asset","2669000","12005887.85","61751888.55" +"846P-200PPWC","DPR","Department of Parks and Recreation","Fixed Asset","355000","0.00","11125.91" +"846P-200ZO11","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","105293.39" +"846P-2HRVSTR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","104500" +"846SEED-PPLS","DPR","Department of Parks and Recreation","Fixed Asset","15600000","0","0" +"846P-3SUTTPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","9026.43" +"846P-104KILM","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","114709.73" +"846P-204ISPG","DPR","Department of Parks and Recreation","Fixed Asset","6202000","0","0" +"846SEED-BRDY","DPR","Department of Parks and Recreation","Fixed Asset","8544000","0","0" +"846P-3HIGHL3","DPR","Department of Parks and Recreation","Fixed Asset","6875000","5423573.99","117226.01" +"846P-3HLGAT2","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-3HLNERP","DPR","Department of Parks and Recreation","Fixed Asset","115000","0","0" +"826IN-CITYAC","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"846P-413BPRC","DPR","Department of Parks and Recreation","Fixed Asset","2000000","0","0" +"846PV467SWBB","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-104TCFF","DPR","Department of Parks and Recreation","Lump Sum","116000","88317","0" +"850PWKNJCCMP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","35122" +"801FRESHYOU","SBS","Department of Small Business Services","Lump Sum","500000","0","0" +"846P-413BRO4","DPR","Department of Parks and Recreation","Fixed Asset","1430000","0","0" +"846SEED-BFNO","DPR","Department of Parks and Recreation","Fixed Asset","15400000","0","0" +"846SEED-BFPR","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-303CAPJ","DPR","Department of Parks and Recreation","Fixed Asset","2150000","0","0" +"801HRARABAA","SBS","Department of Small Business Services","Lump Sum","1755000","0","0" +"846P-413BROK","DPR","Department of Parks and Recreation","Fixed Asset","764000","0","0" +"846P-106CICP","DPR","Department of Parks and Recreation","Lump Sum","0","0.00","77168.79" +"846P-501HPSP","DPR","Department of Parks and Recreation","Fixed Asset","600000","0","0" +"846P-312AGOR","DPR","Department of Parks and Recreation","Fixed Asset","3720000","0","0" +"846P-202BRD2","DPR","Department of Parks and Recreation","Fixed Asset","1806000","0","0" +"846P-502OTWN","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-108SDPW","DPR","Department of Parks and Recreation","Fixed Asset","3869000","584793.22","54887.33" +"846SEED-PBBL","DPR","Department of Parks and Recreation","Fixed Asset","12522000","0","0" +"826LANDMG-13","DEP","Department of Environmental Protection","Lump Sum","0","0","0" +"846P-311RIFL","DPR","Department of Parks and Recreation","Fixed Asset","318000","0","0" +"846P-415SCHL","DPR","Department of Parks and Recreation","Lump Sum","20105000","0","0" +"846P-310MGSL","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-311MGAP","DPR","Department of Parks and Recreation","Fixed Asset","13794000","994394.82","11493.18" +"126PV123LOBY","DCLA","Department of Cultural Affairs","Lump Sum","1619000","0","0" +"801HRDMN05D1","SBS","Department of Small Business Services","Lump Sum","5050000","0","0" +"846P-405FPDH","DPR","Department of Parks and Recreation","Fixed Asset","2420000","0","0" +"801HLKNWYCK","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"846P-409FPAR","DPR","Department of Parks and Recreation","Fixed Asset","6077000","70551.02","79448.98" +"846P-301WMKT","DPR","Department of Parks and Recreation","Fixed Asset","248000","0","0" +"801HRDN04D1","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"846P-2BELTPF","DPR","Department of Parks and Recreation","Fixed Asset","1239000","3966939.99","227125.01" +"846P-307TDRV","DPR","Department of Parks and Recreation","Fixed Asset","245000","0","0" +"850HWX413","DDC","Department of Design and Construction",,"38836000","2009751.68","0" +"850HWK1669B","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","144788000","3499690.35","2136381.05" +"801CYPRESSH","SBS","Department of Small Business Services","Lump Sum","790000","0","0" +"850HWCSCH3A","DDC","Department of Design and Construction","Lump Sum","0","0.00","3263467.78" +"850HWCSCH3MM","DDC","Department of Design and Construction","Lump Sum","0","8228.20","6119963.45" +"850HWXJEROME","DDC","Department of Design and Construction","Lump Sum","12703000","0","0" +"801PWDNCAH","SBS","Department of Small Business Services","Lump Sum","16800000","0","0" +"801QHOUSE3","SBS","Department of Small Business Services","Lump Sum","82000","0","1468488" +"826LFK-RELO","DEP","Department of Environmental Protection","Fixed Asset","9363000","0","0" +"850HWCSCHPKR","DDC","Department of Design and Construction","Lump Sum","2258000","9540762.39","16059577.21" +"850GI-BX-PP","DDC","Department of Design and Construction","Fixed Asset","53395000","999221.07","5096850.93" +"850HWCSCHPMN","DDC","Department of Design and Construction","Lump Sum","34357000","342690.27","3149529.82" +"826ASB-REM","DEP","Department of Environmental Protection","Fixed Asset","3740000","2058828.56","2279676.46" +"850QED1060","DDC","Department of Design and Construction","Fixed Asset","64834000","1330211.34","259546.02" +"801KIPDOME2","SBS","Department of Small Business Services","Lump Sum","0","0.0","383887.8" +"801PWDNCAH2","SBS","Department of Small Business Services","Lump Sum","0","0","0" +"801PWGIRLSCT","SBS","Department of Small Business Services","Lump Sum","500000","0","0" +"826ACEDEP502","DEP","Department of Environmental Protection","Fixed Asset","61000","0.00","6931253.90" +"850HWS2006C","DDC","Department of Design and Construction","Fixed Asset","0","35819.96","3505077.08" +"801TISHAUDRE","SBS","Department of Small Business Services","Lump Sum","1750000","0","0" +"81926202403","HHC","Health and Hospitals Corporation","Lump Sum","0","0","0" +"850HWQ724B","DDC","Department of Design and Construction","Fixed Asset","57232000","1763289.69","9373068.92" +"850HWCSCH3H2","DDC","Department of Design and Construction","Lump Sum","0","374349.48","1255191.71" +"850AGDNJCCSE","DDC","Department of Design and Construction","Lump Sum","331000","0","0" +"850HHDNWOMAN","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HL82ARCH","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850QED-976","DDC","Department of Design and Construction","Fixed Asset","1718000","7003309.04","57010353.22" +"850HWCSCH3B3","DDC","Department of Design and Construction","Lump Sum","363000","69.48","4107397.57" +"850HWS2005X","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3057820.51" +"850HRDN02I","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HWQ100SBB","DDC","Department of Design and Construction","Fixed Asset","43857000","1560539.77","4075472.28" +"850QED-1056","DDC","Department of Design and Construction",,"5438000","9482360.12","8573466.70" +"850HLDNICLTL","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850HLKNBPZMC","DDC","Department of Design and Construction","Lump Sum","1000000","0","0" +"850SANDHW24","DDC","Department of Design and Construction",,"296000","2761281.96","13244655.24" +"850QED-1055","DDC","Department of Design and Construction",,"4186000","4362895.52","7755479.53" +"850JCCVEHHD2","DDC","Department of Design and Construction","Lump Sum","164000","0","0" +"850PWPALBK","DDC","Department of Design and Construction","Lump Sum","70000","0","0" +"850QED-1030","DDC","Department of Design and Construction","Lump Sum","0","811495.55","8524721.94" +"850SAND349FM","DDC","Department of Design and Construction","Lump Sum","0","578161.53","8031683.02" +"850PWDNTCAHI","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"056PO79BMUPS","NYPD","Police Department","Fixed Asset","25000","0","37481769" +"126PV038ATC2","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV040BTH1","DCLA","Department of Cultural Affairs","Fixed Asset","425000","0","0" +"850HWX100SBC","DDC","Department of Design and Construction","Fixed Asset","3755000","49553985.09","7833240.62" +"126PV209-HOL","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV176-REP","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"126PV274THTR","DCLA","Department of Cultural Affairs","Fixed Asset","500000","0","0" +"850SANDRESPC","DDC","Department of Design and Construction",,"26903000","130172911.02","67528806.45" +"850SEQPGRD2","DDC","Department of Design and Construction","Lump Sum","33510000","440929.85","1487095.15" +"850CK26W02BS","DDC","Department of Design and Construction",,"35784000","4845658.36","85755.64" +"850SETVDDC16","DDC","Department of Design and Construction","Fixed Asset","199000","1994287.73","1181759.43" +"126PV274PERI","DCLA","Department of Cultural Affairs","Fixed Asset","3186000","0","0" +"850MIBBNC003","DDC","Department of Design and Construction","Lump Sum","3065000","7872456.35","53450199.87" +"850HWK2013GB","DDC","Department of Design and Construction","Fixed Asset","150000","2036378.73","12112883.16" +"801ADA-UCP","SBS","Department of Small Business Services","Fixed Asset","500000","0","0" +"801CONEYWACQ","SBS","Department of Small Business Services","Fixed Asset","8106000","0.00","30893316.35" +"850SEQNS004","DDC","Department of Design and Construction","Lump Sum","2919000","5440624.46","18406347.65" +"850HWCRCDB","DDC","Department of Design and Construction","Fixed Asset","67777000","64860910.20","7764320.49" +"850HD-161DPL","DDC","Department of Design and Construction","Fixed Asset","4525000","11062016.26","2989335.85" +"801HLDNWYCKF","SBS","Department of Small Business Services","Fixed Asset","2000000","0","0" +"801HLEDEN2IO","SBS","Department of Small Business Services","Fixed Asset","47000","0","953325" +"801HLWYCKOFF","SBS","Department of Small Business Services","Fixed Asset","5800000","0","0" +"801HLUNIONAA","SBS","Department of Small Business Services","Fixed Asset","750000","0","0" +"850RED395AC","DDC","Department of Design and Construction","Lump Sum","10418000","13807813.69","8529599.49" +"850MIBBNC002","DDC","Department of Design and Construction","Fixed Asset","4593000","3316759.14","51571026.53" +"850MED669","DDC","Department of Design and Construction","Fixed Asset","55671000","67235945.05","11872756.54" +"801HLXUNIONS","SBS","Department of Small Business Services","Fixed Asset","250000","0","0" +"850HWM10INWD","DDC","Department of Design and Construction",,"29268000","145558","1000000" +"801HRDKN05J1","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801MSICUEXPA","SBS","Department of Small Business Services","Fixed Asset","5000000","0","0" +"850HWQ1190A","DDC","Department of Design and Construction","Fixed Asset","120919000","3000179.43","11757194.58" +"801NYPDHRP76","SBS","Department of Small Business Services","Fixed Asset","0","240575.07","366363.73" +"850SER002334","DDC","Department of Design and Construction","Fixed Asset","39775000","177826.15","168044.53" +"850SEQNS005","DDC","Department of Design and Construction","Lump Sum","26400000","0","1600000" +"850HWK100SBC","DDC","Department of Design and Construction","Fixed Asset","1630000","31139707.64","59384013.21" +"801NYULHQ","SBS","Department of Small Business Services","Fixed Asset","8300000","0","0" +"850GQTI10-03","DDC","Department of Design and Construction","Fixed Asset","0","4415664.75","9849152.79" +"850HWPR18X","DDC","Department of Design and Construction","Fixed Asset","1000","204663.66","8826115.84" +"850HWCSCH4A","DDC","Department of Design and Construction","Lump Sum","0","589695.98","6743149.17" +"850SAND349F2","DDC","Department of Design and Construction","Lump Sum","581000","617320.35","6644858.09" +"801LICRENOV","SBS","Department of Small Business Services","Fixed Asset","750000","0","0" +"801P-2CPIRHR","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"850RED-388","DDC","Department of Design and Construction",,"693000","1793376.73","9902677.22" +"801P-3HIGHLL","SBS","Department of Small Business Services","Fixed Asset","98000","1421416.77","4131193.23" +"850QED-1050","DDC","Department of Design and Construction",,"1450000","3245256.54","9810788.87" +"850HWR703","DDC","Department of Design and Construction","Lump Sum","42535000","3261776","0" +"801P-3RETWAL","SBS","Department of Small Business Services","Fixed Asset","0","176722.46","4055349.85" +"850HWCSCH4B1","DDC","Department of Design and Construction","Lump Sum","10000","501984.76","8616487.15" +"850QED-1054","DDC","Department of Design and Construction",,"1188000","8412434.65","13726560.40" +"850SER200319","DDC","Department of Design and Construction",,"151134000","0","0" +"850HWCSCH3G1","DDC","Department of Design and Construction","Lump Sum","0","814088.37","2983998.90" +"801P-209MTPP","SBS","Department of Small Business Services","Fixed Asset","9882000","1814341.91","236751.63" +"801P-2BUSHDE","SBS","Department of Small Business Services","Fixed Asset","0","2136001.23","3850327.07" +"801P-1ORCHPA","SBS","Department of Small Business Services","Fixed Asset","15013000","15161774.25","94206385.02" +"801QCHFOREST","SBS","Department of Small Business Services","Fixed Asset","2750000","0","0" +"801PV075BMSA","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"801PWDKIPS3","SBS","Department of Small Business Services","Fixed Asset","114000","0","913647" +"850HWKNUAV","DDC","Department of Design and Construction","Fixed Asset","71880000","2162561.26","765095.74" +"850HWQ1210","DDC","Department of Design and Construction","Lump Sum","81600000","4838477.37","300000" +"850HWK1153A","DDC","Department of Design and Construction","Fixed Asset","40000","13719.52","11096348.90" +"850HWX100SBS","DDC","Department of Design and Construction","Fixed Asset","0","563114.57","30242234.10" +"801PV394WSBD","SBS","Department of Small Business Services","Fixed Asset","26000","210788.86","4563489.14" +"801PV209-ARI","SBS","Department of Small Business Services","Fixed Asset","27225000","0","0" +"801PROSPPLC","SBS","Department of Small Business Services","Fixed Asset","42000","0.00","50537491.10" +"801QNSHOUSE1","SBS","Department of Small Business Services","Fixed Asset","0","0","4367000" +"850SELCDDC09","DDC","Department of Design and Construction","Lump Sum","160000","947457.78","6877721.12" +"801WHARLMPK","SBS","Department of Small Business Services","Fixed Asset","1162000","0","0" +"806BAAFINMON","HPD","Housing Preservation and Development","Fixed Asset","2000000","0","0" +"801WHARLMPRN","SBS","Department of Small Business Services","Fixed Asset","150000","0","0" +"801SBSRELOCA","SBS","Department of Small Business Services","Fixed Asset","117000","0.00","20153801.07" +"850GNCB14-1A","DDC","Department of Design and Construction","Fixed Asset","49000","3771.85","5521513.89" +"850HWS2006X","DDC","Department of Design and Construction","Fixed Asset","0","0.00","2212914.62" +"826CRO-530","DEP","Department of Environmental Protection","Fixed Asset","17555000","5293715.62","18570842.28" +"850HWX409","DDC","Department of Design and Construction","Fixed Asset","74983000","4485000","0" +"806HAM18BPBC","HPD","Housing Preservation and Development","Fixed Asset","0","0","297953" +"806HAM18OHPG","HPD","Housing Preservation and Development","Fixed Asset","0","0","400416" +"806HAM20PSCC","HPD","Housing Preservation and Development","Fixed Asset","1638000","230748","0" +"850HWK1673","DDC","Department of Design and Construction","Lump Sum","29392000","1338085.4","629109.6" +"806HAM24MRTA","HPD","Housing Preservation and Development","Fixed Asset","11215000","8393859.48","0" +"806HAM24CHBR","HPD","Housing Preservation and Development","Fixed Asset","38909000","0","0" +"850SANDRDHK","DDC","Department of Design and Construction",,"144963000","159498812.83","17845075.40" +"806R2286BPE","HPD","Housing Preservation and Development","Fixed Asset","250000","0","0" +"850HWKGOWANS","DDC","Department of Design and Construction","Lump Sum","63827000","3800496.40","470735.60" +"850HWPEDSF5","DDC","Department of Design and Construction","Lump Sum","875000","4632445.81","23853838.80" +"806R150TH","HPD","Housing Preservation and Development","Fixed Asset","675000","0","1025000" +"850GKOH15-02","DDC","Department of Design and Construction","Fixed Asset","1840000","18299293.69","32266895.09" +"850SEQ200442","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3000","151510.08","1566927.15" +"850HW2CR13CW","DDC","Department of Design and Construction","Fixed Asset","79000","617401.66","10016224.65" +"850HWQ121B3","DDC","Department of Design and Construction","Fixed Asset","37683000","873346.17","4924927.77" +"850PS-349","DDC","Department of Design and Construction","Fixed Asset","4460000","23782468.46","957571.54" +"850HW2CR11A","DDC","Department of Design and Construction","Fixed Asset","0","0.00","20733738.23" +"850SEX200400","DDC","Department of Design and Construction","Fixed Asset","3225000","8996610.95","12536182.68" +"806NDF-18ECC","HPD","Housing Preservation and Development","Fixed Asset","1881000","649684.04","1275315.96" +"816ACEDOH212","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","1000","10468.44","722786.36" +"806RSTJAMES","HPD","Housing Preservation and Development","Fixed Asset","3500000","0","0" +"801HYDCBLVD","SBS","Department of Small Business Services","Fixed Asset","1267000","4984.71","37945509.62" +"826CRO-534","DEP","Department of Environmental Protection","Fixed Asset","6240000","8122330.12","14525922.34" +"850HWR1164","DDC","Department of Design and Construction","Fixed Asset","115000","0.00","2969703.96" +"850SER200272","DDC","Department of Design and Construction","Fixed Asset","53000","0.00","10244830.23" +"826CRO-536","DEP","Department of Environmental Protection","Fixed Asset","61196000","1781444.33","3365201.98" +"850SEN002157","DDC","Department of Design and Construction","Lump Sum","249000","1896483.69","20103058.99" +"850HWCSCH3B2","DDC","Department of Design and Construction","Lump Sum","0","1401503.69","9171341.66" +"816HL82RIVER","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","500000","0","0" +"816HL82JAMVR","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","2000000","0","0" +"816HL82CHRCT","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","39000","25651.55","363199.49" +"850SE-734","DDC","Department of Design and Construction","Fixed Asset","0","0.00","22115678.82" +"816HL82COELE","DOHMH","Department of Health and Mental Hygiene","Fixed Asset","169000","331061","0" +"850SEQ200467","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","55739000","0.00","85655.88" +"81929202602","HHC","Health and Hospitals Corporation","Fixed Asset","3000000","0","0" +"81927202401","HHC","Health and Hospitals Corporation","Fixed Asset","650000","0","0" +"81926202401","HHC","Health and Hospitals Corporation","Fixed Asset","600000","0","0" +"81926202402","HHC","Health and Hospitals Corporation","Fixed Asset","6000000","0","0" +"81960202201","HHC","Health and Hospitals Corporation","Fixed Asset","19924000","6829530.69","3245973.31" +"850DOTSEQ02","DDC","Department of Design and Construction","Lump Sum","16027000","419678.08","422019.22" +"846P-303ALEN","DPR","Department of Parks and Recreation","Fixed Asset","0","74239.99","7166642.44" +"850HED586","DDC","Department of Design and Construction",,"49414000","50000","0" +"826HP-244-L","DEP","Department of Environmental Protection","Fixed Asset","0","0","0" +"826CRO-M&A","DEP","Department of Environmental Protection",,"19140000","0","0" +"850HWK1672","DDC","Department of Design and Construction","Lump Sum","20764000","1822770.15","1859362.34" +"850HWK100BUS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","2411337.34","22678944.23" +"850HWKP2027","DDC","Department of Design and Construction","Fixed Asset","270000","1924999.12","10241323.07" +"826NC-UPGRD","DEP","Department of Environmental Protection","Fixed Asset","4210000","2102626.46","2301099297.65" +"850HWK639WA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","15341796.29","30070104.95" +"850HWK2048","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3996000","5097115.68","2894756.16" +"826RH-83","DEP","Department of Environmental Protection","Fixed Asset","115098000","8807841.17","6633965.51" +"826RO-2","DEP","Department of Environmental Protection","Fixed Asset","94855000","8521172.72","3146185.28" +"827S136-440B","DSNY","Department of Sanitation","Fixed Asset","1990000","19446737.48","16230900.11" +"827S136-436A","DSNY","Department of Sanitation","Fixed Asset","14144000","0","0" +"827S136-332M","DSNY","Department of Sanitation","Fixed Asset","30555000","470704.13","4594911.58" +"846P-1PNYR07","DPR","Department of Parks and Recreation","Fixed Asset","0","21507.07","235345.56" +"846P-200LONG","DPR","Department of Parks and Recreation","Fixed Asset","0","26276.72","2257010.33" +"846P-200PPBL","DPR","Department of Parks and Recreation","Fixed Asset","0","32024.65","1478744.44" +"846P-200CRSL","DPR","Department of Parks and Recreation","Fixed Asset","17000","193363.30","319583.85" +"846P-200PPOP","DPR","Department of Parks and Recreation","Fixed Asset","3000","7875.50","2132207.97" +"846P-200WCST","DPR","Department of Parks and Recreation","Fixed Asset","96000","53311.99","2507072.70" +"850BED-827","DDC","Department of Design and Construction","Fixed Asset","355000","886495.80","2235981.67" +"850HWCSCHPQN","DDC","Department of Design and Construction","Lump Sum","20020000","202137.99","2738375.00" +"850HWQ1201","DDC","Department of Design and Construction","Lump Sum","13855000","1804799.39","1843285.39" +"846P-200PPPH","DPR","Department of Parks and Recreation","Fixed Asset","650000","27005.75","168779.60" +"846P-300ZOO7","DPR","Department of Parks and Recreation","Fixed Asset","0","0","128393" +"846P-300ZO16","DPR","Department of Parks and Recreation","Fixed Asset","1335000","0.00","62366.04" +"850P-303ERPK","DDC","Department of Design and Construction","Fixed Asset","5993000","655357.89","10710889.60" +"850GKOH15-04","DDC","Department of Design and Construction","Fixed Asset","117809000","1393530.76","9453626.24" +"850GKOH15-03","DDC","Department of Design and Construction","Fixed Asset","12743000","79375633.52","18503132.62" +"850GKOH15-01","DDC","Department of Design and Construction","Fixed Asset","95039000","61837751.30","11080737.92" +"846P-400ZO19","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"850SEKDSMH23","DDC","Department of Design and Construction","Fixed Asset","50848000","17826629.32","875728.9" +"846P-414RBRR","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","598663.75" +"850SANDHW10","DDC","Department of Design and Construction","Fixed Asset","0","0.00","3181.64" +"801JAMAAECT","SBS","Department of Small Business Services","Fixed Asset","1039000","9646.52","13198890.82" +"846P-415WRD2","DPR","Department of Parks and Recreation","Fixed Asset","36223000","593794.87","2009174.42" +"846P-502CTPK","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","6896402.02" +"841HWMBRT5","DOT","Department of Transportation","Fixed Asset","0","0.00","2700870.22" +"846SANDY2-14","DPR","Department of Parks and Recreation","Fixed Asset","390000","341928.26","806222.20" +"846SANDY3-14","DPR","Department of Parks and Recreation","Fixed Asset","-92000","37641.35","5118784.18" +"846SANDY4-13","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","629916.99" +"846SANDY4-17","DPR","Department of Parks and Recreation","Fixed Asset","0","9738.03","2381643.10" +"846SANDY4-20","DPR","Department of Parks and Recreation","Fixed Asset","0","0.07","1411408.03" +"850BED-807","DDC","Department of Design and Construction","Fixed Asset","1083000","2568045.64","126134.18" +"850BED-806","DDC","Department of Design and Construction","Fixed Asset","7685000","2243.14","23467.97" +"850HLDNBKMM","DDC","Department of Design and Construction","Fixed Asset","418000","0","0" +"850HWMWTCA7F","DDC","Department of Design and Construction","Fixed Asset","0","2582967.03","24177964.61" +"850HLDNMCMH","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850HWMWTCA7A","DDC","Department of Design and Construction","Fixed Asset","0","70864.03","20363989.11" +"850HLDNTOMO","DDC","Department of Design and Construction","Fixed Asset","2000","820299","0" +"850HLQDNSMHS","DDC","Department of Design and Construction","Fixed Asset","5000","0","0" +"850HLDNSICT","DDC","Department of Design and Construction","Fixed Asset","82000","0","0" +"850NORTHSCHO","DDC","Department of Design and Construction","Fixed Asset","325000","0","637291" +"850PDWTC2013","DDC","Department of Design and Construction","Fixed Asset","858000","153903.36","32988784.46" +"850PWDOVECS","DDC","Department of Design and Construction","Fixed Asset","150000","0","0" +"850PWMNEQPS","DDC","Department of Design and Construction","Fixed Asset","0","0.00","621813.92" +"850SE-886","DDC","Department of Design and Construction","Fixed Asset","0","0.0","148027.6" +"856PW77137C","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"856PW771C09","DCAS","Department of Citywide Administrative Services","Fixed Asset","0","0","0" +"850HWM42PSM","DDC","Department of Design and Construction","Fixed Asset","52686000","641733.5","2268673.5" +"850HWXRCPLZ","DDC","Department of Design and Construction","Fixed Asset","96000","3958098.98","15592728.52" +"850SEQ200508","DDC","Department of Design and Construction","Fixed Asset","55000","60190.49","16184453.94" +"856PW771C21","DCAS","Department of Citywide Administrative Services","Fixed Asset","12500000","0","0" +"846SANDY4-22","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","3113426.45" +"826EE-PEDS","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","30000000","24935286.69","26766234.34" +"826STMWOH-13","DEP","Department of Environmental Protection","Lump Sum","0","0.00","3262893.39" +"841TFD503K26","DOT","Department of Transportation","ITT, Vehicles, and Equipment","193000","0.00","268167.94" +"850SEN002169","DDC","Department of Design and Construction","Lump Sum","2709000","3431069.76","22029303.12" +"850GQBB034","DDC","Department of Design and Construction","Fixed Asset","27060000","7284109","0" +"850HWQ274F2","DDC","Department of Design and Construction","Fixed Asset","20258000","24973599.32","12409040.07" +"850GNCB14-2A","DDC","Department of Design and Construction","Fixed Asset","10000","3952570.90","21266770.09" +"850HWXP132","DDC","Department of Design and Construction","Fixed Asset","111000","529075.68","6954492.82" +"850BB05-02-A","DDC","Department of Design and Construction","Fixed Asset","0","5809991.41","11252930.33" +"841TFD503K23","DOT","Department of Transportation","Fixed Asset","24000","656527.00","1321350.76" +"111SAMPLSTAT","UK","Unknown","Lump Sum","488000","14407.96","1482946.34" +"826SANDWPCPS","DEP","Department of Environmental Protection","Fixed Asset","54047000","132718633.16","27942576.00" +"850SEQ002715","DDC","Department of Design and Construction","Lump Sum","0","2619133.78","8218403.96" +"057F212911ER","FDNY","Fire Department","ITT, Vehicles, and Equipment","3000000","0.00","950052.29" +"826TOC-BWS","DEP","Department of Environmental Protection","Lump Sum","1027000","6065974.78","16775727.54" +"850SE-818","DDC","Department of Design and Construction","Fixed Asset","549000","666365.14","53486173.88" +"850BC-10XX","DDC","Department of Design and Construction","Lump Sum","0","0.00","3985532.02" +"806DEMOLISH","HPD","Housing Preservation and Development","Lump Sum","0","385619.00","29913538.43" +"826CAT-431","DEP","Department of Environmental Protection","Fixed Asset","298689000","9137888.11","21939461.03" +"126PV467-EMR","DCLA","Department of Cultural Affairs","Lump Sum","380690000","0","0" +"841C5447","DOT","Department of Transportation","ITT, Vehicles, and Equipment","209989000","0.00","426491.74" +"826PS-281","DEP","Department of Environmental Protection",,"4500000","798105.98","12601898.04" +"826CSO-LTCP2","DEP","Department of Environmental Protection","Fixed Asset","0","48904.89","35444453.11" +"826DEPMETERS","DEP","Department of Environmental Protection","Fixed Asset","1221000","0","0" +"850SEQ200524","DDC","Department of Design and Construction","Fixed Asset","9000","468914.29","19372121.13" +"850HWXPRATT","DDC","Department of Design and Construction","Fixed Asset","11287000","440316.50","2343908.42" +"850P-1VCPDBR","DDC","Department of Design and Construction","Fixed Asset","200000","89564.81","2117654.57" +"850SANDHW06","DDC","Department of Design and Construction","Fixed Asset","877000","800800.17","6107027.88" +"826EE-PERM","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","750000","2865591.15","2784408.85" +"850SANDHWSIB","DDC","Department of Design and Construction",,"3120000","1035648.57","3052061.35" +"826FACIL-DEP","DEP","Department of Environmental Protection","Lump Sum","15832000","0","0" +"826GI-EDC","DEP","Department of Environmental Protection","Lump Sum","9980000","0","0" +"850HWK614D","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","491000","4376589.51","32540122.29" +"801COLUMBST","SBS","Department of Small Business Services","Fixed Asset","0","6589.27","1795686.23" +"850MED-630","DDC","Department of Design and Construction","Fixed Asset","1200000","8825602.70","22892646.25" +"850PW311BLS","DDC","Department of Design and Construction","Lump Sum","0","120.03","6474950.00" +"850PW335BSLS","DDC","Department of Design and Construction","Lump Sum","0","0.0","657745.5" +"826WQMON-ENT","DEP","Department of Environmental Protection","ITT, Vehicles, and Equipment","0","8000.00","2359653.56" +"850QED-991","DDC","Department of Design and Construction","Fixed Asset","130000","1882944.17","90568840.83" +"850HWTRQX1","DDC","Department of Design and Construction","Fixed Asset","2803000","875464.81","14968884.19" +"850SE-807","DDC","Department of Design and Construction","Fixed Asset","3254000","7986357.10","138628107.36" +"850HWK2048A","DDC","Department of Design and Construction","Fixed Asset","36536000","2059586.92","0" +"850SE-803","DDC","Department of Design and Construction","Fixed Asset","55000","4000455.81","44167409.12" +"846SANDY6-16","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-4USTATR","DPR","Department of Parks and Recreation","Fixed Asset","0","60712.22","992273.10" +"846P-501ALAS","DPR","Department of Parks and Recreation","Fixed Asset","1338000","128965.86","222647.73" +"846SANDY2-13","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"072SANDHART","DOC","Department of Correction","Fixed Asset","6806000","215873.19","6414536.81" +"846P-108VCPT","DPR","Department of Parks and Recreation","Fixed Asset","4896000","46994.57","7662.06" +"850HWK797W","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","3316000","738544.90","9237338.25" +"801FLATNOST","SBS","Department of Small Business Services","Fixed Asset","0","0.00","3844181.95" +"841C5517B","DOT","Department of Transportation","Fixed Asset","5302000","28793.50","6906901.66" +"850HWMMLEXAV","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","2550000","19128610.90","6498093.51" +"850SER200290","DDC","Department of Design and Construction","Lump Sum","4548000","0.00","418764.00" +"850HWCSCH3H1","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850RED394","DDC","Department of Design and Construction","Lump Sum","1380000","10599180.14","11884866.80" +"841C5587","DOT","Department of Transportation","ITT, Vehicles, and Equipment","0","0.00","3039991.88" +"072C75MDCGYM","DOC","Department of Correction","Fixed Asset","0","4911.50","823183.08" +"846P-2GATEW6","DPR","Department of Parks and Recreation","Fixed Asset","178000","0.00","10838.22" +"850SANDISLND","DDC","Department of Design and Construction","Fixed Asset","0","25000.00","53462743.55" +"111PO185-11L","UK","Unknown","ITT, Vehicles, and Equipment","0","0.0","805377.7" +"111PO185-11M","UK","Unknown","ITT, Vehicles, and Equipment","0","0","775276" +"850SER200261","DDC","Department of Design and Construction","Fixed Asset","2462000","11931.35","488068.65" +"846SANDY3-08","DPR","Department of Parks and Recreation",,"650000","62586.24","89993.76" +"111PO163-36","UK","Unknown","ITT, Vehicles, and Equipment","0","0.00","4019342.67" +"846SANDY5-47","DPR","Department of Parks and Recreation","Fixed Asset","1134000","0","0" +"841FERRYRACK","DOT","Department of Transportation","Fixed Asset","24842000","186985.76","2487395.88" +"846P-213ABES","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"072C-101LRFN","DOC","Department of Correction","Fixed Asset","0","0.00","3504016.71" +"111PO-D185GA","UK","Unknown",,"0","0.0","54282.3" +"846SANDY2-30","DPR","Department of Parks and Recreation","Fixed Asset","2442000","210809.28","107853.72" +"850HWK900","DDC","Department of Design and Construction","Lump Sum","13888000","108574.95","1851425.05" +"850SEN002178","DDC","Department of Design and Construction","Lump Sum","877000","2446648.19","7660782.07" +"850HWCSCH98","DDC","Department of Design and Construction","Lump Sum","58988000","0","0" +"850HWMM008","DDC","Department of Design and Construction","Fixed Asset","419000","606435.20","10613166.19" +"850HWMNYPL","DDC","Department of Design and Construction","Fixed Asset","9740000","558666.73","915132.17" +"846SANDY2-25","DPR","Department of Parks and Recreation","Fixed Asset","3295000","73997.7","1002.3" +"846P-206RHO1","DPR","Department of Parks and Recreation","Lump Sum","1424000","0.00","329365.87" +"072C75K9UNIT","DOC","Department of Correction","Fixed Asset","282000","220677.94","3588637.08" +"850SEQPGRD1","DDC","Department of Design and Construction","Lump Sum","10859000","12906839.04","14559228.94" +"850GQ-BBCLST","DDC","Department of Design and Construction",,"37650000","5406651.95","619099.05" +"801SUNSETPAR","SBS","Department of Small Business Services","Fixed Asset","2449000","2036549.27","51435800.86" +"846P-1BXRCAM","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","59000","0.00","12955.36" +"850HWR919","DDC","Department of Design and Construction","Fixed Asset","25185000","493610.29","1681342.12" +"846P-1BXRAFR","DPR","Department of Parks and Recreation","Fixed Asset","34000","4526.00","156400.02" +"850HWXP136D","DDC","Department of Design and Construction",,"39407000","45720400.66","11636047.54" +"846P-200ZO10","DPR","Department of Parks and Recreation","Fixed Asset","908000","0","0" +"846P-210D17T","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","206247.89" +"846P-2SEAGTE","DPR","Department of Parks and Recreation","Fixed Asset","2600000","0","0" +"846P-306ASLV","DPR","Department of Parks and Recreation","Fixed Asset","4662000","259523.03","271075.72" +"846P-306TRPL","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0.00","4658.13" +"846P-308AG02","DPR","Department of Parks and Recreation","Fixed Asset","4000","0.00","722486.84" +"846P-400ZOO4","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-65BORO","DPR","Department of Parks and Recreation","Fixed Asset","3259000","0.00","10205088.53" +"850HWX414","DDC","Department of Design and Construction","Fixed Asset","124778000","3704314.72","0" +"846SANDY3-07","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846SANDY3-09","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","2484.58" +"850BED798","DDC","Department of Design and Construction","Fixed Asset","1405000","4551380.88","53038944.76" +"850HWTRR1","DDC","Department of Design and Construction","Fixed Asset","4772000","3479243.00","3940615.73" +"850SER200552","DDC","Department of Design and Construction","Lump Sum","12244000","0.00","198179.37" +"856PW308VEH3","DCAS","Department of Citywide Administrative Services","ITT, Vehicles, and Equipment","3652000","0","499862" +"846P-3PL14A5","DPR","Department of Parks and Recreation","Fixed Asset","0","0.00","70612.56" +"072C75SEAWLL","DOC","Department of Correction","Fixed Asset","0","337985.25","311991.75" +"072C75WTRMN","DOC","Department of Correction","Fixed Asset","0","241088.92","169280.08" +"846P-3GMHVAC","DPR","Department of Parks and Recreation","Lump Sum","2107000","0","0" +"072SANDSHORE","DOC","Department of Correction","Fixed Asset","14176000","6650018.74","32441150.44" +"850SANDR01","DDC","Department of Design and Construction","Fixed Asset","65000","976332.12","5015795.52" +"846P-301BPOC","DPR","Department of Parks and Recreation","Fixed Asset","5871000","63463.67","36536.33" +"846SANDY2-31","DPR","Department of Parks and Recreation","Fixed Asset","1852000","156272.83","92727.17" +"846SANDY2-33","DPR","Department of Parks and Recreation","Fixed Asset","4324000","444521.44","77478.56" +"850SER002324","DDC","Department of Design and Construction","Fixed Asset","5833000","103500.00","1280453.38" +"072C75CELLD","DOC","Department of Correction","ITT, Vehicles, and Equipment","0","0","0" +"846P-312MJMR","DPR","Department of Parks and Recreation","Fixed Asset","7282000","5413426.16","637428.76" +"850HWQ1198","DDC","Department of Design and Construction","Fixed Asset","42254000","119875","1422805" +"846P-206RH02","DPR","Department of Parks and Recreation","Lump Sum","1500000","0.00","146488.08" +"846P-214RIDE","DPR","Department of Parks and Recreation","Fixed Asset","4096000","334011.99","92653.46" +"846P-218PWMP","DPR","Department of Parks and Recreation","Fixed Asset","45000","0.00","516636.47" +"846P-2CIGNWY","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"850HWTRK1","DDC","Department of Design and Construction","Fixed Asset","38815000","126138.79","4317692.66" +"846P-308MHM2","DPR","Department of Parks and Recreation","Fixed Asset","1581000","4314692.84","742711.16" +"846P-308AGPF","DPR","Department of Parks and Recreation","Fixed Asset","108000","0","0" +"846P-400ZO15","DPR","Department of Parks and Recreation","Lump Sum","-12000","0","325600" +"846P-312DFAR","DPR","Department of Parks and Recreation","Fixed Asset","7886000","353891.79","907851.92" +"846P-312JHRW","DPR","Department of Parks and Recreation","Fixed Asset","229000","0.00","481.36" +"846P-400ZO18","DPR","Department of Parks and Recreation","Lump Sum","256000","597728","0" +"850MIBBNC04B","DDC","Department of Design and Construction","Fixed Asset","49863000","4821433.98","1339917.22" +"850HWQ1182B","DDC","Department of Design and Construction","Fixed Asset","6201000","4718014.61","22614870.69" +"846P-218GOLF","DPR","Department of Parks and Recreation","Fixed Asset","308000","0.00","1556642.32" +"850HWX405","DDC","Department of Design and Construction","Fixed Asset","17882000","594558.96","1694769.04" +"846P-301PECK","DPR","Department of Parks and Recreation","Fixed Asset","0","289741.37","4974171.53" +"846P-413JH72","DPR","Department of Parks and Recreation","Fixed Asset","1221000","223098.47","2106210.71" +"846P-414BCAP","DPR","Department of Parks and Recreation","Fixed Asset","915000","122158.71","2453666.23" +"850WM-LC-17","DDC","Department of Design and Construction","Lump Sum","475000","2422187.59","2952961.04" +"846P-217TILD","DPR","Department of Parks and Recreation","Fixed Asset","790000","640553.44","1802867.12" +"846P-407VELO","DPR","Department of Parks and Recreation",,"0","0","0" +"846P-4OLMST3","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","140000","21032.94","1802600.22" +"846P-1FERRYA","DPR","Department of Parks and Recreation","Lump Sum","0","76197.58","8936504.74" +"846P-313CPSW","DPR","Department of Parks and Recreation","Fixed Asset","3992000","2254271.31","192085.77" +"846P-400ZO16","DPR","Department of Parks and Recreation","Fixed Asset","-156000","0","0" +"850SANDHW12","DDC","Department of Design and Construction","Fixed Asset","0","1535222.93","6672065.28" +"846P-400ZO17","DPR","Department of Parks and Recreation","Fixed Asset","0","0","0" +"846P-400ZOO8","DPR","Department of Parks and Recreation","Fixed Asset","12988000","302558.50","416052.98" +"846P-415LWPG","DPR","Department of Parks and Recreation","Fixed Asset","5000","5462.56","581039.4" +"850DOTSEQ01","DDC","Department of Design and Construction","Lump Sum","7291000","3648752.58","6303466.39" +"801HWQ662D","SBS","Department of Small Business Services","Fixed Asset","0","0.00","4740883.80" +"850HWK779W","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","762000","1852016.37","16715974.78" +"801HWQ1191","SBS","Department of Small Business Services","Fixed Asset","0","235366.21","5221151.59" +"850MIBBNC04A","DDC","Department of Design and Construction","Fixed Asset","4607000","2523259.10","20801884.73" +"846P-4QWCABR","DPR","Department of Parks and Recreation","Fixed Asset","31000","68700","0" +"846P-4QWCAMS","DPR","Department of Parks and Recreation","Fixed Asset","2705000","0","0" +"850HWR00511","DDC","Department of Design and Construction","Fixed Asset","40329000","428489.75","1890861.77" +"846P-4OLMST","DPR","Department of Parks and Recreation","Fixed Asset","8000","17870.19","2974519.38" +"850HWCSCH4C2","DDC","Department of Design and Construction","Lump Sum","0","1960079.12","14605222.22" +"850SETVDDC17","DDC","Department of Design and Construction","Fixed Asset","649000","1168030.78","2253930.60" +"846SANDY4-21","DPR","Department of Parks and Recreation","Fixed Asset","207000","315324.53","371397.41" +"850HWBUSPAD7","DDC","Department of Design and Construction",,"5082000","0","0" +"850HWM1688","DDC","Department of Design and Construction",,"20070000","1280847.7","1203852.3" +"850HWCSCH4D","DDC","Department of Design and Construction","Lump Sum","1556000","24192531.23","4390298.61" +"850SER002237","DDC","Department of Design and Construction","Fixed Asset","1236000","0","0" +"850P-3RANDAL","DDC","Department of Design and Construction","Fixed Asset","39586000","1488256.14","2460619.86" +"850HWCPEDLOC","DDC","Department of Design and Construction",,"0","1624033.98","11037685.51" +"850SELCDDC11","DDC","Department of Design and Construction","Lump Sum","2431000","6401523.22","3459441.82" +"850HWX406","DDC","Department of Design and Construction","Lump Sum","11633000","675520.83","2429195.67" +"850HWCRWALLC","DDC","Department of Design and Construction","Lump Sum","-1353000","0.00","3480385.05" +"850HWSRT200E","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","22022000","345939.75","2918650.90" +"850MIBBNC005","DDC","Department of Design and Construction","Fixed Asset","0","0","0" +"850SEBLQX01","DDC","Department of Design and Construction","Fixed Asset","1974000","18965223.97","1892180.55" +"850RWQ005","DDC","Department of Design and Construction","Fixed Asset","93000","76748.95","8559628.40" +"850HWM2025","DDC","Department of Design and Construction","Lump Sum","81318000","538981.92","2774795.68" +"850SER200202","DDC","Department of Design and Construction","Fixed Asset","131000","2505982.68","31912754.08" +"850SER200309","DDC","Department of Design and Construction","Lump Sum","8006000","269394.55","1340085.84" +"850GKCI05-1A","DDC","Department of Design and Construction","Fixed Asset","12000","5373136.19","19252139.61" +"850HWX404","DDC","Department of Design and Construction","Lump Sum","8082000","279893.72","2259857.28" +"850HWM100SNC","DDC","Department of Design and Construction","Fixed Asset","48370000","404666.20","4833094.63" +"850HWPLZ017K","DDC","Department of Design and Construction","Fixed Asset","730000","1546326.68","5450727.22" +"850HWCSCHPBX","DDC","Department of Design and Construction","Lump Sum","601000","3621096.85","12065763.69" +"850SE849","DDC","Department of Design and Construction",,"39036000","0","0" +"850HWCSCH3G2","DDC","Department of Design and Construction","Lump Sum","0","232587.62","5657531.54" +"850HWQ788CS","DDC","Department of Design and Construction","Fixed Asset","16398000","792018.95","1900039.05" +"850HWKNBP","DDC","Department of Design and Construction","Lump Sum","44919000","1779980.50","744343.5" +"801HWD10214","SBS","Department of Small Business Services","Fixed Asset","118000","0.00","6842981.91" +"850SEBLMX25","DDC","Department of Design and Construction",,"4718000","254353.21","0" +"850MED-645","DDC","Department of Design and Construction","Fixed Asset","3292000","6446429.70","14063681.60" +"850HWPEDSF1","DDC","Department of Design and Construction","Lump Sum","0","502879.71","4904466.49" +"850HWQ983","DDC","Department of Design and Construction","Fixed Asset","60000","0.00","5713143.45" +"850HWD005K01","DDC","Department of Design and Construction","Fixed Asset","121000","736872.94","3502324.54" +"850HWS2005R","DDC","Department of Design and Construction","Fixed Asset","0","1766345.40","2707959.68" +"126PV274RSRF","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"850HWKDTBK","DDC","Department of Design and Construction","Lump Sum","9307000","654112.41","964587.59" +"850PWDNLEG20","DDC","Department of Design and Construction",,"0","0","2021081" +"850HLDNSPSUR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","1170458" +"850HLQNJAMCA","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1000","0.00","744492.06" +"850HLMNTOUCH","DDC","Department of Design and Construction","Fixed Asset","58000","0","0" +"806HAM23B2CC","HPD","Housing Preservation and Development","Fixed Asset","460000","0","0" +"850HLQNMTEQP","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","0","0" +"850SER200241","DDC","Department of Design and Construction","Fixed Asset","74000","764736.94","17396272.42" +"850HWPEDSF4","DDC","Department of Design and Construction","Lump Sum","1440000","3999219.19","20406535.72" +"806HAM22MEBC","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"801PWQCHPOMK","SBS","Department of Small Business Services","Lump Sum","4500000","0","0" +"850HLMNUMMHC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","94780","0" +"850HLDNSICT2","DDC","Department of Design and Construction","Fixed Asset","173000","0","0" +"126PV075AQCU","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"850PWDNURBG1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","0","0" +"801B&GCMETRO","SBS","Department of Small Business Services",,"0","0.00","286260.64" +"801CHHOAPOST","SBS","Department of Small Business Services",,"1500000","0","0" +"801HRLOHC","SBS","Department of Small Business Services",,"4400000","0","0" +"801HRDNPROM","SBS","Department of Small Business Services",,"2250000","0","0" +"801SANCT4FAM","SBS","Department of Small Business Services","Lump Sum","654000","0","0" +"850QED1063AC","DDC","Department of Design and Construction","Lump Sum","37235000","27518369.10","1115480.43" +"850RED393","DDC","Department of Design and Construction","Fixed Asset","29460000","0","0" +"850HLXNUNION","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","85000","48860","0" +"850PWDGWHIT","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","150000","0","0" +"850HLDNICLBR","DDC","Department of Design and Construction","Lump Sum","0","0","0" +"850PWDNURBG2","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","60000","0","0" +"801P-4CPIFOR","SBS","Department of Small Business Services","Fixed Asset","0","0","0" +"806HAM20GCBR","HPD","Housing Preservation and Development","Fixed Asset","271000","39846.68","338897.87" +"850HLXNUNIO","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","144000","0","0" +"850HLDNODAPH","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"850HLDNMTICU","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","75000","0","0" +"801PWMLGSVC1","SBS","Department of Small Business Services","Lump Sum","856000","0","0" +"126PV274ELV2","DCLA","Department of Cultural Affairs","Fixed Asset","0","0","0" +"850HLQNFSHMR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","757000","0","0" +"850HLQNFLUS","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","500000","0","0" +"806HAM21LMPG","HPD","Housing Preservation and Development","Fixed Asset","0","0","0" +"850HLXNUNIVR","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","160000","0","0" +"806HAM21UPCC","HPD","Housing Preservation and Development","Fixed Asset","165000","0","0" +"850HLXNUCHXC","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","55000","0","0" +"850HLQNMTSIN","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","705000","0","0" +"850HLXNUNIOE","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","100000","0","0" +"850PWDNSVCES","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","0","0" +"806MEUCLID","HPD","Housing Preservation and Development","Lump Sum","350000","0","0" +"126PV274-AH2","DCLA","Department of Cultural Affairs","Fixed Asset","3950000","0","0" +"850PWD9SHEM1","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1100000","0","0" +"806HAM26OLIC","HPD","Housing Preservation and Development",,"0","0","0" +"806HAM25MARB","HPD","Housing Preservation and Development","Fixed Asset","300000","0","0" +"850HLMTSINAM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","1217000","1217000","0" +"850HLQCOMM","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","330000","0","0" +"126PV274NWRF","DCLA","Department of Cultural Affairs","Fixed Asset","9886000","0","0" +"801GOVADMH","TGI","Trust for Governors Island","Fixed Asset","0","0","408000" +"850P-1STARLP","DDC","Department of Design and Construction","Fixed Asset","5588000","976786.83","41423795.32" +"801GOVISBL20","TGI","Trust for Governors Island","Fixed Asset","0","530489.18","6415784.29" +"850HWK1048C","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","81000","1328968.80","12107273.70" +"850HWXP083","DDC","Department of Design and Construction","Fixed Asset","90000","0.00","1521647.40" +"801GOVISBLD2","TGI","Trust for Governors Island","Fixed Asset","0","180486.00","3830441.63" +"850SANDBHFW","DDC","Department of Design and Construction","Fixed Asset","93475000","0","0" +"801GOVISBMB2","TGI","Trust for Governors Island","Fixed Asset","3012000","1998.33","9650062.93" +"850SER20079","DDC","Department of Design and Construction","Lump Sum","302000","2578925.88","14407064.98" +"850HWR00510","DDC","Department of Design and Construction","Fixed Asset","1000000","521033.49","913302.02" +"801GOVISELE2","TGI","Trust for Governors Island","Fixed Asset","3886000","138598.84","14774781.40" +"801DTBKLYNFM","SBS","Department of Small Business Services","Fixed Asset","0","2000.14","17770713.81" +"801GOVISFRY2","TGI","Trust for Governors Island","ITT, Vehicles, and Equipment","76000","420761.71","31902292.29" +"801LOWMANHUD","SBS","Department of Small Business Services",,"503000","582353.30","163278941.62" +"850HWQ787B3","DDC","Department of Design and Construction",,"1529000","1152715.59","461067.34" +"801GOVISUNUT","TGI","Trust for Governors Island","Fixed Asset","6916000","1720830.51","29509164.29" +"850P-102DELV","DDC","Department of Design and Construction",,"2460000","5663264.53","20177787.61" +"801SANDTGI","TGI","Trust for Governors Island","Fixed Asset","5318000","0","0" +"850HWK1048G","DDC","Department of Design and Construction","Fixed Asset","0","2496024.61","20559075.07" +"846P-3TGIVAN","DPR","Department of Parks and Recreation","ITT, Vehicles, and Equipment","0","0","0" +"850SEQ200547","DDC","Department of Design and Construction","Fixed Asset","0","0.00","102384.49" +"850HWM1048","DDC","Department of Design and Construction","Fixed Asset","166978000","0","0" +"850SEQ002717","DDC","Department of Design and Construction","Fixed Asset","145221000","0","0" +"850SEK20070","DDC","Department of Design and Construction","Fixed Asset","767000","1664541.26","8601402.02" +"850GKCI05-3A","DDC","Department of Design and Construction","Fixed Asset","2833000","4250823.62","22097574.41" +"850GQTI03-23","DDC","Department of Design and Construction","Fixed Asset","400000","6216332.25","16647619.50" +"850SE-796","DDC","Department of Design and Construction","Fixed Asset","371000","329963.15","28648616.10" +"850HBPED216S","DDC","Department of Design and Construction","Fixed Asset","0","1053112.87","1750099.61" +"801CNEDST","SBS","Department of Small Business Services","ITT, Vehicles, and Equipment","172000","0.00","7749628.72" +"850HWMME43ST","DDC","Department of Design and Construction","Fixed Asset","16985000","839198.45","2236679.91" +"850CONISPH2B","DDC","Department of Design and Construction","Lump Sum","89000","4577175.08","55495621.40" +"850HWD105-03","DDC","Department of Design and Construction","Fixed Asset","7522000","763117.17","1861975.14" +"850SAND1187","DDC","Department of Design and Construction","Fixed Asset","130000","0.00","235555.56" +"850RWX020","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","0","2853117.69","18166908.73" +"801SSRECON","SBS","Department of Small Business Services","Fixed Asset","0","0.00","8339318.72" +"850BED838","DDC","Department of Design and Construction","Fixed Asset","9570000","0","0" +"850SEK002380","DDC","Department of Design and Construction","Lump Sum","632000","3979700.85","11894464.19" +"850CS-NC-BAF","DDC","Department of Design and Construction","Fixed Asset","74494000","2918018.42","3757763.58" +"850HWMWTCA7E","DDC","Department of Design and Construction","Fixed Asset","0","30106471.35","60536748.28" +"850HWMP2019","DDC","Department of Design and Construction","Fixed Asset","0","1467563.53","37717925.77" +"850HWX407","DDC","Department of Design and Construction","Lump Sum","101445000","0","0" +"850HED-578","DDC","Department of Design and Construction","Fixed Asset","1163000","3387312.13","4739737.93" +"850HWQ724W","DDC","Department of Design and Construction","Fixed Asset","11000","412583.00","7445675.10" +"850HWXP093A","DDC","Department of Design and Construction","Fixed Asset","0","0.00","8501693.34" +"850MED682","DDC","Department of Design and Construction","Fixed Asset","3618000","15100156.55","1582847.09" +"850RWM001","DDC","Department of Design and Construction","Fixed Asset","0","0.00","17204932.23" +"850RWX023","DDC","Department of Design and Construction","Fixed Asset","17098000","1858211","288748" +"850SANDHW13","DDC","Department of Design and Construction","Fixed Asset","0","3370974.72","16978088.45" +"850SANDHW19","DDC","Department of Design and Construction","Fixed Asset","1123000","0.00","506.17" +"850SEQ200548","DDC","Department of Design and Construction","Fixed Asset","57000","0.00","2179693.77" +"850SEQ200475","DDC","Department of Design and Construction","Fixed Asset","53000","0.00","9772639.02" +"841HBK1201","DOT","Department of Transportation",,"-16683000","4160961.45","96887441.09" +"841HBM1212","DOT","Department of Transportation","Fixed Asset","2282000","4000.02","27349436.36" +"850RWX002","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","188000","8808.69","3991177.92" +"801HWQ662D1","SBS","Department of Small Business Services","Fixed Asset","0","89588.93","69336907.77" +"801125THPDIM","SBS","Department of Small Business Services","Fixed Asset","324000","0.00","5064066.01" +"801DTBKFLATM","SBS","Department of Small Business Services","Fixed Asset","0","0.00","24636032.11" +"850HWBARUCH","DDC","Department of Design and Construction","Fixed Asset","415000","635399.24","11884799.47" +"850HWR1140A","DDC","Department of Design and Construction","Fixed Asset","80120000","44026913.84","7624795.84" +"850HWPLZ016K","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","10000","946076.84","4949098.86" +"850HWR005B","DDC","Department of Design and Construction","Fixed Asset","0","241253.26","1151036.50" +"850HBPED100Q","DDC","Department of Design and Construction","Fixed Asset","80000","0.00","5599636.33" +"850SER002204","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","-168000","372.51","1490103.53" +"850HWMP2012","DDC","Department of Design and Construction",,"11000","5517077.84","80791997.04" +"850CT2-INTER","DDC","Department of Design and Construction","Fixed Asset","630000","1625308.39","13693657.18" +"850GKCI05-2A","DDC","Department of Design and Construction","Fixed Asset","3667000","2675846.55","23366734.59" +"850HWK700B","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","49613000","465633.27","4493211.82" +"850HWR669C","DDC","Department of Design and Construction","Fixed Asset","7053000","13911240.30","75301738.69" +"850SE-842A1","DDC","Department of Design and Construction","Fixed Asset","26338000","33238580.33","63276951.62" +"850HWK876","DDC","Department of Design and Construction","Fixed Asset","33670000","570405.54","8080800.31" +"850SEQ200332","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","7000","132759.83","6552621.70" +"850SE-842C","DDC","Department of Design and Construction","Fixed Asset","0","2182556.00","39049.25" +"850HWQ274F1","DDC","Department of Design and Construction","Fixed Asset","1489000","2813506.70","11256388.83" +"850SEQ200490","DDC","Department of Design and Construction","Fixed Asset","0","65727.51","14532042.58" +"850HWPEDSF4A","DDC","Department of Design and Construction","Lump Sum","1094000","1973282.55","4244863.02" +"850SER200226","DDC","Department of Design and Construction","Lump Sum","1987000","3707793.04","36996328.59" +"850HWK1148","DDC","Department of Design and Construction","Fixed Asset","100000","329471.56","2798552.89" +"850SE-795","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","107000","540462.68","28352450.18" +"850SER002248","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","-12000","0.00","395226.77" +"850HWXP2007","DDC","Department of Design and Construction",,"1566000","38681124.64","3441337.14" +"850SER200196","DDC","Department of Design and Construction","Fixed Asset","224000","243297.66","11314038.36" +"850HWM1157","DDC","Department of Design and Construction","Fixed Asset","-503000","354207.18","15234205.81" +"850HWR890","DDC","Department of Design and Construction",,"0","187822.76","1463217.80" +"850SEQ200523","DDC","Department of Design and Construction","Fixed Asset","43000","115195.05","7520871.51" +"850SE-751","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","17589000","2587138.65","4702717.05" +"850SANDHW15","DDC","Department of Design and Construction","Fixed Asset","50000","1572036.20","9259747.15" +"850HWR1132B","DDC","Department of Design and Construction",,"102000","17245364.21","17268741.44" +"850SEQ200604","DDC","Department of Design and Construction","Fixed Asset","275000","0","753000" +"850SER200245","DDC","Department of Design and Construction","Lump Sum","0","98150.97","33904869.87" +"850HWQ1205","DDC","Department of Design and Construction","Fixed Asset","4098000","374345.42","620126.58" +"850HWQ411B","DDC","Department of Design and Construction","Fixed Asset","2275000","5012269.51","31143990.05" +"850SEQ200473","DDC","Department of Design and Construction","Lump Sum","50000","605065.48","11497990.17" +"850HWQ1195","DDC","Department of Design and Construction","Fixed Asset","1041000","10353856.65","2136281.70" +"850HWQ985","DDC","Department of Design and Construction","Fixed Asset","0","347780.39","11416018.43" +"850HWX969B","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","81000","1053882.74","25730916.81" +"850HWQ1190-C","DDC","Department of Design and Construction","Fixed Asset","97322000","1996642","125000" +"850HWX710A","DDC","Department of Design and Construction",,"994000","3684211.41","142900294.58" +"850HWMWTCA8B","DDC","Department of Design and Construction","Fixed Asset","0","3712045.11","40351282.12" +"850SEQ-SACBA","DDC","Department of Design and Construction","Fixed Asset","1805000","342405.45","750180.55" +"850SAND1048","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","5104000","20297906.98","3837140.64" +"850SER200232","DDC","Department of Design and Construction","Lump Sum","101000","463663.70","6948207.74" +"850HWR00512","DDC","Department of Design and Construction",,"11358000","2596718.04","2513009.51" +"850SEQ200605","DDC","Department of Design and Construction","Lump Sum","9884000","88500.03","695499.97" +"850SEQ200534","DDC","Department of Design and Construction","Fixed Asset","52000","29783.22","9825355.29" +"850SANDHWSI","DDC","Department of Design and Construction",,"1978000","887557.91","5066645.75" +"850HWXS711","DDC","Department of Design and Construction","Fixed Asset","11170000","520917.13","2195315.71" +"850HWKKP005","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","771000","5609106.24","72892528.85" +"850HWMM100","DDC","Department of Design and Construction","Fixed Asset","6795000","784143","0" +"850HWR00508","DDC","Department of Design and Construction","Fixed Asset","20108000","9295929.55","3649724.71" +"850HWK1048E","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","11254000","580877.02","620734.98" +"850HWPLZ015M","DDC","Department of Design and Construction","Fixed Asset","3399000","3517473.15","10245062.90" +"850HWPLZ006X","DDC","Department of Design and Construction","Fixed Asset","19140000","1073548.7","287451.3" +"850HWKAVEJ81","DDC","Department of Design and Construction",,"17534000","1061943.88","675493.12" +"850HWMWTCB7","DDC","Department of Design and Construction","Fixed Asset","5530000","20257782.43","10498902.82" +"850HWPLZ003M","DDC","Department of Design and Construction","Fixed Asset","115000","2105503.23","19763903.18" +"850HWXS1011","DDC","Department of Design and Construction","Fixed Asset","23869000","1626503.90","554270.10" +"850HWMWTCA6B","DDC","Department of Design and Construction","Fixed Asset","0","434427.14","38257699.10" +"850HWPLZ016M","DDC","Department of Design and Construction","Fixed Asset","12319000","1135196.41","86938.69" +"850HWQ1190B","DDC","Department of Design and Construction","Fixed Asset","81719000","1922115.56","2641568.44" +"850SEQ200574","DDC","Department of Design and Construction","Lump Sum","5000","0.00","3184857.16" +"850SEQ002710","DDC","Department of Design and Construction","Lump Sum","0","0.00","848598.61" +"850SANDR03","DDC","Department of Design and Construction","Fixed Asset","636000","1592603.81","3883131.05" +"850HWXS911","DDC","Department of Design and Construction","Fixed Asset","12793000","1112786.5","951289.5" +"850HWMWTCB8","DDC","Department of Design and Construction","Fixed Asset","4900000","0.0","505868.8" +"850SE-885A","DDC","Department of Design and Construction","Fixed Asset","39919000","3360865.30","7911523.70" +"850PS-312MX","DDC","Department of Design and Construction","Fixed Asset","1308000","2833860.35","30154683.51" +"850HWX006-01","DDC","Department of Design and Construction","Fixed Asset","18733000","379340.64","1719848.36" +"850SEQ200596","DDC","Department of Design and Construction","Lump Sum","0","2662181.07","13527145.59" +"850SE-862","DDC","Department of Design and Construction","Fixed Asset","86287000","526756.07","3115100.34" +"850HWD007K03","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","10578000","85974.93","2277510.74" +"850WTM4SPRW","DDC","Department of Design and Construction","Fixed Asset","1165000","1716059.11","4764049.09" +"850SANDHW08","DDC","Department of Design and Construction","Fixed Asset","2286000","6920672.03","26863163.29" +"850HED593","DDC","Department of Design and Construction","Fixed Asset","14850000","780605.12","850118.88" +"850SANDTWOBR","DDC","Department of Design and Construction","Lump Sum","69366000","191980314.77","232483157.74" +"850SEK200387","DDC","Department of Design and Construction","Fixed Asset","2971000","168372.59","455223.41" +"850S216-401R","DDC","Department of Design and Construction","Fixed Asset","412000","0.00","3846809.55" +"850HWQ1184A","DDC","Department of Design and Construction","Fixed Asset","280000","628071.97","3339910.87" +"850SEQ200558","DDC","Department of Design and Construction","Lump Sum","3702000","3188663.13","11719763.72" +"850SANDHW14","DDC","Department of Design and Construction","Fixed Asset","0","532759.41","19295300.43" +"850SER002329","DDC","Department of Design and Construction",,"14303000","4037822.74","19846672.37" +"850HWX411","DDC","Department of Design and Construction",,"4902000","425505.81","745882.65" +"850SEK20072","DDC","Department of Design and Construction","Lump Sum","8667000","0","0" +"850SER002316","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","96000","1358.95","14144614.68" +"850HWMWTCB2","DDC","Department of Design and Construction","Fixed Asset","16465000","11080890.84","20309727.22" +"850HWM1689","DDC","Department of Design and Construction","Fixed Asset","7741000","0","0" +"850HWR300-03","DDC","Department of Design and Construction","Fixed Asset","60000","1435594.78","5014604.03" +"850SE885AVWE","DDC","Department of Design and Construction","Lump Sum","2819000","0.00","135348575.34" +"850SEQ002709","DDC","Department of Design and Construction","Lump Sum","26000","180061.24","2634196.98" +"850HWR00504","DDC","Department of Design and Construction","Fixed Asset","501000","1710956.50","8834290.28" +"850SER200251","DDC","Department of Design and Construction","Lump Sum","3696000","6347085.02","16246546.39" +"850SER200285","DDC","Department of Design and Construction","Lump Sum","50277000","1059080.81","2910768.57" +"850HWD10105","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","241000","3283164.82","24789992.98" +"850SEK002386","DDC","Department of Design and Construction","Lump Sum","815000","3255693.25","16663135.09" +"850HWPLZ012M","DDC","Department of Design and Construction","Fixed Asset","26000","198854.01","10531105.76" +"850HWK639WB","DDC","Department of Design and Construction","Lump Sum","14669000","390216.87","656177.13" +"850QED1014","DDC","Department of Design and Construction","Fixed Asset","10000","2237813.09","28041098.37" +"850HWPLZ001K","DDC","Department of Design and Construction","Fixed Asset","-156000","293662.98","9225401.38" +"850HWK1048B","DDC","Department of Design and Construction","Fixed Asset","300000","3023576.05","16182366.48" +"850HWX402","DDC","Department of Design and Construction",,"5530000","16733381.01","1839610.28" +"850HWQ1187","DDC","Department of Design and Construction","Fixed Asset","45608000","747793.13","1359262.73" +"850HBPED800Q","DDC","Department of Design and Construction","Fixed Asset","26910000","28120863.62","14365208.31" +"850SEQ200545","DDC","Department of Design and Construction","Fixed Asset","9000","72103.84","4525394.33" +"850SANDHW11","DDC","Department of Design and Construction","Fixed Asset","0","660826.72","12691284.76" +"850HWPLZ010K","DDC","Department of Design and Construction","Fixed Asset","0","447545.86","4645287.06" +"850HWPLZ020M","DDC","Department of Design and Construction","Fixed Asset","123453000","4512731.06","988371.44" +"850HWXP136A","DDC","Department of Design and Construction","Lump Sum","0","3372499.19","21608471.78" +"850SEQNS003","DDC","Department of Design and Construction","Lump Sum","4856000","9247979.29","15033605.33" +"850SANDRESM2","DDC","Department of Design and Construction",,"1163000","13414630.61","178894879.33" +"850SER200151","DDC","Department of Design and Construction","Lump Sum","70000","150668.71","12853878.72" +"850HBMA24662","DDC","Department of Design and Construction","Fixed Asset","13021000","844813.96","2429799.90" +"850HWPLZ018M","DDC","Department of Design and Construction","Fixed Asset","25162000","2054968.37","49031.63" +"850SER200247","DDC","Department of Design and Construction","Fixed Asset","48338000","273072.98","324503.17" +"850HWSRT200F","DDC","Department of Design and Construction","Fixed Asset","44937000",, +"850HWPLZ014M","DDC","Department of Design and Construction","Fixed Asset","27837000","1231347.75","2513591.25" +"850GRANSTBID","DDC","Department of Design and Construction","Fixed Asset","0","911.64","4875821.41" +"850CONISPH3A","DDC","Department of Design and Construction","Fixed Asset","6228000","9617477.28","52271548.15" +"850HWK1669A","DDC","Department of Design and Construction","Lump Sum","5370000","15985101.49","49906807.94" +"850CONISPH04","DDC","Department of Design and Construction","Lump Sum","55735000","659678.68","3098469.29" +"850SE-889","DDC","Department of Design and Construction","Fixed Asset","122468000","235807.34","332543.13" +"850HWMM006","DDC","Department of Design and Construction","Fixed Asset","106000","0.00","3580817.81" +"850HBFDR14BP","DDC","Department of Design and Construction","Fixed Asset","178234000","67316707.03","2634792.42" +"850SER200292","DDC","Department of Design and Construction","Lump Sum","15990000","0.00","409657.58" +"850SANDR04","DDC","Department of Design and Construction","Fixed Asset","1520000","4462062.03","19410092.20" +"850SEK002394","DDC","Department of Design and Construction","Lump Sum","134024000","0","0" +"850HWQ1193","DDC","Department of Design and Construction","Fixed Asset","671000","1773287.83","10687317.16" +"850HWR700","DDC","Department of Design and Construction",,"23620000","1123097.33","1319452.67" +"850GQBB28-29","DDC","Department of Design and Construction","Fixed Asset","35470000","7511040.31","374029.69" +"850SER200258","DDC","Department of Design and Construction","Fixed Asset","4873000","7103047.94","13974187.52" +"850SANDHW26","DDC","Department of Design and Construction","Fixed Asset","44000","0.00","1735.44" +"850HWD10105A","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","6186000","15390005.36","17036438.01" +"850HWD10311","DDC","Department of Design and Construction","Fixed Asset","102321000","1054753.6","1274503.4" +"850SER200236","DDC","Department of Design and Construction","Lump Sum","6000","1129000.03","8855680.25" +"850HWQ1204","DDC","Department of Design and Construction","Fixed Asset","37920000","0","0" +"850SER002326","DDC","Department of Design and Construction","Fixed Asset","0","2693921.54","19153152.33" +"850HD-161D","DDC","Department of Design and Construction","Fixed Asset","42000","3462.87","14281357.10" +"850SEK002383","DDC","Department of Design and Construction","Lump Sum","5563000","9387338.81","15684142.79" +"850HWPLZ004X","DDC","Department of Design and Construction","Fixed Asset","0","669628.19","6563388.38" +"850HWXP136C","DDC","Department of Design and Construction",,"136000","8201333.22","73690036.82" +"850SEQ200529","DDC","Department of Design and Construction","Lump Sum","62000","122.46","15590196.38" +"850HWM12AVE","DDC","Department of Design and Construction",,"9437000","275636.45","1307364.70" +"850SEK002376","DDC","Department of Design and Construction","Lump Sum","2598000","4234748.16","9361635.22" +"850HWMWTCB1","DDC","Department of Design and Construction","Fixed Asset","4755000","3870262.20","9352739.45" +"850HWR00505","DDC","Department of Design and Construction","Fixed Asset","7059000","16010499.54","1750397.20" +"850SER002317","DDC","Department of Design and Construction","Fixed Asset","16683000","489640.00","4395296.80" +"850HWMWTCB6","DDC","Department of Design and Construction","Fixed Asset","3610000","2261019.35","10279665.99" +"850SEK002377","DDC","Department of Design and Construction","ITT, Vehicles, and Equipment","4106000","14000.00","1093854.95" +"850SEK20067","DDC","Department of Design and Construction","Fixed Asset","375000","3842326.72","38405252.86" +"850PV176ITF1","DDC","Department of Design and Construction","Fixed Asset","938000","163220.41","11521043.08" +"850HWK1674","DDC","Department of Design and Construction","Lump Sum","32820000","2222504.84","566693.16" +"850QED-1051","DDC","Department of Design and Construction","Fixed Asset","745000","2086957.82","5062596.05" +"850REG-HP06","DDC","Department of Design and Construction","Fixed Asset","550000","9446865.71","53717020.67" +"850SANDR02","DDC","Department of Design and Construction",,"0","6226835.03","27509853.26" +"850SE-885","DDC","Department of Design and Construction","Fixed Asset","150742000","230417.83","4175388.17" +"850PW311GELS","DDC","Department of Design and Construction","Lump Sum","0","0.00","9347569.35" +"826CSO-HR-DF","DEP","Department of Environmental Protection","Fixed Asset","247822000","3185399.40","12358085.50" +"826CRO-208B","DEP","Department of Environmental Protection","Fixed Asset","251104000","10440297.40","3378689.99" +"826GI-GRANT","DEP","Department of Environmental Protection","Lump Sum","5365000","138411.50","11386190.85" +"850PW311STLS","DDC","Department of Design and Construction","Lump Sum","0","50.00","11447552.70" +"841TFM50316","DOT","Department of Transportation","Fixed Asset","79000","114716.00","121934.24" +"850HL99PROJR","DDC","Department of Design and Construction","Lump Sum","0","0","350000" +"111CITYADMIN","UK","Unknown","ITT, Vehicles, and Equipment","336957000","0","0" +"125AGUPGRADE","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","1005000","0.00","634773.74" +"125CLIENTDAT","DFTA","Department for the Aging","ITT, Vehicles, and Equipment","0","0.00","2338307.24" +"850SEQ200584","DDC","Department of Design and Construction","Fixed Asset","117000","0.00","13729563.53" +"850CS-ER-WCP","DDC","Department of Design and Construction","Fixed Asset","70000","12928306.77","88202068.46" diff --git a/examples/viz/smart_cpdb.html b/examples/viz/smart_cpdb.html new file mode 100644 index 0000000000..07cb685b74 --- /dev/null +++ b/examples/viz/smart_cpdb.html @@ -0,0 +1,758 @@ + + + + + +nyc_capital_projects.csv — data overview + + + + + + +

nyc_capital_projects.csv — data overview

+ + + + + + +
Rows:12,587
Columns:7
Completeness:98.8%
Compiled:2026-07-25 23:28 UTC
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ + + + + + + + From dab7247f96a7e1799a14723db176194cd45de9b7 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 09:14:46 +0800 Subject: [PATCH 08/15] typos: allow the `appropriat` funnel stage stem The budget funnel vocabulary uses truncated stems -- `authoriz`, `obligat`, `disburs`, `encumber` -- so one word covers a whole family. typos 1.48.0 ships a dictionary entry for `appropriat` -> `appropriate`, which fails CI on a stem that is deliberate. Its siblings pass only because the dictionary happens to carry no entry for them, so rewriting just this one to full words would leave five stems and one odd pair, and a future reader would have to do archaeology to learn the reason was a spell checker. Record the exception in the config, where the other false positives already live. Co-Authored-By: Claude Opus 4.7 (1M context) --- _typos.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/_typos.toml b/_typos.toml index cf2d71d32a..d14ebe2128 100644 --- a/_typos.toml +++ b/_typos.toml @@ -28,6 +28,7 @@ nd = "nd" Pn = "Pn" tripel = "tripel" sems = "sems" +appropriat = "appropriat" [files] extend-exclude = [ From 49752eb834f8541c5d41254490ab88c733db35d5 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 09:14:59 +0800 Subject: [PATCH 09/15] describegpt: infer and emit `kind: "pipeline"` relationships (#4222) describegpt has always asked the LLM for a top-level `relationships` array, and `parse_llm_relationships` has always validated it -- but `format_dictionary_jsonschema` dropped it on the floor, and JSON Schema is the format `viz smart --dictionary` consumes. The inference was being requested and discarded on exactly viz's code path (relationships are gated on --infer-content-type, which `--dictionary infer` already passes). Add a `pipeline` kind: a process whose stages narrow monotonically, in either of two encodings. Stages as COLUMNS uses `members` alone, listed upstream-first -- the opposite direction from `ordered`, which ascends, so the two must not be conflated. Stages as ROW VALUES of one category column additionally carries `stage_column`, an ordered `stages` array, and an optional `value_column` to sum. `members` is SYNTHESIZED for the row encoding rather than taken from the LLM. `SynthRelationship::members` has no serde default -- unlike `anchor` -- and the dictionary deserializes in a single pass, so an entry lacking it does not degrade: it hard-errors `synthesize --dictionary`. A test pins that invariant. An unusable `value_column` drops the whole entry rather than falling back to counting rows, since silently turning a declared measure funnel into a row-count funnel changes what the chart claims. The prompt carries a partition guard, because this is the one hazard neither the containment disclosure nor the complement markers can catch: a row-encoded pipeline requires a subject that passes THROUGH the stages over time, so a status column on a one-row-per-entity table is a partition, and a funnel of it would be a lie. Relationships ride in the top-level `x-qsv` rather than at the schema root, for the same reason `grain` does -- it keeps the document a valid draft 2020-12 schema, and a dictionary built without the flag stays byte-identical. Verified against the same `jsonschema::meta::validate` describegpt applies before writing. viz does not read these yet; that follows. Co-Authored-By: Claude Opus 4.7 (1M context) --- resources/describegpt_defaults.toml | 31 +++- src/cmd/describegpt.rs | 1 + src/cmd/describegpt/dictionary.rs | 252 ++++++++++++++++++++++++++-- src/cmd/describegpt/formatters.rs | 116 +++++++++++++ 4 files changed, 389 insertions(+), 11 deletions(-) diff --git a/resources/describegpt_defaults.toml b/resources/describegpt_defaults.toml index a7310c4fa2..f453f36393 100644 --- a/resources/describegpt_defaults.toml +++ b/resources/describegpt_defaults.toml @@ -172,10 +172,36 @@ Emit a top-level "relationships" array; each element is an object with: subtotal <= total). List "members" from lowest to highest. "correlated" - numeric fields that move together, positively or negatively (e.g. height and weight, quantity and total_price). + "pipeline" - a PROCESS whose stages narrow monotonically, each stage being a + subset of the one before it (planned -> committed -> spent; + impressions -> clicks -> leads -> conversions; ordered -> + shipped -> delivered). - "members": an array of 2 or more field names in the group, spelled exactly as the field names above. For "ordered", list them in ascending order. - "anchor": ("ordered" only) the field the others are measured from - normally the first/earliest member. + +A "pipeline" has TWO possible encodings - pick the one matching the data: + a) STAGES AS COLUMNS - one numeric column per stage. List them in "members" in + process order, WIDEST/UPSTREAM FIRST (e.g. ["planned","committed","spent"]). + NOTE this is the OPPOSITE direction from "ordered", which ascends. Do not + confuse the two. + b) STAGES AS ROW VALUES of a single category column. Additionally set: + - "stage_column": that column's name. + - "stages": its values in process order, widest first, spelled EXACTLY as they + appear in the Frequency Distribution below. + - "value_column": (optional) the numeric column to sum per stage. Omit it to + count rows instead. + Still set "members" to [""] plus "" if you named one. + +Only declare a ROW-ENCODED pipeline when a single subject PASSES THROUGH the stages over +time - an event log where one row is one event and the same subject appears at several +stages. NEVER declare one when each row simply sits in one mutually-exclusive state. +Check the "grain" sentence you are about to write: if it says "one row = one ", +then a status/state column is a PARTITION, not a pipeline, and a funnel of it would be a +lie. Never name a complement or residual as a stage (unspent, remaining, balance, +variance, difference) - those are what is LEFT OVER, not a stage the process passed through. + Only emit relationships you are confident about from the field names, the Labels and Descriptions you produced, and the Summary Statistics. Do NOT place a field in more than one relationship. If you find none, emit an empty array. @@ -237,7 +263,10 @@ Return the results in JSON format where each field name is a key, and the value "grain": "one row = one record", "relationships": [ {% raw %} {"kind": "ordered", "members": ["created_date", "closed_date"], "anchor": "created_date"}, - {"kind": "joint", "members": ["city", "state", "zip"]}{% endraw %} + {"kind": "joint", "members": ["city", "state", "zip"]}, + {"kind": "pipeline", "members": ["planned_amt", "committed_amt", "spent_amt"]}, + {"kind": "pipeline", "members": ["funnel_stage", "revenue"], "stage_column": "funnel_stage", + "stages": ["Impression", "Click", "Lead", "Conversion"], "value_column": "revenue"}{% endraw %} ]{% endif %}{% raw %} }{% endraw %} diff --git a/src/cmd/describegpt.rs b/src/cmd/describegpt.rs index e40c9ce46d..f407519aef 100644 --- a/src/cmd/describegpt.rs +++ b/src/cmd/describegpt.rs @@ -3574,6 +3574,7 @@ fn format_dictionary_phase( args.flag_allow_extra_cols, args.flag_strict_dates, grain, + relationships, ); let attribution = replace_attribution_placeholder( "{GENERATED_BY_SIGNATURE}", diff --git a/src/cmd/describegpt/dictionary.rs b/src/cmd/describegpt/dictionary.rs index ec5f01b277..a71965214f 100644 --- a/src/cmd/describegpt/dictionary.rs +++ b/src/cmd/describegpt/dictionary.rs @@ -1944,18 +1944,35 @@ pub(super) fn parse_llm_dictionary_response( Ok(result) } +/// Upper bound on declared stages in a row-encoded `pipeline`, so a malformed +/// response cannot declare a thousand-band funnel. `viz` applies its own, tighter +/// display cap separately; this is only a structural-sanity guard. +const MAX_DECLARED_STAGES: usize = 64; + /// Extract the optional top-level `relationships` array from the LLM's dictionary /// response, validated against `field_names`. Each surviving entry is a clean -/// JSON object `{kind, members[, anchor]}` ready to embed in the dictionary -/// output and consume from `synthesize`. +/// JSON object ready to embed in the dictionary output and consume from +/// `synthesize` and `viz smart`. +/// +/// Recognized kinds are `joint` / `ordered` / `correlated` / `pipeline`. An entry +/// is dropped when its kind is unknown, when it has fewer than two members, or +/// when any member (or an `ordered` anchor) names a column not in `field_names`. +/// Anything that isn't well-formed JSON yields an empty list — relationship +/// inference is best-effort and never fails the dictionary phase. +/// +/// `pipeline` (issue #4222) declares a process whose stages narrow monotonically, +/// in either of two encodings. Stages-as-COLUMNS uses `members` alone, listed +/// upstream-first — the OPPOSITE direction from `ordered`, which is ascending. +/// Stages-as-ROW-VALUES additionally carries `stage_column`, an ordered `stages` +/// array of that column's values, and an optional `value_column` to sum. The +/// presence of `stage_column` is what discriminates the two. /// -/// An entry is dropped when its `kind` is not one of `joint` / `ordered` / -/// `correlated`, when it has fewer than two members, or when any member (or an -/// `ordered` anchor) names a column not in `field_names`. Anything that isn't -/// well-formed JSON yields an empty list — relationship inference is best-effort -/// and never fails the dictionary phase. `synthesize` re-validates every -/// relationship against the real data before using it, so this stage only needs -/// to guarantee structural soundness. +/// **Every emitted entry carries `members`, unconditionally.** `synthesize`'s +/// `SynthRelationship::members` has no serde default (unlike `anchor`) and the +/// dictionary is deserialized in a single pass, so an entry lacking it does not +/// degrade — it hard-errors `synthesize --dictionary`. For the row encoding the +/// members are therefore SYNTHESIZED here from `stage_column`/`value_column` +/// rather than taken from the LLM. pub(super) fn parse_llm_relationships( llm_response: &str, field_names: &[String], @@ -1967,6 +1984,13 @@ pub(super) fn parse_llm_relationships( return Vec::new(); }; let in_fields = |name: &str| field_names.iter().any(|f| f == name); + let str_field = |obj: &serde_json::Map, k: &str| { + obj.get(k) + .and_then(|v| v.as_str()) + .map(str::trim) + .filter(|s| !s.is_empty()) + .map(ToString::to_string) + }; let mut result = Vec::new(); for entry in raw { @@ -1974,9 +1998,69 @@ pub(super) fn parse_llm_relationships( continue; }; let kind = obj.get("kind").and_then(|v| v.as_str()).unwrap_or_default(); - if !matches!(kind, "joint" | "ordered" | "correlated") { + if !matches!(kind, "joint" | "ordered" | "correlated" | "pipeline") { + continue; + } + + // A `pipeline` carrying `stage_column` is the ROW encoding: its stages are + // values inside one column, which `members` cannot describe, so `members` + // is synthesized from the column references instead. + if kind == "pipeline" + && let Some(stage_column) = str_field(obj, "stage_column") + { + if !in_fields(&stage_column) { + continue; + } + let stages: Vec = obj + .get("stages") + .and_then(|v| v.as_array()) + .map(|arr| { + arr.iter() + .filter_map(|s| s.as_str()) + .map(str::trim) + .filter(|s| !s.is_empty()) + .map(ToString::to_string) + .collect() + }) + .unwrap_or_default(); + let mut seen_stages = std::collections::HashSet::new(); + if stages.len() < 2 + || stages.len() > MAX_DECLARED_STAGES + || !stages.iter().all(|s| seen_stages.insert(s.as_str())) + { + continue; + } + // An unusable `value_column` drops the WHOLE entry rather than falling + // back to counting rows: silently turning a declared measure funnel + // into a row-count funnel changes what the chart claims. + let value_column = match obj.get("value_column") { + Some(v) if !v.is_null() => { + let Some(vc) = v.as_str().map(str::trim).filter(|s| !s.is_empty()) else { + continue; + }; + if !in_fields(vc) || vc == stage_column { + continue; + } + Some(vc.to_string()) + }, + _ => None, + }; + + let mut members = vec![stage_column.clone()]; + members.extend(value_column.clone()); + + let mut clean = serde_json::Map::new(); + clean.insert("kind".to_string(), serde_json::json!(kind)); + clean.insert("members".to_string(), serde_json::json!(members)); + clean.insert("stage_column".to_string(), serde_json::json!(stage_column)); + clean.insert("stages".to_string(), serde_json::json!(stages)); + if let Some(vc) = value_column { + clean.insert("value_column".to_string(), serde_json::json!(vc)); + } + result.push(serde_json::Value::Object(clean)); continue; } + let members: Vec = obj .get("members") .and_then(|v| v.as_array()) @@ -1990,6 +2074,14 @@ pub(super) fn parse_llm_relationships( if members.len() < 2 || !members.iter().all(|m| in_fields(m)) { continue; } + // A pipeline naming the same column at two ranks is malformed; the other + // kinds are unordered sets, where a repeat is merely redundant. + if kind == "pipeline" { + let mut seen = std::collections::HashSet::new(); + if !members.iter().all(|m| seen.insert(m.as_str())) { + continue; + } + } let mut clean = serde_json::Map::new(); clean.insert("kind".to_string(), serde_json::json!(kind)); @@ -3812,6 +3904,146 @@ mod tests { assert!(rels[0].get("anchor").is_none()); } + #[test] + fn parse_llm_relationships_accepts_column_shaped_pipeline() { + let field_names = vec![ + "planned".to_string(), + "committed".to_string(), + "spent".to_string(), + ]; + let response = r#"{ + "relationships": [ + {"kind": "pipeline", "members": ["planned", "committed", "spent"]} + ] + }"#; + let rels = parse_llm_relationships(response, &field_names); + assert_eq!(rels.len(), 1); + assert_eq!(rels[0]["kind"], "pipeline"); + // member ORDER is the pipeline order and must survive verbatim -- reordering + // it would invert the funnel. + assert_eq!( + rels[0]["members"], + serde_json::json!(["planned", "committed", "spent"]) + ); + // a column-shaped pipeline carries none of the row-encoding keys + assert!(rels[0].get("stage_column").is_none()); + } + + #[test] + fn parse_llm_relationships_drops_a_pipeline_repeating_a_column() { + let field_names = vec!["planned".to_string(), "spent".to_string()]; + let response = r#"{ + "relationships": [ + {"kind": "pipeline", "members": ["planned", "planned"]} + ] + }"#; + assert!(parse_llm_relationships(response, &field_names).is_empty()); + } + + #[test] + fn parse_llm_relationships_accepts_row_encoded_pipeline() { + let field_names = vec!["status".to_string(), "amount".to_string()]; + let response = r#"{ + "relationships": [ + {"kind": "pipeline", "stage_column": "status", + "stages": ["Impression", "Click", "Conversion"], + "value_column": "amount"} + ] + }"#; + let rels = parse_llm_relationships(response, &field_names); + assert_eq!(rels.len(), 1); + assert_eq!(rels[0]["stage_column"], "status"); + assert_eq!(rels[0]["value_column"], "amount"); + assert_eq!( + rels[0]["stages"], + serde_json::json!(["Impression", "Click", "Conversion"]) + ); + // members are SYNTHESIZED from the column references, never taken from the LLM + assert_eq!(rels[0]["members"], serde_json::json!(["status", "amount"])); + } + + #[test] + fn parse_llm_relationships_row_pipeline_without_value_column_counts_rows() { + let field_names = vec!["status".to_string(), "amount".to_string()]; + let response = r#"{ + "relationships": [ + {"kind": "pipeline", "stage_column": "status", "stages": ["Open", "Closed"]} + ] + }"#; + let rels = parse_llm_relationships(response, &field_names); + assert_eq!(rels.len(), 1); + assert!(rels[0].get("value_column").is_none()); + assert_eq!(rels[0]["members"], serde_json::json!(["status"])); + } + + #[test] + fn parse_llm_relationships_drops_malformed_row_pipelines() { + let field_names = vec!["status".to_string(), "amount".to_string()]; + for (case, response) in [ + ( + "stage_column is not a real column", + r#"{"relationships":[{"kind":"pipeline","stage_column":"nope","stages":["a","b"]}]}"#, + ), + ( + "fewer than two stages", + r#"{"relationships":[{"kind":"pipeline","stage_column":"status","stages":["a"]}]}"#, + ), + ( + "duplicate stages", + r#"{"relationships":[{"kind":"pipeline","stage_column":"status","stages":["a","a"]}]}"#, + ), + ( + "value_column is not a real column", + r#"{"relationships":[{"kind":"pipeline","stage_column":"status","stages":["a","b"],"value_column":"nope"}]}"#, + ), + ( + "value_column duplicates stage_column", + r#"{"relationships":[{"kind":"pipeline","stage_column":"status","stages":["a","b"],"value_column":"status"}]}"#, + ), + ] { + assert!( + parse_llm_relationships(response, &field_names).is_empty(), + "should have dropped the entry: {case}" + ); + } + } + + #[test] + fn parse_llm_relationships_always_emits_members() { + // `synthesize`'s SynthRelationship::members has no serde default, and the + // dictionary is deserialized in a single pass -- an entry without `members` + // does not degrade, it HARD-ERRORS `synthesize --dictionary`. Every emitted + // relationship must therefore carry the key, including the row encoding, + // where the LLM supplies no usable member list at all. + let field_names = vec![ + "status".to_string(), + "amount".to_string(), + "lo".to_string(), + "hi".to_string(), + ]; + let response = r#"{ + "relationships": [ + {"kind": "pipeline", "stage_column": "status", "stages": ["a", "b"]}, + {"kind": "pipeline", "stage_column": "status", "stages": ["a", "b"], + "value_column": "amount"}, + {"kind": "pipeline", "members": ["lo", "hi"]}, + {"kind": "ordered", "members": ["lo", "hi"]}, + {"kind": "joint", "members": ["lo", "hi"]} + ] + }"#; + let rels = parse_llm_relationships(response, &field_names); + assert_eq!(rels.len(), 5); + for rel in &rels { + let members = rel + .get("members") + .unwrap_or_else(|| panic!("every relationship must carry `members`: {rel}")); + assert!( + members.as_array().is_some_and(|m| !m.is_empty()), + "`members` must be a non-empty array: {rel}" + ); + } + } + #[test] fn generate_stamps_date_datetime_from_stats_type() { let stats = vec![ diff --git a/src/cmd/describegpt/formatters.rs b/src/cmd/describegpt/formatters.rs index b759fdf9ed..f52d683963 100644 --- a/src/cmd/describegpt/formatters.rs +++ b/src/cmd/describegpt/formatters.rs @@ -140,6 +140,13 @@ pub(super) fn format_dictionary_json( /// `grain` is the dataset-level "one row = one X" statement (when inferred); /// emitted as `x-qsv.grain` only when `infer_content_type` is set. /// +/// `relationships` are the LLM-inferred inter-column groups (see +/// `dictionary::parse_llm_relationships`), emitted as `x-qsv.relationships` under +/// the same flag. `viz smart --dictionary` reads `kind: "pipeline"` entries from +/// here to build its funnel panel (issue #4222), so dropping them — as this +/// emitter previously did, while `format_dictionary_json` kept them — severed the +/// only path by which a declared pipeline could reach viz. +/// /// The schema's top-level `x-qsv.generated_by` is left as the literal /// `{GENERATED_BY_SIGNATURE}` placeholder; the caller substitutes the resolved /// attribution after building, mirroring the pattern used by @@ -155,6 +162,7 @@ pub(super) fn format_dictionary_jsonschema( allow_extra_cols: bool, strict_dates: bool, grain: Option<&str>, + relationships: &[Value], ) -> Value { let mut properties = serde_json::Map::with_capacity(entries.len()); // Every column is listed in `required`, matching `qsv schema`'s behavior. @@ -201,6 +209,24 @@ pub(super) fn format_dictionary_jsonschema( x_qsv.insert("grain".to_string(), Value::String(g.to_string())); } + // LLM-inferred inter-column relationships, gated on the same --infer-content-type path (the + // prompt only asks for them under that flag). They ride in the top-level x-qsv rather than at + // the schema root for the same reason `grain` does: it keeps the document a valid draft + // 2020-12 schema, and a dictionary built without the flag stays byte-identical. + // + // Without this, `--format JSON` carried relationships but JSONSchema silently dropped them -- + // and JSONSchema is the format `viz smart --dictionary` consumes, so `kind: "pipeline"` (the + // funnel declaration, issue #4222) never reached viz at all. + if infer_content_type + && !relationships.is_empty() + && let Some(x_qsv) = doc.get_mut("x-qsv").and_then(Value::as_object_mut) + { + x_qsv.insert( + "relationships".to_string(), + Value::Array(relationships.to_vec()), + ); + } + doc } @@ -1142,6 +1168,7 @@ mod tests { false, false, None, + &[], ); let x = &schema["properties"]["depth"]["x-qsv"]; assert_eq!(x["null_values"], json!(["NULL"])); @@ -1167,12 +1194,89 @@ mod tests { false, false, None, + &[], ); let x = &schema["properties"]["col"]["x-qsv"]; assert!(x.get("null_values").is_none()); assert!(x.get("null_candidates").is_none()); } + #[test] + fn jsonschema_carries_relationships_in_x_qsv() { + // The gap this closes: `--format JSON` emitted relationships all along, but the + // JSONSchema emitter dropped them -- and JSONSchema is what `viz smart + // --dictionary` consumes, so a declared `kind: "pipeline"` could never reach + // viz's funnel builder (issue #4222). + let e = sample_entry("col", "email"); + let rels = vec![json!({ + "kind": "pipeline", + "members": ["planned", "committed", "spent"], + })]; + let schema = format_dictionary_jsonschema( + std::slice::from_ref(&e), + "in.csv", + 10, + 5, + 25, + true, + false, + false, + None, + &rels, + ); + assert_eq!( + schema["x-qsv"]["relationships"], + json!([{"kind": "pipeline", "members": ["planned", "committed", "spent"]}]), + "relationships must ride in the top-level x-qsv, where viz reads them" + ); + // and the doc must still be a valid draft 2020-12 schema -- the whole reason + // x-qsv exists rather than a schema-root key. + assert!( + jsonschema::meta::validate(&schema).is_ok(), + "emitted schema must survive the same meta-validation describegpt applies before \ + writing" + ); + } + + #[test] + fn jsonschema_omits_relationships_when_absent_or_flag_off() { + // Byte-identical output for dictionaries that have no relationships, and for + // runs without --infer-content-type (the flag the prompt gates them on). + let e = sample_entry("col", "email"); + let rels = vec![json!({"kind": "pipeline", "members": ["a", "b"]})]; + + let none_inferred = format_dictionary_jsonschema( + std::slice::from_ref(&e), + "in.csv", + 10, + 5, + 25, + true, + false, + false, + None, + &[], + ); + assert!(none_inferred["x-qsv"].get("relationships").is_none()); + + let flag_off = format_dictionary_jsonschema( + std::slice::from_ref(&e), + "in.csv", + 10, + 5, + 25, + false, + false, + false, + None, + &rels, + ); + assert!( + flag_off["x-qsv"].get("relationships").is_none(), + "without --infer-content-type the schema must stay as it was" + ); + } + #[test] fn json_omits_content_type_when_flag_off() { let entries = vec![sample_entry("col", "email")]; @@ -1302,6 +1406,7 @@ mod tests { false, false, None, + &[], ); let xq = &schema["properties"]["created"]["x-qsv"]; assert_eq!(xq["min"], "01/24/2013"); @@ -1335,6 +1440,7 @@ mod tests { false, false, Some("one row = one 311 service request"), + &[], ); let xq = &schema["properties"]["census_tract"]["x-qsv"]; assert_eq!(xq["role"], "dimension"); @@ -1355,6 +1461,7 @@ mod tests { false, false, Some("one row = one 311 service request"), + &[], ); let xq_off = &off["properties"]["census_tract"]["x-qsv"]; assert!(xq_off.get("role").is_none(), "role leaked when flag off"); @@ -1379,6 +1486,7 @@ mod tests { false, false, None, + &[], ); let xq2 = &schema2["properties"]["plain"]["x-qsv"]; assert!(xq2.get("role").is_none() && xq2.get("concept").is_none()); @@ -1406,6 +1514,7 @@ mod tests { false, false, None, + &[], ); let gr = &schema["properties"]["rating"]["x-qsv"]["gauge_range"]; assert_eq!(gr, &json!([0.0, 5.0])); @@ -1423,6 +1532,7 @@ mod tests { false, false, None, + &[], ); assert!( off["properties"]["rating"]["x-qsv"] @@ -1445,6 +1555,7 @@ mod tests { false, false, None, + &[], ); assert!( schema3["properties"]["plain_measure"]["x-qsv"] @@ -1512,6 +1623,7 @@ mod tests { false, false, None, + &[], ); let examples = schema["properties"]["created"]["examples"] .as_array() @@ -1558,6 +1670,7 @@ mod tests { false, false, None, + &[], ); let examples = schema["properties"]["X Coordinate"]["examples"] .as_array() @@ -1589,6 +1702,7 @@ mod tests { false, false, None, + &[], ); let examples = schema["properties"]["name"]["examples"] .as_array() @@ -1620,6 +1734,7 @@ mod tests { false, false, None, + &[], ); let prop = &schema["properties"]["license"]; assert_eq!(prop["examples"][0], "Dog Lifetime Spayed Female"); @@ -1645,6 +1760,7 @@ mod tests { false, false, None, + &[], ); assert_eq!( schema["properties"]["license"]["examples"][0], From e5fc268eed2f4960ada804c16885ad5b3d21acd7 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 09:46:30 +0800 Subject: [PATCH 10/15] viz smart: drive the pipeline funnel from the dictionary (#4222) Replaces the hardcoded stage vocabulary and the containment GATE with an explicit dictionary declaration (`x-qsv.relationships`, `kind: "pipeline"`). Issue #4222 framed the question correctly for its sibling asks: which columns are stages, and in which direction, is SEMANTICS, not a statistic -- "so it deserves explicit treatment rather than a guessed proxy". Asks 1 and 2 were resolved that way (no gate, unconditional caveat, no false negatives). Ask 3 shipped with a guessed proxy instead: a word list to guess with, and row-wise containment as a gate to catch its own bad guesses. This brings ask 3 in line. Deleted: FUNNEL_FAMILIES, FunnelFamily, FunnelStage, FunnelHit, stage_match, stage_containment, stage_pair_passes, FUNNEL_CONTAINMENT_MIN. With no dictionary, `viz smart` no longer draws a funnel at all. Containment is still MEASURED but never refuses. A declared pipeline whose stages do not nest now draws with the violation share named in the subtitle, which is more informative than silence. The motivating NYC CPDB dataset -- three aggregates on different accounting bases -- renders for the first time, subtitle reading "Spent exceeds Committed in 46% of rows", matching the share recorded on the issue. FUNNEL_COMPLEMENT_MARKERS survives as a WARNING rather than a veto: a complement column nests PERFECTLY, so it reports 0% violations while rendering a funnel that means the opposite of the truth -- the one bad declaration disclosure cannot catch. The old list's COLLISION half (review, contractor, wholesale, lead_time, replaced) is deleted with the vocabulary it defended; those words only mattered against greedy substring matching, so warning on a declared column would be a false alarm. Row-encoded pipelines are now supported -- stages as VALUES of one category column, the shape the smart path previously declined to guess at. Safe because it is declared. PanelKind::Funnel gains `shape`, because `reached`/`n_complete` are numerically identical between the encodings while meaning different things: reusing the column wording for a row funnel would assert a meaningless 100% complete-case rate. The funnel takes its OWN data pass rather than piggybacking the correlation read. That read excludes near-unique columns, so a declared money column could silently vanish, and force-including one would perturb the Pearson matrix and shrink the listwise join for every other correlation panel. It also fixes a live bug: the complete-case denominator was diluted by columns unrelated to the funnel. Tests: the four `no_funnel` negatives would now pass for the wrong reason (no dictionary, no funnel), so they are replaced by one honest baseline -- viz_smart_no_funnel_without_a_dictionary, which asserts the nested table that DOES draw with a dictionary draws nothing without one. 255 viz unit + 352 test_viz integration, clippy clean. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/cmd/viz.rs | 1058 ++++++++++++++++++++++++--------------------- tests/test_viz.rs | 451 ++++++++++++------- 2 files changed, 862 insertions(+), 647 deletions(-) diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index 5e6177c099..b3d238d7eb 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -12476,24 +12476,27 @@ enum PanelKind { gini: f64, label: String, }, - /// Ordered pipeline funnel over measures that form process STAGES — planned → committed → - /// spent, impressions → clicks → conversions (issue #4222). Built when column names resolve - /// to distinct ranks of one `FUNNEL_FAMILIES` vocabulary AND the columns are row-wise nested - /// in that order; see `build_funnel_panel` for why both gates are required. + /// Ordered pipeline funnel over process STAGES — planned → committed → spent, impressions → + /// clicks → conversions (issue #4222). Built ONLY from a dictionary declaration + /// (`x-qsv.relationships`, `kind: "pipeline"`); see `PipelineSpec` for why the direction + /// cannot be inferred from names or statistics, and `build_funnel_panel` for the encoding. /// - /// All five vectors are parallel and UPSTREAM-FIRST; the render arm reverses them, because - /// plotly places category index 0 at the axis bottom. `totals` is the summed amount per stage - /// and drives the bar length; `reached` is the count of complete-case rows with a strictly - /// positive value at that stage, carried because at high Gini "62% of dollars spent" and "45% - /// of projects spent anything" are both true and neither may be shown alone. `n_complete` is - /// the shared listwise-complete denominator, disclosed unconditionally in the subtitle since - /// these sums do NOT match `stats.sum`. + /// All four vectors are parallel and UPSTREAM-FIRST; the render arm reverses them, because + /// plotly places category index 0 at the axis bottom. `totals` drives the bar length. + /// + /// `reached` and `n_complete` mean DIFFERENT things per `shape`, which is exactly why `shape` + /// is carried rather than inferred: for `Columns` they are complete-case counts over the + /// listwise join (so the sums do NOT match `stats.sum`, disclosed unconditionally in the + /// subtitle), while for the row encodings `reached` IS the per-stage row count and sums to + /// `n_complete`. Reusing the column wording there would claim a 100% complete-case rate that + /// means nothing. Funnel { stages: Vec, labels: Vec, totals: Vec, reached: Vec, n_complete: usize, + shape: FunnelShape, }, /// 2D density contour of the most strongly correlated numeric pair — used INSTEAD of /// `ScatterPair` for large datasets (>= `SMART_CONTOUR_MIN_POINTS`), where a scatter overplots. @@ -12926,12 +12929,53 @@ struct DictRow { target: Option, } +/// How a built funnel's numbers should be read — the render arm's hover text depends on it. +/// +/// Kept as data on the panel rather than re-derived, because `reached`/`n_complete` are +/// numerically indistinguishable between the shapes while meaning different things. +#[derive(Clone, Debug, PartialEq, Eq)] +enum FunnelShape { + /// Stages are separate measure COLUMNS; counts are complete-case rows with a positive value. + Columns, + /// Stages are row values; `totals` are sums of the named measure column. + RowsMeasure { value_label: String }, + /// Stages are row values; `totals` ARE the row counts, so they equal `reached`. + RowsCount, +} + +/// A pipeline declared by the dictionary (`x-qsv.relationships`, `kind: "pipeline"`), in either +/// of the two encodings describegpt emits — see `describegpt::dictionary::parse_llm_relationships`. +/// +/// This is the ONLY way `viz smart` learns that a set of measures forms a process. Issue #4222 +/// framed the question correctly: which columns are stages, and in what direction, is SEMANTICS, +/// not a statistic. No column-name vocabulary can settle it (`township` reads as a shipping +/// stage) and no statistic can either (`total_pop`/`male_pop`/`female_pop` nests perfectly yet is +/// a partition, not a pipeline). So the dictionary declares it, an LLM proposes it, and a human +/// can refine it. +#[derive(Clone, Debug, PartialEq, Eq)] +enum PipelineSpec { + /// Stages are separate measure COLUMNS, listed upstream-first. Note this is the OPPOSITE + /// direction from a `kind: "ordered"` group, which ascends. + Columns { members: Vec }, + /// Stages are VALUES of one category column. `value_column` names the measure to sum per + /// stage; when absent the funnel counts rows. + Rows { + stage_column: String, + stages: Vec, + value_column: Option, + }, +} + /// A parsed describegpt Data Dictionary: per-column semantic rows keyed by field name, plus the /// dataset `grain` ("one row = one X"). Drives `viz smart` semantic routing. #[derive(Clone, Debug, Default)] struct DictData { rows: HashMap, grain: Option, + /// Pipelines declared via `x-qsv.relationships`. Parsed leniently here (shape only); the + /// funnel builder does the strict validation against real columns and types, mirroring how + /// `gauge_range` is shape-parsed here and range-checked at the KPI tile. + pipelines: Vec, /// Dataset-level prose description (jsonschema top-level `description`, produced by /// describegpt --description). Legacy json dictionaries don't carry one. dataset_description: Option, @@ -13455,6 +13499,69 @@ fn classify_with_semantics( } } +/// Lenient shape-parse of `x-qsv.relationships` into the pipelines `viz smart` can chart. +/// +/// Structural only, by design: no column-existence, type or eligibility check happens here. That +/// mirrors `xq_range`'s split — shape at parse time, validity at the consumption site — and it +/// matters because dictionaries are hand-editable. A malformed or stale declaration must degrade +/// to "no funnel", never to an error; this is a dashboard, not a validator. +/// +/// JSONSchema-only. The legacy flat `{"fields":[…]}` dictionary has nowhere to put a row-encoded +/// declaration, so supporting it there would be half a feature. +fn xq_pipelines(v: &serde_json::Value) -> Vec { + let Some(rels) = v + .get("x-qsv") + .and_then(|x| x.get("relationships")) + .and_then(serde_json::Value::as_array) + else { + return Vec::new(); + }; + let str_at = |o: &serde_json::Value, k: &str| { + o.get(k) + .and_then(serde_json::Value::as_str) + .map(str::trim) + .filter(|s| !s.is_empty()) + .map(ToString::to_string) + }; + let str_array = |o: &serde_json::Value, k: &str| -> Vec { + o.get(k) + .and_then(serde_json::Value::as_array) + .map(|a| { + a.iter() + .filter_map(serde_json::Value::as_str) + .map(str::trim) + .filter(|s| !s.is_empty()) + .map(ToString::to_string) + .collect() + }) + .unwrap_or_default() + }; + + let mut out = Vec::new(); + for rel in rels { + if rel.get("kind").and_then(serde_json::Value::as_str) != Some("pipeline") { + continue; + } + // `stage_column` discriminates the two encodings, exactly as on the emitting side. + if let Some(stage_column) = str_at(rel, "stage_column") { + let stages = str_array(rel, "stages"); + if stages.len() >= 2 { + out.push(PipelineSpec::Rows { + stage_column, + stages, + value_column: str_at(rel, "value_column"), + }); + } + } else { + let members = str_array(rel, "members"); + if members.len() >= 2 { + out.push(PipelineSpec::Columns { members }); + } + } + } + out +} + /// Parse a describegpt Data Dictionary into per-column semantic rows + the dataset grain. /// /// Accepts BOTH shapes so `--dictionary ` works with either: @@ -13542,6 +13649,7 @@ fn parse_dictionary_semantics(json_text: &str) -> Option { return Some(DictData { rows, grain, + pipelines: xq_pipelines(&v), dataset_description, generated_by, }); @@ -15485,118 +15593,20 @@ fn lorenz_caveat(s: &crate::cmd::stats::StatsData) -> String { ) } -/// One stage of an ordered pipeline vocabulary: its canonical display name and the substrings -/// that identify a column as belonging to it. -struct FunnelStage { - name: &'static str, - words: &'static [&'static str], -} - -/// An ordered family of pipeline stages. Order within `stages` IS the pipeline order — it is the -/// vocabulary, not the data, that establishes direction (see `build_funnel_panel`). -struct FunnelFamily { - name: &'static str, - stages: &'static [FunnelStage], -} - -/// The pipeline vocabularies `viz smart` recognizes (issue #4222). -/// -/// Matched as SUBSTRINGS, deliberately — `field_name_tokens` cannot help here. The motivating -/// column is `totalplannedcommit`: one all-lowercase alphanumeric run, so tokenization yields the -/// single token "totalplannedcommit" and a token-equality test against "planned" misses entirely. +/// Declared stage names that denote a COMPLEMENT or residual rather than a stage the process +/// passed through. /// -/// Substring matching is what burned `is_intensive_measure` (where "ratio" matched the whole -/// `-ration` word family), so the conjunction below matters: a stage word alone never produces a -/// panel, because a second column must independently match a DIFFERENT rank of the SAME family -/// and the two must be row-wise nested in that order (`FUNNEL_CONTAINMENT_MIN`). +/// This is the one hazard that disclosing containment cannot replace, which is why the list +/// outlived the name-matching vocabulary it was born in. `unspent_balance` nests PERFECTLY inside +/// `planned` — it reports 0% violations — while rendering a funnel that means the opposite of the +/// truth. Every other bad declaration shows up as a violation share the subtitle can name; this +/// one does not. /// -/// That is a real constraint but NOT a sufficient one, and the distinction is worth stating -/// plainly because assuming otherwise already shipped one false positive: a table holding a -/// genuine `spent` column supplies the second rank for free, so any greedy word paired with it -/// yields a funnel. `X Coordinate (State Plane)` matched a bare "plan" and produced -/// "Pipeline funnel: X Coordinate (State Plane) -> spent_total". -/// -/// So the vocabulary carries the real burden: prefer words that are not substrings of common -/// unrelated nouns, and name the ones that are in `FUNNEL_NON_STAGE_MARKERS`. -const FUNNEL_FAMILIES: &[FunnelFamily] = &[ - FunnelFamily { - name: "budget", - stages: &[ - FunnelStage { - name: "Planned", - // NB: bare "plan" is deliberately absent -- it matches "State Plane", - // "plant", "floorplan" and "airplane". "planned" covers the glued - // `totalplannedcommit` case that motivated substring matching, and the - // remaining words cover the stage without that collision surface. - words: &[ - "planned", - "budget", - "appropriat", - "authoriz", - "estimated", - "proposed", - ], - }, - FunnelStage { - name: "Committed", - words: &["commit", "encumber", "obligat", "contract", "awarded"], - }, - FunnelStage { - name: "Spent", - words: &[ - "spent", "spend", "expend", "disburs", "outlay", "paid", "actual", - ], - }, - ], - }, - FunnelFamily { - name: "marketing", - stages: &[ - FunnelStage { - name: "Impressions", - words: &["impression", "view", "reach"], - }, - FunnelStage { - name: "Clicks", - words: &["click"], - }, - FunnelStage { - name: "Leads", - words: &["lead", "signup", "registrat"], - }, - FunnelStage { - name: "Conversions", - words: &["conversion", "convert", "purchase", "sale"], - }, - ], - }, - FunnelFamily { - name: "fulfillment", - stages: &[ - FunnelStage { - name: "Ordered", - words: &["ordered", "orders", "placed"], - }, - FunnelStage { - name: "Shipped", - words: &["shipped", "shipment", "dispatch"], - }, - FunnelStage { - name: "Delivered", - words: &["delivered", "delivery", "received"], - }, - ], - }, -]; - -/// Names that CONTAIN a stage word but denote its complement or a derived difference, never the -/// stage itself. These are the one false-positive class the vocabulary-plus-containment -/// conjunction cannot catch on its own: `unspent_balance` contains "spent" AND is near-perfectly -/// nested inside `planned`, so both gates pass and it would render as the Spent stage — inverting -/// the panel's meaning. Small and closed by construction: every entry is either an `un-` negation -/// or an explicit difference/residual word. -const FUNNEL_NON_STAGE_MARKERS: &[&str] = &[ - // complements and derived differences +/// It WARNS, it does not veto. An explicit declaration outranks a name heuristic, and the +/// collision half of the old list (`review`, `contractor`, `wholesale`, `lead_time`, …) was +/// deleted with the vocabulary: those existed solely as antidotes to greedy substring matching, +/// so warning on a declared `contractor_amt` would be a pure false alarm. +const FUNNEL_COMPLEMENT_MARKERS: &[&str] = &[ "unspent", "uncommitted", "unplanned", @@ -15611,90 +15621,24 @@ const FUNNEL_NON_STAGE_MARKERS: &[&str] = &[ "difference", "delta", "balance", - // COLLISIONS: ordinary words that merely CONTAIN a stage word. A review count is not an - // impressions stage and a contractor count is not a commitment, but "view" and "contract" - // match them, and a table that also holds a genuine spend or purchase column supplies the - // second rank the conjunction asks for -- so these need naming outright. - "review", - "overview", - "interview", - "contractor", - "wholesale", - "resale", - "lead time", - "lead_time", - "leadtime", - "replaced", - "displaced", ]; -/// Minimum share of complete-case rows that must satisfy `stage[k+1] <= stage[k]` for a pair of -/// columns to be accepted as consecutive pipeline stages. Deliberately tolerant: capital projects -/// really do have change orders, and a strict 1.0 would reject the flagship dataset outright. -const FUNNEL_CONTAINMENT_MIN: f64 = 0.90; - /// Containment-violation share above which the subtitle names it. Below this it is float noise or /// a handful of corrections, not a finding. const FUNNEL_VIOLATION_NOTE_MIN: f64 = 0.01; -/// Minimum share of the table's rows that must survive the listwise-complete join for the funnel's -/// totals to be worth showing at all. +/// Minimum share of the table's rows that must survive the listwise-complete join for a +/// COLUMN-shaped funnel's totals to be worth showing at all. Deliberately not applied to the row +/// encoding — see `build_row_funnel_panel`. const FUNNEL_MIN_COMPLETE_FRAC: f64 = 0.50; /// Cap on funnel stages, so a wide finance table can't produce an unreadable twelve-band funnel. const FUNNEL_MAX_STAGES: usize = 6; -/// A column's resolved pipeline position: which family it belongs to, its stage rank within that -/// family, and how many DISTINCT ranks of that family its name matched (the ambiguity measure used -/// to break rank collisions — an unambiguous `planned_amt` should beat a 2-match name). -#[derive(Clone, Copy, PartialEq, Eq, Debug)] -struct FunnelHit { - family: usize, - rank: usize, - ambiguity: usize, -} - -/// Resolve a column name to a pipeline stage, or `None`. -/// -/// `totalplannedcommit` contains BOTH "planned" (position 5) and "commit" (position 12); if -/// "commit" won it would collide with a sibling `commit_total` and the funnel would be ambiguous -/// or ordered backwards — on the exact dataset issue #4222 names. **Lowest character position -/// wins**, because English puts the stage modifier before the noun ("planned commitment" is a -/// plan; "spent_of_planned" is a spend). Ties on position go to the longer (more specific) word. -fn stage_match(label: &str, field: &str) -> Option { +/// Whether a declared stage name reads as a complement/residual (see `FUNNEL_COMPLEMENT_MARKERS`). +fn is_complement_name(label: &str, field: &str) -> bool { let hay = format!("{label} {field}").to_ascii_lowercase(); - if FUNNEL_NON_STAGE_MARKERS.iter().any(|m| hay.contains(m)) { - return None; - } - - let mut best: Option<(usize, usize, usize, usize)> = None; // (pos, !len, family, rank) - for (fi, fam) in FUNNEL_FAMILIES.iter().enumerate() { - for (ri, stage) in fam.stages.iter().enumerate() { - for word in stage.words { - if let Some(pos) = hay.find(word) { - // earliest position wins; on a tie the longer word is the more specific match - let key = (pos, usize::MAX - word.len(), fi, ri); - if best.is_none_or(|b| key < b) { - best = Some(key); - } - } - } - } - } - - let (_, _, family, rank) = best?; - // ambiguity is measured WITHIN the winning family: how many of its distinct ranks this one - // name could be read as. - let ambiguity = FUNNEL_FAMILIES[family] - .stages - .iter() - .filter(|stage| stage.words.iter().any(|w| hay.contains(w))) - .count(); - Some(FunnelHit { - family, - rank, - ambiguity, - }) + FUNNEL_COMPLEMENT_MARKERS.iter().any(|m| hay.contains(m)) } /// Share of row-aligned pairs satisfying `downstream <= upstream`. The tolerance is relative, so a @@ -15716,56 +15660,54 @@ fn containment_fraction(upstream: &[f64], downstream: &[f64]) -> f64 { frac } -/// Containment for one consecutive stage pair, where either side may be a RESCUED ALL-ZERO stage -/// (carried as `None` because such a column never reaches the row-aligned read — see -/// `build_funnel_panel` step 4). +/// Sum a value column (or count rows) per declared stage value, in one pass. /// -/// The tempting shortcut is to skip any pair involving a zero stage, but that silently disables -/// the gate: with `planned` → all-zero `commit` → non-nested `spent`, BOTH pairs get skipped and -/// the funnel is drawn even though the real `planned`/`spent` relationship violates containment. -/// So a zero stage is treated as the vector of zeros it actually is: +/// Returns `(totals, counts, matched)` parallel to `wanted`, plus the number of rows that landed +/// in ANY declared stage — the row encoding's denominator. /// -/// - zero DOWNSTREAM sits inside any non-negative upstream — trivially contained; -/// - zero UPSTREAM contains only zeros, so a positive downstream value means the process recorded a -/// later stage while its predecessor recorded nothing. This function reports the honest share -/// (used by the subtitle); `stage_pair_passes` is what refuses to let ANY of it through. -fn stage_containment(columns: &[Vec], up: Option, down: Option) -> f64 { - match (up, down) { - (Some(u), Some(d)) => containment_fraction(&columns[u], &columns[d]), - (None, Some(d)) => { - let n = columns[d].len(); - if n == 0 { - return 0.0; - } - #[allow(clippy::cast_precision_loss)] - let frac = columns[d].iter().filter(|v| **v <= 0.0).count() as f64 / n as f64; - frac - }, - (Some(_) | None, None) => 1.0, - } -} +/// Stage matching is trimmed and case-insensitive, with the first declared stage winning a +/// collision. The LLM transcribes these values from the frequency distribution, so case drift is +/// a realistic failure that would otherwise silently zero a band. A declared stage with no +/// matching rows is legitimate and stays as a zero-height band; dropping it would imply the +/// process ends at the last stage that happens to have data. +fn read_stage_totals( + args: &Args, + stage_idx: usize, + value_idx: Option, + wanted: &[String], +) -> CliResult<(Vec, Vec, usize)> { + let lookup: HashMap = wanted + .iter() + .enumerate() + .rev() // reverse so the FIRST declared stage wins a case-insensitive collision + .map(|(k, s)| (s.trim().to_ascii_lowercase(), k)) + .collect(); -/// Whether a consecutive stage pair may stand. -/// -/// Ordinary pairs are held to `FUNNEL_CONTAINMENT_MIN`, whose tolerance exists for a specific -/// real-world failure mode: genuine change orders on a POPULATED upstream stage, where a handful -/// of rows legitimately overrun their predecessor. -/// -/// A rescued ALL-ZERO upstream is a different kind of claim and must not borrow that tolerance. -/// The column recorded nothing anywhere, so "90% contained" would mean up to a tenth of the rows -/// show a later stage running while its predecessor never happened — not an overrun but a -/// contradiction of the nesting the funnel asserts. One positive downstream value is enough to -/// reject the pipeline. -/// -/// The gate is kept separate from `stage_containment` on purpose: the subtitle reports the honest -/// violation share from that function, so a pair rejected here is still described accurately -/// rather than as a flat 0%. -fn stage_pair_passes(columns: &[Vec], up: Option, down: Option) -> bool { - let frac = stage_containment(columns, up, down); - if up.is_none() && down.is_some() { - return frac >= 1.0; + let (mut rdr, _headers, _nh) = reader_and_headers(args)?; + let mut totals = vec![0.0_f64; wanted.len()]; + let mut counts = vec![0_usize; wanted.len()]; + let mut matched = 0_usize; + let mut record = csv::ByteRecord::new(); + while rdr.read_byte_record(&mut record)? { + let raw = cell_to_string(record.get(stage_idx)); + let key = raw.trim().to_ascii_lowercase(); + let Some(&k) = lookup.get(&key) else { + continue; + }; + let inc = match value_idx { + Some(i) => match parse_f64(record.get(i)) { + Some(v) => v, + // a row whose measure doesn't parse contributes to neither total nor count, + // so the disclosed denominator stays honest + None => continue, + }, + None => 1.0, + }; + totals[k] += inc; + counts[k] += 1; + matched += 1; } - frac >= FUNNEL_CONTAINMENT_MIN + Ok((totals, counts, matched)) } /// The caveat line beneath a funnel panel's title (issue #4222). @@ -20968,6 +20910,15 @@ impl<'a> SmartCtx<'a> { /// panels (T2 geo, T3 bubble), and the correlation heatmap with its scatter/contour/3D /// drill-downs. fn add_relationship_panels(&mut self) -> CliResult<()> { + // Pipeline funnel (issue #4222, ask 3). Built FIRST and STASHED rather than inserted, + // because the correlation heatmap's own `insert(0, ..)` further down would otherwise land + // on top of it. It takes its own data pass: piggybacking the correlation read looks free + // but silently drops any declared stage the correlation pre-filter excluded (a near-unique + // money column), and force-including one would perturb the Pearson matrix and shrink the + // listwise join for every other correlation-derived panel. + let total_rows = self.row_count() as usize; + self.funnel_panel = self.build_funnel_panel(total_rows)?; + // `--bivariate`: NMI-driven association heatmap + ranked top relationships, built from // moarstats' bivariate sidecar (already produced by the `--smarter` block above, since // `--bivariate` forces `--smarter`). Inserted here — BEFORE the correlation-heatmap block @@ -21103,14 +21054,6 @@ impl<'a> SmartCtx<'a> { read_numeric_columns(&mut rdr, &headers, nh, &numeric_indices, false)?; // need 2+ numeric columns AND 2+ complete rows for a meaningful correlation matrix if labels.len() >= 2 && columns.first().is_some_and(|c| c.len() >= 2) { - // Pipeline funnel (issue #4222, ask 3): built HERE, while the row-aligned - // columns the correlation matrix needs are still live, so detection costs no - // extra data pass. STASHED rather than inserted, because the correlation - // heatmap's own `insert(0, ..)` further down would otherwise land on top of it. - let total_rows = self.row_count() as usize; - let funnel = self.build_funnel_panel(&labels, &columns, &kept_indices, total_rows); - self.funnel_panel = funnel; - // Pearson is always computed: the nonlinearity note below is DEFINED as a // Pearson-vs-Spearman divergence, so it needs an r even when the panel itself // reports rho. On a mostly heavy-tailed table the displayed matrix (and every @@ -21551,178 +21494,138 @@ impl<'a> SmartCtx<'a> { Ok(()) } - /// Build the pipeline-funnel panel from the row-aligned columns the correlation pass already - /// read (issue #4222, ask 3), or `None` when this table is not a pipeline. + /// Build the pipeline-funnel panel from a dictionary declaration (issue #4222, ask 3), or + /// `None` when none was declared or none validates. /// - /// Two gates, both required. The VOCABULARY (`FUNNEL_FAMILIES`) supplies the ORDER — direction - /// is semantics, and no statistic can recover it — while row-wise CONTAINMENT verifies that - /// the order the names claim is the order the data actually has. Neither alone is safe: - /// names alone would read `township` as a shipping stage, and containment alone cannot tell - /// a pipeline from a partition (`total_pop` / `male_pop` / `female_pop` nests perfectly and - /// would render as leakage, the worst failure mode for the admin data qsv is usually - /// pointed at). + /// **A funnel is drawn only when the dictionary declares one.** Which columns are stages, and + /// in which direction, is SEMANTICS — no column-name vocabulary settles it (`township` reads + /// as a shipping stage) and no statistic does either (`total_pop`/`male_pop`/`female_pop` + /// nests perfectly yet is a partition). The predecessor of this code guessed with a hardcoded + /// word list and then used row-wise containment as a gate to catch its own bad guesses. Issue + /// #4222 rejected exactly that shape of solution for its sibling asks — "it is semantics, not + /// a statistic, so it deserves explicit treatment rather than a guessed proxy" — and this + /// follows suit. /// - /// `total_rows` is the table's row count, used only to disclose how much of it survived the - /// listwise-complete join. - fn build_funnel_panel( - &self, - labels: &[String], - columns: &[Vec], - kept_indices: &[usize], - total_rows: usize, - ) -> Option { - if columns.is_empty() || labels.len() != kept_indices.len() { - return None; - } - - // 1. resolve eligible columns to stage hits. Filters mirror `is_inequality_candidate`: a - // dictionary-declared Mean/Min/Max is intensive (a funnel of averages is nonsense), and - // rate/ratio/index and id/code names are never pipeline amounts. - // ONE eligibility test, shared by the main pass and the all-zero rescue in step 4. - // Keeping it in a single place is load-bearing rather than tidy: while the rescue carried - // its own looser copy, an all-zero `spent_pct` or `orders_id` could enter as a stage that - // the main pass would have rejected outright. - let eligible_stage = |src: usize| -> bool { - let (Some(sem), Some(s)) = (self.col_sems.get(src), self.stats.get(src)) else { - return false; - }; - !self.is_map_col(src) - && matches!(sem.route, Route::Defer | Route::Measure) - && matches!(sem.agg, Some(Agg::Sum) | None) - && !is_intensive_measure(&sem.label, &s.field) - && !is_identifier_name(&sem.label, &s.field) + /// Containment is therefore still MEASURED but never REFUSES: a declared pipeline whose + /// stages do not nest is drawn with the violation share named in the subtitle. That is more + /// informative than silence, and it is why the NYC CPDB dataset — three aggregates on + /// different accounting bases — now renders where it previously was declined. + /// + /// `total_rows` is the table's row count, used only to disclose how much of it the funnel + /// actually covers. + fn build_funnel_panel(&mut self, total_rows: usize) -> CliResult> { + let specs = match self.dict_data.as_ref() { + Some(d) if !d.pipelines.is_empty() => d.pipelines.clone(), + _ => return Ok(None), }; - - let mut hits: Vec<(usize, FunnelHit)> = Vec::new(); - for (pos, &src) in kept_indices.iter().enumerate() { - let (Some(sem), Some(s)) = (self.col_sems.get(src), self.stats.get(src)) else { - continue; + // First declaration that validates wins; a dashboard with two funnels is out of scope. + for spec in &specs { + let built = match spec { + PipelineSpec::Columns { members } => { + self.build_column_funnel(members, total_rows)? + }, + PipelineSpec::Rows { + stage_column, + stages, + value_column, + } => self.build_row_funnel( + stage_column, + stages, + value_column.as_deref(), + total_rows, + )?, }; - if !eligible_stage(src) { - continue; - } - if let Some(hit) = stage_match(&sem.label, &s.field) { - hits.push((pos, hit)); + if built.is_some() { + return Ok(built); } } - if hits.len() < 2 { - // most tables are not pipelines; staying silent here keeps stderr useful - return None; - } + Ok(None) + } - // 2. pick the family with the most distinct ranks represented (ties -> first family) - let family = { - let mut best: Option<(usize, usize)> = None; - for fi in 0..FUNNEL_FAMILIES.len() { - let ranks: std::collections::HashSet = hits - .iter() - .filter(|(_, h)| h.family == fi) - .map(|(_, h)| h.rank) - .collect(); - if ranks.len() >= 2 && best.is_none_or(|(n, _)| ranks.len() > n) { - best = Some((ranks.len(), fi)); - } - } - best?.1 - }; - let fam = &FUNNEL_FAMILIES[family]; - - // 3. one column per rank. A collision goes to the less ambiguous name; a true tie is - // unresolvable, and guessing which of two columns is "the" Spent stage would silently - // invert the panel, so bail loudly instead. - let mut per_rank: std::collections::BTreeMap = - std::collections::BTreeMap::new(); - for &(pos, hit) in &hits { - if hit.family != family { - continue; - } - match per_rank.get(&hit.rank).copied() { - Some((_, amb)) if amb < hit.ambiguity => {}, - Some((other, amb)) if amb == hit.ambiguity => { - viz_note(&format!( - "viz smart: pipeline funnel skipped \u{2014} {} and {} both resolve to \ - the '{}' stage of the {} pipeline", - labels[other], labels[pos], fam.stages[hit.rank].name, fam.name - )); - return None; - }, - _ => { - per_rank.insert(hit.rank, (pos, hit.ambiguity)); - }, - } - } - if per_rank.len() < 2 { - return None; - } + /// Resolve a declared column name to its stats index. + fn stage_index(&self, name: &str) -> Option { + self.stats.iter().position(|s| s.field == name) + } - // 4. an ENTIRELY-zero stage never reaches `columns`: the correlation pre-filter requires - // `cardinality > 1`. Dropping it would silently shorten the pipeline and imply the last - // surviving stage ends the process, so rescue it from the base-cache sign counts (no - // data pass) and carry it as a zero-height band. - let mut zero_stages: Vec<(usize, String)> = Vec::new(); - for (src, s) in self.stats.iter().enumerate() { - if kept_indices.contains(&src) - || !matches!(s.r#type.as_str(), "Integer" | "Float") - || !eligible_stage(src) - { - continue; - } - let (Some(neg), Some(zero), Some(n_pos)) = (s.n_negative, s.n_zero, s.n_positive) - else { - continue; + /// A stage column's display label — the dictionary `title` when it supplied one. + fn stage_label(&self, idx: usize) -> String { + self.col_sems + .get(idx) + .map(|s| s.label.clone()) + .filter(|l| !l.is_empty()) + .unwrap_or_else(|| self.stats[idx].field.clone()) + } + + /// Funnel over stages held in SEPARATE COLUMNS, listed upstream-first. + fn build_column_funnel( + &self, + members: &[String], + total_rows: usize, + ) -> CliResult> { + // Resolve and screen the declared members. The split between hard-skip and warn-only is + // deliberate: a declaration outranks a NAME heuristic (so an identifier-looking or + // complement-looking name only warns), but it cannot make an arithmetically meaningless + // chart sensible — summing a rate or a coordinate is nonsense whoever asked for it. + let mut indices: Vec = Vec::with_capacity(members.len()); + for name in members { + let Some(idx) = self.stage_index(name) else { + viz_note(&format!( + "viz smart: pipeline funnel — declared stage '{name}' is not a column in this \ + file" + )); + return Ok(None); }; - if zero == 0 || neg + n_pos > 0 { - continue; + let s = &self.stats[idx]; + let sem = &self.col_sems[idx]; + if !matches!(s.r#type.as_str(), "Integer" | "Float") || self.is_map_col(idx) { + viz_note(&format!( + "viz smart: pipeline funnel skipped — declared stage '{name}' is not a \ + numeric amount" + )); + return Ok(None); } - let Some(sem) = self.col_sems.get(src) else { - continue; - }; - if let Some(hit) = stage_match(&sem.label, &s.field) - && hit.family == family - && !per_rank.contains_key(&hit.rank) - { - let label = if sem.label.is_empty() { - s.field.clone() - } else { - sem.label.clone() - }; - zero_stages.push((hit.rank, label)); + if matches!(sem.agg, Some(Agg::Mean)) || is_intensive_measure(&sem.label, &s.field) { + viz_note(&format!( + "viz smart: pipeline funnel skipped — declared stage '{name}' is an average \ + or rate, which cannot be summed into a funnel" + )); + return Ok(None); } + if is_complement_name(&sem.label, &s.field) { + // Warn, don't refuse. A complement nests PERFECTLY, so it shows 0% violations — + // the subtitle cannot surface this one and nothing else will. + viz_note(&format!( + "viz smart: pipeline funnel — '{name}' reads as a complement or remainder, \ + not a stage the process passed through; the funnel may be inverted" + )); + } + indices.push(idx); } - - // 5. assemble the ordered stage list, upstream-first - let mut ordered: Vec<(usize, Option, String)> = per_rank - .iter() - .map(|(&rank, &(pos, _))| (rank, Some(pos), labels[pos].clone())) - .chain(zero_stages.into_iter().map(|(r, l)| (r, None, l))) - .collect(); - ordered.sort_by_key(|&(rank, _, _)| rank); - if ordered.len() > FUNNEL_MAX_STAGES { - let dropped = ordered.len() - FUNNEL_MAX_STAGES; - ordered.truncate(FUNNEL_MAX_STAGES); + if indices.len() < 2 { + return Ok(None); + } + if indices.len() > FUNNEL_MAX_STAGES { + let dropped = indices.len() - FUNNEL_MAX_STAGES; + indices.truncate(FUNNEL_MAX_STAGES); viz_note(&format!( "viz smart: pipeline funnel shows the first {FUNNEL_MAX_STAGES} stages ({dropped} \ more not shown)" )); } - // 6. verify the order the names claimed. A rescued all-zero stage is trivially contained. - for w in ordered.windows(2) { - let [up, down] = w else { continue }; - if !stage_pair_passes(columns, up.1, down.1) { - let frac = stage_containment(columns, up.1, down.1); - viz_note(&format!( - "viz smart: pipeline funnel skipped \u{2014} {} is not contained in {} \ - ({:.0}% of rows)", - down.2, - up.2, - frac * 100.0 - )); - return None; - } + // Dedicated pass over exactly the declared stages, so the complete-case denominator is + // the funnel's own rather than one diluted by unrelated numeric columns. + self.progress.set_message("Reading pipeline stages…"); + let (mut rdr, headers, nh) = reader_and_headers(self.args)?; + let (labels, columns, kept) = + read_numeric_columns(&mut rdr, &headers, nh, &indices, false)?; + if kept.len() != indices.len() || columns.first().is_none_or(Vec::is_empty) { + viz_note( + "viz smart: pipeline funnel skipped — a declared stage held no usable numeric data", + ); + return Ok(None); } - // 7. totals, reach counts and violation shares let n_complete = columns[0].len(); #[allow(clippy::cast_precision_loss)] let complete_frac = if total_rows == 0 { @@ -21732,35 +21635,150 @@ impl<'a> SmartCtx<'a> { }; if complete_frac < FUNNEL_MIN_COMPLETE_FRAC { viz_note(&format!( - "viz smart: pipeline funnel skipped \u{2014} only {:.0}% of rows are complete \ - across every stage", + "viz smart: pipeline funnel skipped — only {:.0}% of rows are complete across \ + every stage", complete_frac * 100.0 )); - return None; + return Ok(None); } - let mut stages: Vec = Vec::with_capacity(ordered.len()); - let mut stage_labels: Vec = Vec::with_capacity(ordered.len()); - let mut totals: Vec = Vec::with_capacity(ordered.len()); - let mut reached: Vec = Vec::with_capacity(ordered.len()); - let mut violations: Vec = Vec::with_capacity(ordered.len()); - for (k, (rank, pos, label)) in ordered.iter().enumerate() { - stages.push(fam.stages[*rank].name.to_string()); - stage_labels.push(label.clone()); - if let Some(p) = pos { - totals.push(columns[*p].iter().sum()); - reached.push(columns[*p].iter().filter(|v| **v > 0.0).count()); - } else { - totals.push(0.0); - reached.push(0); + let totals: Vec = columns.iter().map(|c| c.iter().sum()).collect(); + let reached: Vec = columns + .iter() + .map(|c| c.iter().filter(|v| **v > 0.0).count()) + .collect(); + // Measured for DISCLOSURE only -- this no longer gates anything. + let violations: Vec = (0..columns.len()) + .map(|k| { + if k == 0 { + 0.0 + } else { + 1.0 - containment_fraction(&columns[k - 1], &columns[k]) + } + }) + .collect(); + + let stages: Vec = indices.iter().map(|&i| self.stage_label(i)).collect(); + Ok(self.finish_funnel( + stages, + labels, + totals, + reached, + &violations, + n_complete, + complete_frac, + FunnelShape::Columns, + )) + } + + /// Funnel over stages held as VALUES of one category column. + fn build_row_funnel( + &self, + stage_column: &str, + stages: &[String], + value_column: Option<&str>, + total_rows: usize, + ) -> CliResult> { + let Some(stage_idx) = self.stage_index(stage_column) else { + viz_note(&format!( + "viz smart: pipeline funnel — declared stage column '{stage_column}' is not a \ + column in this file" + )); + return Ok(None); + }; + let value_idx = match value_column { + Some(vc) => { + let Some(vi) = self.stage_index(vc) else { + viz_note(&format!( + "viz smart: pipeline funnel — declared value column '{vc}' is not a \ + column in this file" + )); + return Ok(None); + }; + if !matches!(self.stats[vi].r#type.as_str(), "Integer" | "Float") { + viz_note(&format!( + "viz smart: pipeline funnel skipped — value column '{vc}' is not numeric" + )); + return Ok(None); + } + Some(vi) + }, + None => None, + }; + for s in stages { + if is_complement_name("", s) { + viz_note(&format!( + "viz smart: pipeline funnel — stage '{s}' reads as a complement or remainder \ + rather than a stage the process passed through" + )); } - violations.push(if k == 0 { - 0.0 - } else { - 1.0 - stage_containment(columns, ordered[k - 1].1, *pos) - }); } + let mut wanted: Vec = stages.to_vec(); + if wanted.len() > FUNNEL_MAX_STAGES { + let dropped = wanted.len() - FUNNEL_MAX_STAGES; + wanted.truncate(FUNNEL_MAX_STAGES); + viz_note(&format!( + "viz smart: pipeline funnel shows the first {FUNNEL_MAX_STAGES} stages ({dropped} \ + more not shown)" + )); + } + + self.progress.set_message("Reading pipeline stages…"); + let (totals, counts, matched) = + read_stage_totals(self.args, stage_idx, value_idx, &wanted)?; + if counts.iter().filter(|c| **c > 0).count() < 2 { + viz_note(&format!( + "viz smart: pipeline funnel skipped — fewer than two of the declared stages of \ + '{stage_column}' appear in the data" + )); + return Ok(None); + } + + #[allow(clippy::cast_precision_loss)] + let complete_frac = if total_rows == 0 { + 0.0 + } else { + matched as f64 / total_rows as f64 + }; + // No FUNNEL_MIN_COMPLETE_FRAC gate here, deliberately. Rows outside the declared stages + // are simply other statuses -- a legitimately different thing from a row whose stage + // amount was blank -- so a 50% bar would reject a real funnel over a busy status column. + let labels = vec![self.stage_label(stage_idx); wanted.len()]; + let shape = match value_idx { + Some(vi) => FunnelShape::RowsMeasure { + value_label: self.stage_label(vi), + }, + None => FunnelShape::RowsCount, + }; + // Stages partition the rows, so per-row containment is undefined; the subtitle's + // total-inversion clause still fires and remains a genuine finding. + let violations = vec![0.0; wanted.len()]; + Ok(self.finish_funnel( + wanted, + labels, + totals, + counts, + &violations, + matched, + complete_frac, + shape, + )) + } + + /// Shared tail: the refusals that apply to every funnel, then the panel. + #[allow(clippy::too_many_arguments)] + fn finish_funnel( + &self, + stages: Vec, + labels: Vec, + totals: Vec, + reached: Vec, + violations: &[f64], + n_complete: usize, + complete_frac: f64, + shape: FunnelShape, + ) -> Option { if totals.iter().any(|t| *t < 0.0) { viz_note( "viz smart: pipeline funnel skipped \u{2014} a stage total is negative, which a \ @@ -21778,18 +21796,27 @@ impl<'a> SmartCtx<'a> { ); return None; } - - let subtitle = funnel_subtitle(&stages, &totals, &violations, n_complete, complete_frac); - let title = format!("Pipeline funnel: {}", stage_labels.join(" \u{2192} ")); + let subtitle = funnel_subtitle(&stages, &totals, violations, n_complete, complete_frac); + let title = match &shape { + FunnelShape::Columns => { + format!("Pipeline funnel: {}", labels.join(" \u{2192} ")) + }, + _ => format!( + "Pipeline funnel: {} ({})", + labels.first().cloned().unwrap_or_default(), + stages.join(" \u{2192} ") + ), + }; Some( Panel::new( title, PanelKind::Funnel { stages, - labels: stage_labels, + labels, totals, reached, n_complete, + shape, }, ) .with_subtitle(subtitle), @@ -23079,6 +23106,7 @@ fn panel_trace( totals, reached, n_complete, + shape, } => { // A horizontal funnel: amount on the value axis, stage on the category axis. // A funnel trace draws index 0 at the TOP and works downward — the opposite of a @@ -23100,15 +23128,39 @@ fn panel_trace( let p = reached[k] as f64 / *n_complete as f64 * 100.0; p }; - format!( - "{}
Stage: {}
Amount: {}
Rows reached: {} of {} ({pct:.0}% of \ - complete cases)", - escape_hover(&labels[k]), - escape_hover(&stages[k]), - fmt_measure(totals[k]), - HumanCount(reached[k] as u64), - HumanCount(*n_complete as u64), - ) + // The counts mean different things per shape, so the wording must too: for + // the row encodings `reached` IS the stage's row count and sums to + // `n_complete`, so "of complete cases" would assert a 100% completeness rate + // that means nothing. + match shape { + FunnelShape::Columns => format!( + "{}
Stage: {}
Amount: {}
Rows reached: {} of {} ({pct:.0}% \ + of complete cases)", + escape_hover(&labels[k]), + escape_hover(&stages[k]), + fmt_measure(totals[k]), + HumanCount(reached[k] as u64), + HumanCount(*n_complete as u64), + ), + FunnelShape::RowsMeasure { value_label } => format!( + "{}
Stage: {}
{}: {}
Rows in stage: {} of {} ({pct:.0}% of \ + rows in declared stages)", + escape_hover(&labels[k]), + escape_hover(&stages[k]), + escape_hover(value_label), + fmt_measure(totals[k]), + HumanCount(reached[k] as u64), + HumanCount(*n_complete as u64), + ), + FunnelShape::RowsCount => format!( + "{}
Stage: {}
Rows: {} of {} ({pct:.0}% of rows in declared \ + stages)", + escape_hover(&labels[k]), + escape_hover(&stages[k]), + HumanCount(reached[k] as u64), + HumanCount(*n_complete as u64), + ), + } }) .collect(); let xs: Vec = totals.clone(); @@ -28677,6 +28729,65 @@ mod tests { ); } + #[test] + fn xq_pipelines_parses_both_encodings_and_skips_the_rest() { + let schema = r#"{ + "properties": { "a": { "x-qsv": { "qsv_type": "Float" } } }, + "x-qsv": { "relationships": [ + {"kind": "pipeline", "members": ["planned", "committed", "spent"]}, + {"kind": "pipeline", "stage_column": "status", + "stages": ["Impression", "Click"], "value_column": "revenue"}, + {"kind": "pipeline", "stage_column": "status", "stages": ["only_one"]}, + {"kind": "pipeline", "members": ["solo"]}, + {"kind": "ordered", "members": ["created", "closed"]}, + {"kind": "joint", "members": ["city", "state"]}, + "not even an object" + ]} + }"#; + let data = parse_dictionary_semantics(schema).expect("schema should parse"); + assert_eq!( + data.pipelines, + vec![ + PipelineSpec::Columns { + members: vec![ + "planned".to_string(), + "committed".to_string(), + "spent".to_string() + ], + }, + PipelineSpec::Rows { + stage_column: "status".to_string(), + stages: vec!["Impression".to_string(), "Click".to_string()], + value_column: Some("revenue".to_string()), + }, + ], + "only well-formed `pipeline` entries survive -- ordered/joint, too-short and \ + malformed ones are skipped rather than erroring" + ); + } + + #[test] + fn xq_pipelines_absent_or_legacy_yields_none() { + let no_rels = r#"{"properties":{"a":{"x-qsv":{"qsv_type":"Float"}}}}"#; + assert!( + parse_dictionary_semantics(no_rels) + .expect("schema should parse") + .pipelines + .is_empty() + ); + // pipelines are JSONSchema-only: the legacy flat shape has nowhere to put a + // row-encoded declaration, so it never yields one. + let legacy = r#"{"fields":[ + {"name":"a","type":"Float"},{"name":"b","type":"Float"} + ]}"#; + assert!( + parse_dictionary_semantics(legacy) + .expect("legacy dict should parse") + .pipelines + .is_empty() + ); + } + #[test] fn render_dict_page_html_groups_stats_and_guards_sci_notation() { // Range min/max grouping is role-gated: only genuine `measure` columns get thousands @@ -30847,77 +30958,42 @@ mod tests { } #[test] - fn stage_match_resolves_glued_multiword_names_by_position() { - // `totalplannedcommit` contains BOTH "planned" (pos 5) and "commit" (pos 12). English puts - // the stage modifier first, so the earliest match wins -- otherwise this column collides - // with a sibling `commit_total` and the pipeline is ambiguous or backwards. - let planned = stage_match("", "totalplannedcommit").expect("glued name should match"); - assert_eq!(planned.rank, 0, "totalplannedcommit is the Planned stage"); - assert_eq!( - planned.ambiguity, 2, - "it reads as two stages, hence ambiguous" - ); - - let committed = stage_match("", "commit_total").expect("commit_total should match"); - assert_eq!(committed.rank, 1); - assert_eq!(committed.family, planned.family, "same vocabulary family"); - - // the reversed phrasing resolves the other way, by the same rule - assert_eq!(stage_match("", "spent_of_planned").map(|h| h.rank), Some(2)); - } - - #[test] - fn stage_match_rejects_negations_and_derived_columns() { - // these all CONTAIN a stage word and would pass row-wise containment against their own - // predecessor, so the conjunction cannot catch them -- only the negation guard can + fn complement_marker_warns_but_does_not_veto() { + // `unspent_balance` is the one bad declaration that disclosing containment cannot catch: + // a complement nests PERFECTLY inside its predecessor, so it reports 0% violations while + // rendering a funnel that means the opposite of the truth. for name in [ + "unspent", "unspent_balance", - "uncommitted_funds", - "unobligated", - "spend_variance", - "planned_actual_difference", + "remaining_budget", + "variance_amt", + "fund_balance", + "committed_delta", ] { assert!( - stage_match("", name).is_none(), - "{name} denotes a complement or a difference, not a stage" + is_complement_name("", name), + "{name} should be flagged as a complement" ); } - // a plain stage column is of course still matched - assert!(stage_match("", "spentamt").is_some()); - } - - #[test] - fn stage_match_rejects_words_that_merely_contain_a_stage_word() { - // A shipped false positive: `X Coordinate (State Plane)` matched a bare "plan" and, paired - // with a genuine `spent_total`, produced "Pipeline funnel: X Coordinate (State Plane) -> - // spent_total". The conjunction did not save it, because a real table supplies the second - // rank for free -- so the vocabulary itself has to be non-greedy. + // The COLLISION half of the old marker list died with the name-matching vocabulary it + // existed to defend. Those words only ever mattered because a greedy substring match + // could mistake them for stages; warning on a column the dictionary explicitly DECLARED + // would be a pure false alarm. for name in [ - "X Coordinate (State Plane)", - "Y Coordinate (State Plane)", - "plant_capacity", - "floorplan_area", - // ordinary words that merely contain a stage word, caught by the collision guard "review_count", - "overview_score", - "contractor_count", - "wholesale_price", + "contractor_amt", + "wholesale_total", "lead_time_days", "replaced_units", ] { assert!( - stage_match("", name).is_none(), - "{name} merely contains a stage word; it is not a pipeline stage" + !is_complement_name("", name), + "{name} is an ordinary declared column, not a complement" ); } - - // the real stage words still resolve, including the glued case substrings exist for - assert_eq!( - stage_match("", "totalplannedcommit").map(|h| h.rank), - Some(0) - ); - assert_eq!(stage_match("", "budget_total").map(|h| h.rank), Some(0)); - assert_eq!(stage_match("", "spent_total").map(|h| h.rank), Some(2)); + // and a genuine stage is never flagged + assert!(!is_complement_name("", "spentamt")); + assert!(!is_complement_name("", "totalplannedcommit")); } #[test] diff --git a/tests/test_viz.rs b/tests/test_viz.rs index fc0820c228..88ba0e4e00 100644 --- a/tests/test_viz.rs +++ b/tests/test_viz.rs @@ -11963,10 +11963,8 @@ fn viz_smart_density_panel_hover_names_both_measures_and_the_row_count() { ); } -// A nested budget pipeline. Column names are deliberately GLUED (`totalplannedcommit`) to lock in -// the substring matching the funnel detector needs -- `field_name_tokens` yields one token here, -// so token-equality against "planned" would miss. Values repeat (a 40-value pool) so the columns -// stay below the near-unique threshold that would drop them from the correlation read. +// A nested budget pipeline. Values repeat (a 40-value pool) so the columns stay below the +// near-unique threshold. fn pipeline_csv() -> String { let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); for i in 0..300 { @@ -11978,13 +11976,43 @@ fn pipeline_csv() -> String { rows } +// A dictionary declaring the budget pipeline. Since #4222's rework this is the ONLY way a funnel +// reaches a smart dashboard -- there is no name vocabulary left to infer one from. +fn pipeline_dict(members: &str) -> String { + format!( + r#"{{ + "properties": {{ + "totalplannedcommit": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}}, + "commitamt": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}}, + "spentamt": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}} + }}, + "x-qsv": {{ "relationships": [{{"kind":"pipeline","members":{members}}}] }} + }}"# + ) +} + +// Render `csv` with `dict` and return the HTML. +fn smart_with_dict(wrk: &Workdir, csv: &str, dict: &str) -> String { + wrk.create_from_string("p.csv", csv); + wrk.create_from_string("d.schema.json", dict); + let out_html = wrk.path("p.html").to_string_lossy().to_string(); + let mut cmd = wrk.command("viz"); + cmd.args(["smart", "p.csv", "-o", &out_html, "--dictionary"]) + .arg(wrk.path("d.schema.json")) + .env("QSV_VIZ_NO_COMPRESS", "1"); + wrk.assert_success(&mut cmd); + wrk.read_to_string("p.html").unwrap() +} + #[test] -fn viz_smart_builds_pipeline_funnel_for_glued_stage_names() { - // issue #4222 ask 3. `totalplannedcommit` contains both "planned" (pos 5) and "commit" - // (pos 12); the lowest-position rule must resolve it to Planned, leaving `commitamt` as the - // Committed stage. If "commit" won instead, the two would collide and the funnel would be - // skipped as ambiguous -- on the very dataset shape the issue was filed against. - let wrk = Workdir::new("viz_smart_builds_pipeline_funnel_for_glued_stage_names"); +fn viz_smart_no_funnel_without_a_dictionary() { + // THE headline behavior of the #4222 rework, and the honest replacement for the four + // `!contains("Pipeline funnel:")` negatives that used to sit below. Those were written when a + // name vocabulary could produce a funnel on its own, so they proved a guard was working. With + // detection now dictionary-only they would all pass for a different reason -- no dictionary, + // no funnel -- and prove nothing. This test asserts that baseline deliberately, on the very + // table that DOES draw once a dictionary declares it (see the test directly below). + let wrk = Workdir::new("viz_smart_no_funnel_without_a_dictionary"); wrk.create_from_string("p.csv", &pipeline_csv()); let out_html = wrk.path("p.html").to_string_lossy().to_string(); @@ -11994,18 +12022,51 @@ fn viz_smart_builds_pipeline_funnel_for_glued_stage_names() { wrk.assert_success(&mut cmd); let html = wrk.read_to_string("p.html").unwrap(); + assert!( + !html.contains("Pipeline funnel:") && !html.contains(r#""type":"funnel""#), + "a perfectly nested planned/committed/spent table must NOT produce a funnel without a \ + dictionary -- stage identity is semantics, not a statistic; html: {html}" + ); +} + +#[test] +fn viz_smart_builds_pipeline_funnel_from_a_dictionary() { + // issue #4222 ask 3: the declared member ORDER is the pipeline order, upstream-first. + let wrk = Workdir::new("viz_smart_builds_pipeline_funnel_from_a_dictionary"); + let html = smart_with_dict( + &wrk, + &pipeline_csv(), + &pipeline_dict(r#"["totalplannedcommit","commitamt","spentamt"]"#), + ); assert!( html.contains(r#""type":"funnel""#), - "a nested planned/committed/spent table should earn a funnel panel; html: {html}" + "a declared pipeline should earn a funnel panel; html: {html}" ); assert!( html.contains("Pipeline funnel: totalplannedcommit"), "the funnel title should lead with the upstream column; html: {html}" ); - // stage order is vocabulary order, upstream-first -- a funnel trace draws index 0 at the TOP + // a funnel trace draws index 0 at the TOP, so stages are fed upstream-first + assert!( + html.contains(r#""y":["totalplannedcommit","commitamt","spentamt"]"#), + "stages must be fed in declared order, or the funnel renders upside down; html: {html}" + ); +} + +#[test] +fn viz_smart_funnel_honors_declared_order_over_magnitude() { + // The declaration is authoritative: stages are NOT re-sorted by size. Reversing the members + // must reverse the bands even though that makes the funnel widen downward -- if the tool + // silently sorted, a mis-declared pipeline would look plausible and never be noticed. + let wrk = Workdir::new("viz_smart_funnel_honors_declared_order_over_magnitude"); + let html = smart_with_dict( + &wrk, + &pipeline_csv(), + &pipeline_dict(r#"["spentamt","commitamt","totalplannedcommit"]"#), + ); assert!( - html.contains(r#""y":["Planned","Committed","Spent"]"#), - "stages must be fed upstream-first, or the funnel renders upside down; html: {html}" + html.contains(r#""y":["spentamt","commitamt","totalplannedcommit"]"#), + "declared order must survive verbatim; html: {html}" ); } @@ -12014,15 +12075,11 @@ fn viz_smart_funnel_hover_reports_both_dollar_and_row_conversion() { // At high concentration "42% of dollars committed" and "N of M projects committed anything" // are both true and read as a contradiction, so neither may appear alone. let wrk = Workdir::new("viz_smart_funnel_hover_reports_both_dollar_and_row_conversion"); - wrk.create_from_string("p.csv", &pipeline_csv()); - - let out_html = wrk.path("p.html").to_string_lossy().to_string(); - let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) - .env("QSV_VIZ_NO_COMPRESS", "1"); - wrk.assert_success(&mut cmd); - - let html = wrk.read_to_string("p.html").unwrap(); + let html = smart_with_dict( + &wrk, + &pipeline_csv(), + &pipeline_dict(r#"["totalplannedcommit","commitamt","spentamt"]"#), + ); // the dollar side is plotly's own textinfo, computed from the bar values so it cannot drift assert!( html.contains(r#""textinfo":"percent previous""#), @@ -12036,16 +12093,17 @@ fn viz_smart_funnel_hover_reports_both_dollar_and_row_conversion() { } #[test] -fn viz_smart_funnel_declares_complete_case_denominator() { - // The funnel sums over the listwise-complete join, so its totals do NOT match `stats.sum`. - // Following `lorenz_caveat`, that is disclosed unconditionally rather than only when bad. - let wrk = Workdir::new("viz_smart_funnel_declares_complete_case_denominator"); +fn viz_smart_funnel_denominator_covers_only_the_declared_stages() { + // The funnel now takes its OWN data pass over exactly the declared stages, so an unrelated + // sparse column no longer dilutes the disclosed denominator. Under the old design this read + // 90%, because the listwise join spanned every numeric column in the table. + let wrk = Workdir::new("viz_smart_funnel_denominator_covers_only_the_declared_stages"); let mut rows = String::from("totalplannedcommit,commitamt,spentamt,othermeasure\n"); for i in 0..300 { let planned = ((i % 40) + 1) * 1000; let commit = planned * (i % 3) / 4; let spent = commit * (i % 2) / 3; - // blank in 10% of rows, so the listwise join drops those rows from every stage + // every 10th row leaves an unrelated measure blank let other = if i % 10 == 0 { String::new() } else { @@ -12053,221 +12111,302 @@ fn viz_smart_funnel_declares_complete_case_denominator() { }; rows.push_str(&format!("{planned},{commit},{spent},{other}\n")); } - wrk.create_from_string("p.csv", &rows); - - let out_html = wrk.path("p.html").to_string_lossy().to_string(); - let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) - .env("QSV_VIZ_NO_COMPRESS", "1"); - wrk.assert_success(&mut cmd); - - let html = wrk.read_to_string("p.html").unwrap(); + let dict = format!( + r#"{{ + "properties": {{ + "totalplannedcommit": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}}, + "commitamt": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}}, + "spentamt": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}}, + "othermeasure": {{"type":"integer","x-qsv":{{"qsv_type":"Integer"}}}} + }}, + "x-qsv": {{ "relationships": [{{"kind":"pipeline", + "members":["totalplannedcommit","commitamt","spentamt"]}}] }} + }}"# + ); + let html = smart_with_dict(&wrk, &rows, &dict); assert!( - html.contains("complete cases (90% of rows)"), - "the funnel subtitle must state the complete-case denominator; html: {html}" + html.contains("complete cases (100% of rows)"), + "the denominator must cover the declared stages only, not unrelated blanks; html: {html}" ); } #[test] -fn viz_smart_funnel_includes_an_all_zero_stage() { - // A wholly-zero stage has cardinality 1, so the correlation pre-filter drops it and it never - // reaches the row-aligned columns. Losing it would silently shorten the pipeline and imply - // the last surviving stage ends the process, so it is rescued from the cached sign counts. - let wrk = Workdir::new("viz_smart_funnel_includes_an_all_zero_stage"); +fn viz_smart_funnel_discloses_containment_violations_instead_of_refusing() { + // INVERTED by the #4222 rework. This table's `spentamt` overruns `commitamt` on ~30% of rows, + // which used to trip a 0.90 containment GATE and suppress the panel entirely. Containment is + // now a MEASUREMENT, not a gate: the funnel draws and the subtitle names the violation share. + // This is what lets the motivating NYC CPDB dataset -- three aggregates on different + // accounting bases -- render at all. + let wrk = Workdir::new("viz_smart_funnel_discloses_containment_violations_instead_of_refusing"); let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); for i in 0..300 { let planned = ((i % 40) + 1) * 1000; - let commit = planned * (i % 3) / 4; - rows.push_str(&format!("{planned},{commit},0\n")); + let commit = planned / 2; + // ~30% of rows spend more than was ever committed + let spent = if i % 10 < 3 { commit * 3 } else { commit / 2 }; + rows.push_str(&format!("{planned},{commit},{spent}\n")); } - wrk.create_from_string("p.csv", &rows); - - let out_html = wrk.path("p.html").to_string_lossy().to_string(); - let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) - .env("QSV_VIZ_NO_COMPRESS", "1"); - wrk.assert_success(&mut cmd); - - let html = wrk.read_to_string("p.html").unwrap(); + let html = smart_with_dict( + &wrk, + &rows, + &pipeline_dict(r#"["totalplannedcommit","commitamt","spentamt"]"#), + ); + assert!( + html.contains(r#""type":"funnel""#), + "a declared pipeline draws even when its stages do not nest; html: {html}" + ); assert!( - html.contains(r#""y":["Planned","Committed","Spent"]"#), - "the nothing-spent-yet stage must still appear, at zero; html: {html}" + html.contains("exceeds"), + "the subtitle must NAME the containment violation rather than hiding the panel; html: \ + {html}" ); } #[test] -fn viz_smart_funnel_flags_overrun_without_reordering_stages() { - // A downstream stage whose TOTAL outruns its predecessor is the finding, not a glitch: bar - // order stays vocabulary order (never sorted by value) and the subtitle names the inversion. - let wrk = Workdir::new("viz_smart_funnel_flags_overrun_without_reordering_stages"); - let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); +fn viz_smart_funnel_warns_when_a_declared_stage_is_a_complement() { + // INVERTED, and the assertion moved from html to STDERR on purpose. A complement column + // (`unspentamt`) nests PERFECTLY inside its predecessor, so it reports 0% violations -- the + // subtitle cannot surface it and no html assertion could either. The warning is the only + // signal, so the warning is what must be asserted. + let wrk = Workdir::new("viz_smart_funnel_warns_when_a_declared_stage_is_a_complement"); + let mut rows = String::from("totalplannedcommit,unspentamt\n"); for i in 0..300 { let planned = ((i % 40) + 1) * 1000; - // 3 rows in 300 (1%) blow through their plan by 100x -- under the 90% containment gate, - // but enough to dominate the committed total - let commit = if i % 100 == 7 { - planned * 100 - } else { - planned / 2 - }; - rows.push_str(&format!("{planned},{commit},0\n")); + rows.push_str(&format!("{planned},{}\n", planned / 4)); } wrk.create_from_string("p.csv", &rows); - + wrk.create_from_string( + "d.schema.json", + r#"{ + "properties": { + "totalplannedcommit": {"type":"integer","x-qsv":{"qsv_type":"Integer"}}, + "unspentamt": {"type":"integer","x-qsv":{"qsv_type":"Integer"}} + }, + "x-qsv": { "relationships": [ + {"kind":"pipeline","members":["totalplannedcommit","unspentamt"]} + ] } + }"#, + ); let out_html = wrk.path("p.html").to_string_lossy().to_string(); let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) + cmd.args(["smart", "p.csv", "-o", &out_html, "--dictionary"]) + .arg(wrk.path("d.schema.json")) .env("QSV_VIZ_NO_COMPRESS", "1"); - wrk.assert_success(&mut cmd); + let stderr = wrk.output_stderr(&mut cmd); let html = wrk.read_to_string("p.html").unwrap(); assert!( - html.contains("total exceeds"), - "an inverted stage total must be named in the subtitle; html: {html}" + html.contains(r#""type":"funnel""#), + "an explicit declaration outranks a name heuristic, so the funnel still draws; html: \ + {html}" ); assert!( - html.contains(r#""y":["Planned","Committed","Spent"]"#), - "vocabulary order must survive an overrun; html: {html}" + stderr.contains("complement") || stderr.contains("remainder"), + "a complement stage must be WARNED about -- it nests perfectly, so nothing else can \ + reveal it; stderr: {stderr}" ); } #[test] -fn viz_smart_no_funnel_when_containment_is_violated() { - // Vocabulary alone is NOT enough: these two columns name distinct stages of one family, so - // only the row-wise containment gate can reject them. - let wrk = Workdir::new("viz_smart_no_funnel_when_containment_is_violated"); - let mut rows = String::from("plannedamt,spentamt\n"); +fn viz_smart_funnel_skips_a_declared_stage_that_cannot_be_summed() { + // A declaration outranks a NAME heuristic, but it cannot make a meaningless chart sensible: + // summing an average or a rate is nonsense whoever asked for it, so `spent_pct` is refused. + let wrk = Workdir::new("viz_smart_funnel_skips_a_declared_stage_that_cannot_be_summed"); + let mut rows = String::from("totalplannedcommit,commitamt,spent_pct\n"); for i in 0..300 { let planned = ((i % 40) + 1) * 1000; - // spent exceeds planned in 30% of rows -- well past FUNNEL_CONTAINMENT_MIN - let spent = if i % 10 < 3 { planned * 2 } else { planned / 2 }; - rows.push_str(&format!("{planned},{spent}\n")); + let commit = planned * (i % 3) / 4; + rows.push_str(&format!("{planned},{commit},{}\n", i % 100)); } wrk.create_from_string("p.csv", &rows); - + wrk.create_from_string( + "d.schema.json", + r#"{ + "properties": { + "totalplannedcommit": {"type":"integer","x-qsv":{"qsv_type":"Integer"}}, + "commitamt": {"type":"integer","x-qsv":{"qsv_type":"Integer"}}, + "spent_pct": {"type":"integer","x-qsv":{"qsv_type":"Integer"}} + }, + "x-qsv": { "relationships": [ + {"kind":"pipeline","members":["totalplannedcommit","commitamt","spent_pct"]} + ] } + }"#, + ); let out_html = wrk.path("p.html").to_string_lossy().to_string(); let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) + cmd.args(["smart", "p.csv", "-o", &out_html, "--dictionary"]) + .arg(wrk.path("d.schema.json")) .env("QSV_VIZ_NO_COMPRESS", "1"); - wrk.assert_success(&mut cmd); + let stderr = wrk.output_stderr(&mut cmd); let html = wrk.read_to_string("p.html").unwrap(); assert!( - !html.contains("Pipeline funnel:"), - "columns that are not nested must not be drawn as a pipeline; html: {html}" + !html.contains(r#""type":"funnel""#), + "an intensive measure must not be summed into a funnel; html: {html}" + ); + assert!( + stderr.contains("rate") || stderr.contains("average"), + "the skip must say WHY; stderr: {stderr}" ); } #[test] -fn viz_smart_no_funnel_for_unspent_complement_column() { - // `unspentamt` contains "spent" AND is perfectly nested inside `plannedamt`, so BOTH gates - // pass -- it is the one false-positive class the conjunction cannot catch, and the reason the - // negation guard exists. Read as a Spent stage it would invert the panel's meaning. - let wrk = Workdir::new("viz_smart_no_funnel_for_unspent_complement_column"); - let mut rows = String::from("plannedamt,unspentamt\n"); - for i in 0..300 { - let planned = ((i % 40) + 1) * 1000; - let unspent = planned / 2; - rows.push_str(&format!("{planned},{unspent}\n")); - } - wrk.create_from_string("p.csv", &rows); - - let out_html = wrk.path("p.html").to_string_lossy().to_string(); - let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) - .env("QSV_VIZ_NO_COMPRESS", "1"); - wrk.assert_success(&mut cmd); - - let html = wrk.read_to_string("p.html").unwrap(); +fn viz_smart_funnel_ignores_a_pipeline_naming_a_missing_column() { + // A stale hand-edited dictionary must degrade to "no funnel", never to an error -- this is a + // dashboard, not a validator. + let wrk = Workdir::new("viz_smart_funnel_ignores_a_pipeline_naming_a_missing_column"); + let html = smart_with_dict( + &wrk, + &pipeline_csv(), + &pipeline_dict(r#"["totalplannedcommit","no_such_column"]"#), + ); assert!( - !html.contains("Pipeline funnel:"), - "a complement column must not be read as its own stage; html: {html}" + !html.contains(r#""type":"funnel""#), + "a declaration naming a column that does not exist yields no funnel; html: {html}" ); } #[test] -fn viz_smart_no_funnel_when_a_zero_stage_masks_a_containment_violation() { - // roborev 3832: an all-zero stage is carried without a data vector, and the containment gate - // used to SKIP any pair involving one. With planned -> all-zero commit -> non-nested spent - // that skipped BOTH pairs, so the funnel rendered even though spending exceeds the plan. - // A zero upstream contains only zeros, so a positive downstream must fail the gate. - let wrk = Workdir::new("viz_smart_no_funnel_when_a_zero_stage_masks_a_containment_violation"); - let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); +fn viz_smart_builds_a_row_encoded_funnel_summing_a_value_column() { + // The shape `viz smart` previously declined to guess at: stages as VALUES of one column. + // Safe now because it is DECLARED, not inferred. + let wrk = Workdir::new("viz_smart_builds_a_row_encoded_funnel_summing_a_value_column"); + let mut rows = String::from("stage,revenue,region\n"); for i in 0..300 { - let planned = ((i % 40) + 1) * 1000; - // nothing committed anywhere, yet money was spent -- and spent beyond the plan - let spent = planned * 3; - rows.push_str(&format!("{planned},0,{spent}\n")); + let (stage, rev) = match i % 10 { + 0..=4 => ("Impression", 1), + 5..=7 => ("Click", 4), + 8 => ("Lead", 20), + _ => ("Conversion", 90), + }; + rows.push_str(&format!("{stage},{rev},r{}\n", i % 3)); } wrk.create_from_string("p.csv", &rows); - + wrk.create_from_string( + "d.schema.json", + r#"{ + "properties": { + "stage": {"type":"string","x-qsv":{"qsv_type":"String","role":"dimension"}}, + "revenue": {"type":"integer","x-qsv":{"qsv_type":"Integer","role":"measure"}}, + "region": {"type":"string","x-qsv":{"qsv_type":"String","role":"dimension"}} + }, + "x-qsv": { "relationships": [ + {"kind":"pipeline","members":["stage","revenue"],"stage_column":"stage", + "stages":["Impression","Click","Lead","Conversion"],"value_column":"revenue"} + ] } + }"#, + ); let out_html = wrk.path("p.html").to_string_lossy().to_string(); let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) + cmd.args(["smart", "p.csv", "-o", &out_html, "--dictionary"]) + .arg(wrk.path("d.schema.json")) .env("QSV_VIZ_NO_COMPRESS", "1"); wrk.assert_success(&mut cmd); let html = wrk.read_to_string("p.html").unwrap(); assert!( - !html.contains("Pipeline funnel:"), - "a zero stage must not let a downstream violation through; html: {html}" + html.contains(r#""type":"funnel""#), + "a declared row-encoded pipeline should earn a funnel panel; html: {html}" + ); + assert!( + html.contains(r#""y":["Impression","Click","Lead","Conversion"]"#), + "stage VALUES become the bands, in declared order; html: {html}" + ); + // the row encoding must NOT borrow the column encoding's complete-case wording: `reached` + // sums to the denominator here, so "of complete cases" would assert a meaningless 100% + assert!( + html.contains("rows in declared stages"), + "the hover must use the row-encoding wording; html: {html}" ); } #[test] -fn viz_smart_no_funnel_when_a_zero_stage_is_followed_by_sparse_activity() { - // roborev 3838: an all-zero upstream was measured against the global 90% containment gate, so - // a downstream stage active in up to a tenth of rows still rendered. That tolerance exists for - // change orders on a POPULATED stage; an empty predecessor is a categorical claim, and any - // spend below a stage that recorded nothing contradicts it. 5% here -- inside the old gate. - let wrk = Workdir::new("viz_smart_no_funnel_when_a_zero_stage_is_followed_by_sparse_activity"); - let mut rows = String::from("totalplannedcommit,commitamt,spentamt\n"); +fn viz_smart_row_funnel_counts_rows_when_no_value_column_is_declared() { + let wrk = Workdir::new("viz_smart_row_funnel_counts_rows_when_no_value_column_is_declared"); + let mut rows = String::from("stage,region\n"); for i in 0..300 { - let planned = ((i % 40) + 1) * 1000; - // nothing committed anywhere; 5% of rows nonetheless report spend (still <= planned, so - // only the zero-upstream rule can reject this) - let spent = if i % 20 == 0 { planned / 2 } else { 0 }; - rows.push_str(&format!("{planned},0,{spent}\n")); + let stage = match i % 10 { + 0..=4 => "Impression", + 5..=7 => "Click", + 8 => "Lead", + _ => "Conversion", + }; + rows.push_str(&format!("{stage},r{}\n", i % 3)); } wrk.create_from_string("p.csv", &rows); - + wrk.create_from_string( + "d.schema.json", + r#"{ + "properties": { + "stage": {"type":"string","x-qsv":{"qsv_type":"String","role":"dimension"}}, + "region": {"type":"string","x-qsv":{"qsv_type":"String","role":"dimension"}} + }, + "x-qsv": { "relationships": [ + {"kind":"pipeline","members":["stage"],"stage_column":"stage", + "stages":["Impression","Click","Lead","Conversion"]} + ] } + }"#, + ); let out_html = wrk.path("p.html").to_string_lossy().to_string(); let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) + cmd.args(["smart", "p.csv", "-o", &out_html, "--dictionary"]) + .arg(wrk.path("d.schema.json")) .env("QSV_VIZ_NO_COMPRESS", "1"); wrk.assert_success(&mut cmd); let html = wrk.read_to_string("p.html").unwrap(); assert!( - !html.contains("Pipeline funnel:"), - "spend below an empty stage must reject the pipeline, not be tolerated; html: {html}" + html.contains(r#""type":"funnel""#), + "a count-only row pipeline should still draw; html: {html}" + ); + // With no value column there is no Amount line -- the count IS the measure. NB: plotly + // unicode-escapes angle brackets, so the `
` separator is `
` in the emitted + // HTML and must not be matched literally here. + assert!( + html.contains("Rows: ") && !html.contains("Rows reached:"), + "a count-only funnel's hover must report a row count, not an amount or the column \ + encoding's wording; html: {html}" ); } #[test] -fn viz_smart_funnel_zero_stage_rescue_honors_the_eligibility_filters() { - // roborev 3832: the rescue applied only a type/map check, so an all-zero column the MAIN pass - // would reject -- here `spent_pct`, intensive by name -- could still be admitted as a stage. - // Both paths now share one eligibility test, so the funnel stops at Committed. - let wrk = Workdir::new("viz_smart_funnel_zero_stage_rescue_honors_the_eligibility_filters"); - let mut rows = String::from("totalplannedcommit,commitamt,spent_pct\n"); +fn viz_smart_row_funnel_tolerates_stage_case_drift_and_absent_stages() { + // The stage values are transcribed by an LLM from the frequency distribution, so case drift + // is a realistic failure that would otherwise silently zero a band. A declared stage with no + // rows is legitimate and stays as a zero band -- dropping it would imply the process ends at + // the last stage that happens to have data. + let wrk = Workdir::new("viz_smart_row_funnel_tolerates_stage_case_drift_and_absent_stages"); + let mut rows = String::from("stage,region\n"); for i in 0..300 { - let planned = ((i % 40) + 1) * 1000; - let commit = planned * (i % 3) / 4; - rows.push_str(&format!("{planned},{commit},0\n")); + let stage = if i % 3 == 0 { "impression" } else { "click" }; + rows.push_str(&format!("{stage},r{}\n", i % 3)); } wrk.create_from_string("p.csv", &rows); - + wrk.create_from_string( + "d.schema.json", + r#"{ + "properties": { + "stage": {"type":"string","x-qsv":{"qsv_type":"String","role":"dimension"}}, + "region": {"type":"string","x-qsv":{"qsv_type":"String","role":"dimension"}} + }, + "x-qsv": { "relationships": [ + {"kind":"pipeline","members":["stage"],"stage_column":"stage", + "stages":["Impression","Click","Conversion"]} + ] } + }"#, + ); let out_html = wrk.path("p.html").to_string_lossy().to_string(); let mut cmd = wrk.command("viz"); - cmd.args(["smart", "p.csv", "-o", &out_html]) + cmd.args(["smart", "p.csv", "-o", &out_html, "--dictionary"]) + .arg(wrk.path("d.schema.json")) .env("QSV_VIZ_NO_COMPRESS", "1"); wrk.assert_success(&mut cmd); let html = wrk.read_to_string("p.html").unwrap(); assert!( - html.contains(r#""y":["Planned","Committed"]"#), - "an intensive all-zero column must not be rescued as a stage; html: {html}" + html.contains(r#""y":["Impression","Click","Conversion"]"#), + "case-drifted stages must still match, and an absent stage stays as a zero band; html: \ + {html}" ); } From 4a25fe3d048f4ea5efb009b1f0f4214f920cff37 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 10:27:16 +0800 Subject: [PATCH 11/15] typos: drop the `appropriat` exception with the vocabulary it protected The stem lived in FUNNEL_FAMILIES, which the dictionary-driven funnel rework deleted. Verified against the same typos 1.48.0 CI pins: the repo is clean without the exception. Co-Authored-By: Claude Opus 4.7 (1M context) --- _typos.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/_typos.toml b/_typos.toml index d14ebe2128..cf2d71d32a 100644 --- a/_typos.toml +++ b/_typos.toml @@ -28,7 +28,6 @@ nd = "nd" Pn = "Pn" tripel = "tripel" sems = "sems" -appropriat = "appropriat" [files] extend-exclude = [ From d180f82bb7f533bf15310022462a2badfecfeb75 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 10:32:21 +0800 Subject: [PATCH 12/15] viz/describegpt: document the dictionary-declared pipeline funnel The `viz smart` funnel panel was never documented for users -- the overview-panels list in the help never mentioned it, and everything about it lived in rustdoc. Now that it is dictionary-driven, and therefore something a user must author or edit to get at all, that gap matters. Adds the panel to the smart overview-panels list, stating plainly that a funnel is drawn ONLY from an explicit declaration and never guessed, that declared order is authoritative and never re-sorted by size, and that containment is measured and disclosed but never refuses. Documents both `kind: "pipeline"` encodings under --dictionary with worked JSON, and the relationships array under describegpt's --infer-content-type, where it belongs alongside gauge_range. Also corrects two doc comments the rework falsified: `build_funnel_chart` claimed the row-shaped pipeline is one "the smart path explicitly declines to guess at" (smart now charts it when declared), and PanelKind::Funnel still described the deleted FUNNEL_FAMILIES vocabulary and its two gates. docs/help/*.md regenerated via `qsv --generate-help-md`, never hand-edited. No gallery regeneration: none of the 5 committed dictionaries declares a relationships array (they predate the emitter fix), and no committed smart dashboard ever carried a funnel panel, so no figure gains or loses one. The single funnel in gallery.html is the standalone `viz funnel` figure, untouched by this work. Regenerating would produce only timestamp churn. Co-Authored-By: Claude Opus 4.7 (1M context) --- docs/help/describegpt.md | 2 +- docs/help/viz.md | 17 +++++++++++++- src/cmd/describegpt.rs | 13 ++++++++++ src/cmd/viz.rs | 51 +++++++++++++++++++++++++++++++++++----- 4 files changed, 75 insertions(+), 8 deletions(-) diff --git a/docs/help/describegpt.md b/docs/help/describegpt.md index d33f7250b8..65936d6c0b 100644 --- a/docs/help/describegpt.md +++ b/docs/help/describegpt.md @@ -228,7 +228,7 @@ qsv describegpt --help |--------|------|-------------|--------| |  `‑‑num‑examples`  | integer | The number of Example values to include in the dictionary. | `5` | |  `‑‑truncate‑str`  | integer | The maximum length of an Example value in the dictionary. An ellipsis is appended to the truncated value. If zero, no truncation is performed. Bounds the prompt sent to the LLM, and applies to the csv/json/semantic-md dictionary output. The jsonschema output is machine-facing, so it always carries the full, untruncated Example values. | `25` | -|  `‑‑infer‑content‑type`  | flag | Also have the LLM classify each field's semantic "Content Type", mapped to a curated, documented vocabulary (e.g. email, city, category, name, credit card, etc.) see . Adds a "Content Type" column/field to the Data Dictionary output. Fields where cardinality equals the row count (i.e. every row has a distinct non-null value - primary keys, surrogate keys, sequence numbers) are deterministically classified as "unique_id", overriding any token the LLM returned for that field. For Date/DateTime fields, the LLM also infers the column's strftime date format (e.g. "date:%m/%d/%Y"); the Markdown, JSON & JSON Schema dictionaries then render Min/Max AND Examples in that inferred format so they match how the dates actually appear in the data, instead of qsv's normalized form. (TSV output keeps Min/Max & Examples in qsv's raw normalized form.) For a CONTINUOUS numeric measure on a canonical scale (a percentage, a 0-1 ratio/probability, a bounded index), the LLM also proposes an "x-qsv.gauge_range" [min, max]; qsv keeps it only when the field is a numeric measure AND the observed data lies within it, so that a "viz smart" dictionary-driven dashboard draws that KPI tile as a GAUGE. (A KPI "vs target" delta uses "x-qsv.target", which is a GOAL you hand-author - never inferred.) | | +|  `‑‑infer‑content‑type`  | flag | Also have the LLM classify each field's semantic "Content Type", mapped to a curated, documented vocabulary (e.g. email, city, category, name, credit card, etc.) see . Adds a "Content Type" column/field to the Data Dictionary output. Fields where cardinality equals the row count (i.e. every row has a distinct non-null value - primary keys, surrogate keys, sequence numbers) are deterministically classified as "unique_id", overriding any token the LLM returned for that field. For Date/DateTime fields, the LLM also infers the column's strftime date format (e.g. "date:%m/%d/%Y"); the Markdown, JSON & JSON Schema dictionaries then render Min/Max AND Examples in that inferred format so they match how the dates actually appear in the data, instead of qsv's normalized form. (TSV output keeps Min/Max & Examples in qsv's raw normalized form.) For a CONTINUOUS numeric measure on a canonical scale (a percentage, a 0-1 ratio/probability, a bounded index), the LLM also proposes an "x-qsv.gauge_range" [min, max]; qsv keeps it only when the field is a numeric measure AND the observed data lies within it, so that a "viz smart" dictionary-driven dashboard draws that KPI tile as a GAUGE. (A KPI "vs target" delta uses "x-qsv.target", which is a GOAL you hand-author - never inferred.) The LLM also infers dataset-level INTER-COLUMN RELATIONSHIPS, emitted as a "relationships" array (top-level in the JSON dictionary, and in the dataset-level "x-qsv" object of the JSON Schema one). Each entry has a "kind" of "joint", "ordered", "correlated" or "pipeline", plus a "members" list of the field names involved. A "pipeline" is a process whose stages narrow monotonically - planned to committed to spent, impressions to clicks to conversions. Its stages may be separate COLUMNS (listed in "members", upstream first - the opposite direction from "ordered", which ascends) or the VALUES of one category column (via "stage_column", an ordered "stages" list, and an optional "value_column" to sum). "qsv viz smart --dictionary" reads these to draw its pipeline funnel panel; edit them in the saved schema to correct or add one. | | |  `‑‑infer‑null‑values`  | flag | Also have the LLM propose each field's null sentinels - literal values that stand in for "missing" (e.g. NULL, N/A, -999, 9999-12-31). Emitted into the JSON Schema dictionary's per-property "x-qsv" object, split into two lists that carry different warranties.
  • "null_values" - proposed by the LLM AND independently confirmed by qsv to occur as a literal value in that String column. Every observed casing is listed.
  • "null_candidates" - proposed by the LLM but NOT confirmable by any scan; numeric/date placeholders that parse as valid values of the column's own type (-999 is a legal integer), or tokens never seen in the data. Each carries "confirm_required": true.
A proposal that is IMPOSSIBLE is dropped rather than reported: a non-numeric token in a numeric column (no cell could hold it, or the column would not have typed as numeric), and an echo of the null placeholder the Frequency Distribution displays for cells qsv already counts as empty. A confirmed "null_values" entry means only that the literal is PRESENT in the column; the judgment that it MEANS "missing" remains the LLM's. This complements "qsv denull", which reports a narrower set - only the columns that would promote to a numeric type once their sentinels are blanked. A purely categorical column (status = ok/pending/NULL) is outside denull's remit. Sentinels are REPORTED, never applied - qsv does not modify your data on an LLM's say-so. Only "qsv denull --apply" masks values, and only in the columns it independently confirmed. Only rendered by "--format JSONSchema"; the other formats ignore them. | | |  `‑‑two‑pass`  | flag | Run a second LLM call that takes the full first-pass Data Dictionary as JSON context and refines each field's Label, Description and (when --infer-content-type is set) Content Type using cross-field awareness. The LLM can then relate fields that belong together (e.g. street_no + street_name + city + state + zip describing a single mailing address; first_name + last_name naming a single person; lat + lng forming a coordinate pair). The refined dictionary becomes the emitted output and is also what downstream Description, Tags and Prompt inference phases see as dictionary context. Roughly doubles dictionary LLM cost and latency, so opt-in. Most useful when combined with --infer-content-type. Allowed with the --dictionary, --all and --prompt inference flags. Mutually exclusive with --prepare-context and --process-response (MCP sampling is single-turn per inference phase). | | |  `‑‑addl‑cols`  | flag | Add additional columns to the dictionary from the Summary Statistics. | | diff --git a/docs/help/viz.md b/docs/help/viz.md index c73091bcd5..d9cc07344d 100644 --- a/docs/help/viz.md +++ b/docs/help/viz.md @@ -109,6 +109,21 @@ that contains the value, and gains a "vs target" DELTA when it supplies an with no headline measure. (Overall dataset completeness - the share of non-empty cells - is a quiet "Completeness:" line in the header metadata table, not a KPI tile.) +- pipeline funnel, when the dictionary DECLARES one (see --dictionary). Which +columns are process stages, and in which direction, is semantics rather than +a statistic - no column-name vocabulary settles it and no statistic does +either - so a funnel is drawn ONLY from an explicit declaration, never +guessed. Both encodings are supported: stages held in separate measure +columns, and stages held as values of one category column. Costs one extra +data pass over the declared stages only. +Stage order is the declared order and is never re-sorted by size. For the +column encoding, row-wise containment (does each stage nest inside the one +before it?) is MEASURED and disclosed in the subtitle, but never refuses the +panel: a pipeline whose stages overrun is a finding to name, not a reason to +show nothing. Totals sum over the rows complete across every declared stage, +so they do NOT match `stats.sum`; the subtitle always discloses that +denominator. See also the standalone `qsv viz funnel` chart type, which takes +its stage order from the file and needs no dictionary. - correlation heatmap, when 2+ continuous numeric columns exist (one extra data pass for Pearson correlations). If the strongest pair is at least moderately correlated, a drill-down is added beside it: a scatter (or a 2D @@ -432,7 +447,7 @@ qsv viz --help |  `‑‑no‑other`  | flag | Omit the "Other (N)" aggregate bar from frequency bar charts. It collects the categories beyond --limit (N = how many distinct categories were rolled up) and is shown by default. When just ONE category is left over, it is charted under its own name instead of as an opaque "Other (1)" bar. | | |  `‑‑smarter`  | flag | Before building the dashboard, run `qsv moarstats --advanced` to enrich the stats cache with distribution-shape statistics (bimodality, entropy, skewness, outlier share, Gini). This unlocks histograms for bimodal columns, frequency bars for concentrated high-cardinality columns, skew/outlier hints on box panels, and Lorenz curves for the most unequal additive measures (high Gini). Costs one extra pass over the data and writes .stats.csv, its sidecars, and an .idx index (like running `qsv moarstats` manually). On geocode-enabled builds it also enriches map point hovers with the US FIPS code and annotates the spatial-extent summary with the country's continent; the county is always shown in map hovers, with or without --smarter. Only affects `smart`. Applied only with default parsing; inputs using --no-headers or a custom --delimiter fall back to the standard dashboard. | | |  `‑‑hierarchy‑style`  | string | For `smart`, the chart used for the categorical part-to-whole hierarchy panel (built when 2+ low-cardinality dimensions exist). One of: auto (default), treemap, sunburst, icicle. auto follows best practice — a treemap for a shallow 2-level hierarchy (accurate size comparison) and a sunburst for a deep 3-level one (parent child structure); icicle is an opt-in level-aligned alternative. Only affects `smart`. | | -|  `‑‑dictionary`  | string | Use a describegpt Data Dictionary to guide panel selection from each field's semantic role/concept (falling back to its content type) instead of relying on column statistics alone: dimensions and numeric codes (ward, census_tract, zone) become bars, measures get box/correlation/trend panels, date/datetime columns feed the time-series panel (not noisy frequency bars), identifiers / PII / free-text are skipped, and lat/lon feed the map. Field labels are shown as panel subtitles beneath the field-name titles. Columns the dictionary cannot classify still use the statistical heuristic. is one of: "infer" to run describegpt on the input now (with description, infer-content-type, two-pass and jsonschema output; requires an LLM configured) and use its output; or a path to an existing describegpt dictionary file (jsonschema or json). With "infer", the generated dictionary is saved beside the input as .schema.json so you can fine-tune it; if that file already exists, it is reused as-is (skipping the LLM) - edit it to fine-tune, or delete it to force a fresh re-infer. Generation/read failures soft-fall back to the stats-only dashboard. The dictionary also drives the KPI overview row via two optional per-field hints in a property's "x-qsv" object (edit them in the saved schema to fine-tune). A "gauge_range" of [min, max] on a continuous numeric measure renders its KPI tile as a GAUGE on that canonical scale (e.g. [0,1] for a ratio, [0,100] for a percent); qsv keeps it only when the observed data lies within the range, so a mis-scaled range can't draw a misleading dial, and "infer" emits it for canonical-scale measures. A "target" number on a measure renders a "vs target" DELTA against that goal (value minus target) - a GOAL you supply, never a fabricated prior-period baseline, so "infer" never emits it; hand-author it. Only affects `smart`. | | +|  `‑‑dictionary`  | string | Use a describegpt Data Dictionary to guide panel selection from each field's semantic role/concept (falling back to its content type) instead of relying on column statistics alone: dimensions and numeric codes (ward, census_tract, zone) become bars, measures get box/correlation/trend panels, date/datetime columns feed the time-series panel (not noisy frequency bars), identifiers / PII / free-text are skipped, and lat/lon feed the map. Field labels are shown as panel subtitles beneath the field-name titles. Columns the dictionary cannot classify still use the statistical heuristic. is one of: "infer" to run describegpt on the input now (with description, infer-content-type, two-pass and jsonschema output; requires an LLM configured) and use its output; or a path to an existing describegpt dictionary file (jsonschema or json). With "infer", the generated dictionary is saved beside the input as .schema.json so you can fine-tune it; if that file already exists, it is reused as-is (skipping the LLM) - edit it to fine-tune, or delete it to force a fresh re-infer. Generation/read failures soft-fall back to the stats-only dashboard. The dictionary also drives the KPI overview row via two optional per-field hints in a property's "x-qsv" object (edit them in the saved schema to fine-tune). A "gauge_range" of [min, max] on a continuous numeric measure renders its KPI tile as a GAUGE on that canonical scale (e.g. [0,1] for a ratio, [0,100] for a percent); qsv keeps it only when the observed data lies within the range, so a mis-scaled range can't draw a misleading dial, and "infer" emits it for canonical-scale measures. A "target" number on a measure renders a "vs target" DELTA against that goal (value minus target) - a GOAL you supply, never a fabricated prior-period baseline, so "infer" never emits it; hand-author it. The dictionary is also the ONLY source of the pipeline funnel panel, declared in the dataset-level "x-qsv" object as a "relationships" entry with "kind": "pipeline". Two encodings, both hand-editable: stages as COLUMNS - "members" lists the stage columns in process order, WIDEST/UPSTREAM FIRST (note this is the opposite direction from a "kind":"ordered" group, which ascends), e.g. {"kind":"pipeline", "members":["planned_amt","committed_amt","spent_amt"]} stages as ROW VALUES - "stage_column" names the category column, "stages" lists its values in process order, and an optional "value_column" names the measure to sum per stage (omit it to count rows), e.g. {"kind":"pipeline","members":["stage","revenue"], "stage_column":"stage", "stages":["Impression","Click","Lead","Conversion"], "value_column":"revenue"} Declared order is authoritative and is never re-sorted by size, so a stage that outruns its predecessor stays visible instead of being quietly reordered away. A declaration naming a missing column, or a stage that is an average/rate rather than a summable amount, is skipped with a note rather than erroring. Only affects `smart`. | | |  `‑‑dictionary‑context`  | string | Path to a file with extra context about the dataset (a glossary, README, data dictionary, PDF, etc.) forwarded to describegpt as --context-file when `--dictionary infer` generates the dictionary. Better context yields better role/concept/label/grain tags, hence a better dashboard. Ignored unless `--dictionary infer` is used (it does not apply when reading an existing dictionary file). Only affects `smart`. | | |  `‑‑dict‑info`  | flag | When a usable Data Dictionary is available (per --dictionary), add a "Data Dictionary" link beneath the dashboard title and an info icon on each panel title: hovering shows that column's dictionary description; clicking opens a human-friendly rendering of the dictionary in a side drawer NEXT TO the plots (embedded in the dashboard file - no extra file is written), scrolled to and highlighting that column's entry. The drawer is open by default on load and can be dismissed with its close button or Esc. The dictionary page carries a role-tinted table of contents and per-column "View chart" links back to the panels, plus a row of download buttons: the dictionary itself as JSON Schema, the frequency counts the dashboard actually charted, and every generated sidecar this run read (the stats cache and its metadata, the frequency cache when it was reused, and the bivariate stats CSV when freshly written). A sidecar qsv wrote but viz never read - the human-readable .stats.csv - is NOT offered, since nothing can show it describes the same computation the dashboard used. Every file is BUNDLED into the HTML, so anyone you send the dashboard to can download them with no access to your machine; absolute local paths are stripped from the embedded metadata so sharing a dashboard doesn't disclose your directory layout. Sidecars over 4 MB are skipped with a note. The drawer's popout button opens the same document in its own browser tab instead (needs a browser that allows user-initiated pop-ups). HTML output only; ignored with a note when no dictionary is available or when exporting an image. Only affects `smart`. | | |  `‑‑dataset‑pid`  | string | A persistent identifier (PID) for the dataset - typically a full URL such as a DOI () or other citable link. When set, a "PID" row is added to the metadata table at the top of the dashboard. http(s) and mailto values become a clickable link (opened in a new tab); any other scheme is shown as plain text rather than linked. HTML output only. Only affects `smart`. | | diff --git a/src/cmd/describegpt.rs b/src/cmd/describegpt.rs index f407519aef..7e9aa4a1ea 100644 --- a/src/cmd/describegpt.rs +++ b/src/cmd/describegpt.rs @@ -184,6 +184,19 @@ describegpt options: "viz smart" dictionary-driven dashboard draws that KPI tile as a GAUGE. (A KPI "vs target" delta uses "x-qsv.target", which is a GOAL you hand-author - never inferred.) + The LLM also infers dataset-level INTER-COLUMN RELATIONSHIPS, emitted + as a "relationships" array (top-level in the JSON dictionary, and in + the dataset-level "x-qsv" object of the JSON Schema one). Each entry + has a "kind" of "joint", "ordered", "correlated" or "pipeline", plus a + "members" list of the field names involved. + A "pipeline" is a process whose stages narrow monotonically - planned + to committed to spent, impressions to clicks to conversions. Its stages + may be separate COLUMNS (listed in "members", upstream first - the + opposite direction from "ordered", which ascends) or the VALUES of one + category column (via "stage_column", an ordered "stages" list, and an + optional "value_column" to sum). "qsv viz smart --dictionary" reads + these to draw its pipeline funnel panel; edit them in the saved schema + to correct or add one. --infer-null-values Also have the LLM propose each field's null sentinels - literal values that stand in for "missing" (e.g. NULL, N/A, -999, 9999-12-31). Emitted into the JSON Schema dictionary's per-property "x-qsv" object, diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index b3d238d7eb..77e4f4f034 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -94,6 +94,21 @@ auto-picks panels, so no --x/--y is needed: with no headline measure. (Overall dataset completeness - the share of non-empty cells - is a quiet "Completeness:" line in the header metadata table, not a KPI tile.) + - pipeline funnel, when the dictionary DECLARES one (see --dictionary). Which + columns are process stages, and in which direction, is semantics rather than + a statistic - no column-name vocabulary settles it and no statistic does + either - so a funnel is drawn ONLY from an explicit declaration, never + guessed. Both encodings are supported: stages held in separate measure + columns, and stages held as values of one category column. Costs one extra + data pass over the declared stages only. + Stage order is the declared order and is never re-sorted by size. For the + column encoding, row-wise containment (does each stage nest inside the one + before it?) is MEASURED and disclosed in the subtitle, but never refuses the + panel: a pipeline whose stages overrun is a finding to name, not a reason to + show nothing. Totals sum over the rows complete across every declared stage, + so they do NOT match `stats.sum`; the subtitle always discloses that + denominator. See also the standalone `qsv viz funnel` chart type, which takes + its stage order from the file and needs no dictionary. - correlation heatmap, when 2+ continuous numeric columns exist (one extra data pass for Pearson correlations). If the strongest pair is at least moderately correlated, a drill-down is added beside it: a scatter (or a 2D @@ -527,6 +542,27 @@ smart options: A "target" number on a measure renders a "vs target" DELTA against that goal (value minus target) - a GOAL you supply, never a fabricated prior-period baseline, so "infer" never emits it; hand-author it. + The dictionary is also the ONLY source of the pipeline funnel panel, + declared in the dataset-level "x-qsv" object as a "relationships" entry + with "kind": "pipeline". Two encodings, both hand-editable: + stages as COLUMNS - "members" lists the stage columns in process + order, WIDEST/UPSTREAM FIRST (note this is the opposite direction + from a "kind":"ordered" group, which ascends), e.g. + {"kind":"pipeline", + "members":["planned_amt","committed_amt","spent_amt"]} + stages as ROW VALUES - "stage_column" names the category column, + "stages" lists its values in process order, and an optional + "value_column" names the measure to sum per stage (omit it to count + rows), e.g. + {"kind":"pipeline","members":["stage","revenue"], + "stage_column":"stage", + "stages":["Impression","Click","Lead","Conversion"], + "value_column":"revenue"} + Declared order is authoritative and is never re-sorted by size, so a + stage that outruns its predecessor stays visible instead of being + quietly reordered away. A declaration naming a missing column, or a + stage that is an average/rate rather than a summable amount, is skipped + with a note rather than erroring. Only affects `smart`. --dictionary-context Path to a file with extra context about the dataset (a glossary, README, data dictionary, PDF, etc.) forwarded to @@ -7388,12 +7424,15 @@ fn build_pie(args: &Args) -> CliResult> { /// `viz funnel`: a stage-by-stage drop-off chart. Sums `--y` per `--x` stage, or counts stage /// occurrences when `--y` is omitted — the same input shape as `viz pie`, and read the same way. /// -/// The two funnels in qsv are complements, not duplicates. `viz smart`'s panel detects a pipeline -/// spread across SEPARATE COLUMNS (planned/committed/spent) and has to infer both the order and -/// the nesting. This one takes a pipeline encoded as ROWS — one row per stage — which the smart -/// path explicitly declines to guess at. Here the user has already answered both questions, so -/// there is nothing to infer: **stage order is first-appearance order in the file**, and no -/// containment check applies, because an explicit `viz funnel` is a request, not a detection. +/// The two funnels in qsv are complements, not duplicates, and the difference is WHERE the stage +/// order comes from. `viz smart`'s panel takes it from a dictionary declaration +/// (`x-qsv.relationships`, `kind: "pipeline"`) and supports both encodings, so it can chart a +/// row-shaped pipeline too — but only when one was declared. This command takes the order from +/// the FILE: **stage order is first-appearance order**, so it needs no dictionary, no LLM and no +/// declaration. An explicit `qsv viz funnel` is a request, not a detection. +/// +/// Neither applies a containment check. Here there is nothing to check against — the user named +/// the stage column — and in `viz smart` containment is measured for disclosure only. /// /// Stages are NOT sorted by value. A stage that outruns its predecessor is a finding the reader /// needs to see, and sorting would quietly hide it. From 0c09dae0d68325f21f2f4e214f1041fd66ab7506 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 11:08:33 +0800 Subject: [PATCH 13/15] viz gallery: regenerate the LLM dashboards (gemma-4-26b-a4b-qat) Only the four `--dictionary infer` figures changed materially; the other twelve dashboards differed solely by the `Compiled:` timestamp and the known base64-stats/`qsv_dict_` noise, so they are reverted rather than committed. No figure gains a funnel panel, which is the correct outcome: none of the gallery datasets is a pipeline, and detection is now dictionary-only. The single funnel in gallery.html remains the standalone `viz funnel` figure. Verified the relationship chain end-to-end against a live LLM rather than assuming it, since "no relationships emitted" and "emitter broken" are indistinguishable from the gallery alone: - the model declares relationships where they exist and does NOT invent pipelines -- sales_sample got `correlated`, world_cities got `joint` + `correlated` - on an unambiguous nested table it emits {"kind":"pipeline","members":["planned_amt","committed_amt","spent_amt"]}, which survives into the JSON Schema root x-qsv and renders as a funnel with bands top-first and totals strictly decreasing (87.9M -> 54.5M -> 30.2M) Co-Authored-By: Claude Opus 4.7 (1M context) --- examples/viz/smart_dict_sunburst.html | 211 ++++++++++++++++++++- examples/viz/smart_dict_treemap.html | 205 +++++++++++++++++++- examples/viz/smart_geospatial.html | 229 +++++++++++++++++++++-- examples/viz/smart_world_choropleth.html | 217 ++++++++++++++++++++- 4 files changed, 825 insertions(+), 37 deletions(-) diff --git a/examples/viz/smart_dict_sunburst.html b/examples/viz/smart_dict_sunburst.html index 9371c3afd1..484a596cbe 100644 --- a/examples/viz/smart_dict_sunburst.html +++ b/examples/viz/smart_dict_sunburst.html @@ -48,7 +48,7 @@

sales_sample.csv — data overview

Rows:500 Columns:13 Completeness:100.0% -Compiled:2026-07-21 12:16 UTC +Compiled:2026-07-26 03:01 UTC
@@ -79,7 +79,7 @@

sales_sample.csv — data overview

@@ -95,7 +95,7 @@

sales_sample.csv — data overview

@@ -103,7 +103,7 @@

sales_sample.csv — data overview

@@ -111,7 +111,7 @@

sales_sample.csv — data overview

@@ -119,7 +119,7 @@

sales_sample.csv — data overview

@@ -127,7 +127,7 @@

sales_sample.csv — data overview

@@ -339,6 +339,190 @@

sales_sample.csv — data overview

setScrollZoom(gd, document.fullscreenElement === gd); } window.__qsvRefitScrollZoom = applyScrollZoom; + // ---- cluster bubbles: legible counts + hover ------------------------------------------------ + // Two plotly gaps to close. (1) It builds the cluster COUNT layer with an EMPTY paint + // ({type:"symbol", paint:{}, layout:{"text-field":"{point_count_abbreviated}"}}), so MapLibre's + // default text-color (#000000) applies and no trace attribute exposes it. (2) `cluster.color` + // defaults to the trace's MARKER color — an identity color doing a magnitude job — so every + // bubble reads the same regardless of size, and black digits on it can land anywhere from + // 2.5:1 (white on the orange marker) to unreadable. + // + // So the bubbles are repainted on the GL instance as a proper SEQUENTIAL ramp keyed to + // point_count (light = few, dark = many), with the label ink picked per step by measured WCAG + // contrast — every pairing below clears 4.5:1 for the 12px count, worst case 6.59:1 light / + // 7.86:1 dark. The ramps are single-hue (blue), lightness-monotone, and each validates against + // its own basemap; the dark-basemap ramp is deliberately paler, since a step dark enough to + // vanish into a dark map fails the mark-vs-surface floor. A surface-colored ring keeps a bubble + // legible over a busy patch of basemap (park, water, motorway) where fill-vs-map contrast alone + // would not hold. + // NOTE: hex colors are single-quoted on purpose — a double-quote immediately followed by a hash + // would close this script's Rust raw-string delimiter. + var CLUSTER_INK = '#0b0b0b', CLUSTER_WHITE = '#ffffff'; + var CLUSTER_STEPS = [10, 100, 1000]; + var CLUSTER_REPAINT_MS = 500; + var CLUSTER_SCHEME = { + light: { + fills: ['#86b6ef', '#5598e7', '#1c5cab', '#0d366b'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE, CLUSTER_WHITE], + ring: '#fafafa' + }, + dark: { + fills: ['#cde2fb', '#9ec5f4', '#6da7ec', '#184f95'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE], + ring: '#121212' + } + }; + // a MapLibre "step" expression over the cluster's point_count, so the ramp is evaluated per + // bubble by the GL layer itself (no per-feature bookkeeping on our side). + function clusterStepExpr(values) { + var e = ["step", ["get", "point_count"], values[0]]; + for (var i = 0; i < CLUSTER_STEPS.length; i++) e.push(CLUSTER_STEPS[i], values[i + 1]); + return e; + } + // Layers are (re)created by plotly whenever `cluster.enabled` flips, so ids are looked up by + // suffix each time rather than cached. "-cluster" never matches "-cluster-count" (different + // trailing 8 chars), so the circle and count layers stay distinct. + function clusterLayerIds(map, suffix) { + var style; + try { style = map.getStyle(); } catch (e) { return []; } + var layers = (style && style.layers) || []; + return layers.filter(function (l) { + return l && typeof l.id === "string" && l.id.slice(-suffix.length) === suffix; + }).map(function (l) { return l.id; }); + } + function paintClusters(map, isDark) { + var scheme = isDark ? CLUSTER_SCHEME.dark : CLUSTER_SCHEME.light; + clusterLayerIds(map, "-cluster").forEach(function (id) { + try { + map.setPaintProperty(id, "circle-color", clusterStepExpr(scheme.fills)); + map.setPaintProperty(id, "circle-stroke-color", scheme.ring); + map.setPaintProperty(id, "circle-stroke-width", 1.5); + } catch (e) {} + }); + clusterLayerIds(map, "-cluster-count").forEach(function (id) { + try { + map.setPaintProperty(id, "text-color", clusterStepExpr(scheme.texts)); + // MapLibre drops a symbol that collides with another label, and plotly sets no overlap + // policy — so a count silently disappeared whenever its bubble sat under a basemap place + // label, leaving an unlabelled blob (the number is the entire point of the bubble). Pin it: + // always draw the count, and don't let it suppress the basemap's own labels either. + map.setLayoutProperty(id, "text-allow-overlap", true); + map.setLayoutProperty(id, "text-ignore-placement", true); + } catch (e) {} + }); + } + // WHEN to paint is the hard part: plotly creates the cluster layers only when `cluster.enabled` + // flips on, and there is no event that reliably lands after that. `styledata` and `plotly_restyle` + // both fire well BEFORE the layers exist (on a heavy dashboard the gap outran a bounded retry, and + // the ramp silently didn't take), and MapLibre's `idle` never fires at all under plotly's usage + // (measured: 0 firings on a 28-panel dashboard, even after a pan). So don't guess — poll a cheap + // predicate and repaint whenever the layers are found unpainted. Our ramp is a step EXPRESSION (an + // array) while plotly's default is a plain color string, so "needs paint" is a type check, and the + // scan short-circuits to false on the common case of a map with no cluster layers at all. + function clustersNeedPaint(map) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return false; + var v; + try { v = map.getPaintProperty(ids[0], "circle-color"); } catch (e) { return false; } + return !Array.isArray(v); + } + // plotly gives cluster bubbles NO hover: it filters clustered features out of the hover-bearing + // circle layer (["!", ["has", "point_count"]]) and never registers the -cluster layers with its + // hover system. So supply our own tooltip — a plain positioned div in the map container (the + // maplibregl namespace is bundled but not published as a global, so Popup isn't reachable). + function clusterTip(map) { + if (map.__qsvClusterTip) return map.__qsvClusterTip; + var el = document.createElement("div"); + el.style.cssText = "position:absolute;z-index:5;display:none;pointer-events:none;" + + "padding:3px 7px;border-radius:4px;white-space:nowrap;" + + "font:12px/1.35 Helvetica Neue, Helvetica, Arial, sans-serif;" + + "color:#fff;background:rgba(0,0,0,.78);box-shadow:0 1px 3px rgba(0,0,0,.3)"; + try { map.getContainer().appendChild(el); } catch (e) { return null; } + map.__qsvClusterTip = el; + return el; + } + function installClusterUi(map, isDark) { + // keyed on the GL instance: a theme flip / fullscreen re-render builds a NEW map, which + // re-installs (picking up that render's basemap mode), while repeated calls against the same + // instance are no-ops. + if (map.__qsvClusterUi) return; + map.__qsvClusterUi = true; + paintClusters(map, isDark); + // the cluster layers only exist while clustering is ON, so re-assert on every render settle + // (see clustersNeedPaint) rather than trying to catch the moment they are added. + // Repaint on a slow tick rather than on an event (see clustersNeedPaint): this covers every path + // that rebuilds the layers — the "Clusters/Points" toggle, toggling it back off and on, the + // extent buttons — with one mechanism. The tick clears itself once plotly discards this map + // (a theme flip builds a new one, which gets its own install and its own tick), so no interval + // outlives its map. Painting is a no-op unless the layers are actually found unpainted. + var tick = setInterval(function () { + var alive = true; + try { if (!map.getStyle()) alive = false; } catch (e) { alive = false; } + if (!alive) { clearInterval(tick); return; } + if (clustersNeedPaint(map)) paintClusters(map, isDark); + }, CLUSTER_REPAINT_MS); + var tip = clusterTip(map); + if (!tip) return; + function hide() { + tip.style.display = "none"; + try { map.getCanvas().style.cursor = ""; } catch (e) {} + } + function clusterAt(pt) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return null; + var hits; + try { hits = map.queryRenderedFeatures(pt, { layers: ids }); } catch (e) { return null; } + return (hits && hits[0]) || null; + } + map.on("mousemove", function (e) { + var f = clusterAt(e.point); + var n = f && f.properties && f.properties.point_count; + if (typeof n !== "number") { hide(); return; } + tip.textContent = n.toLocaleString() + (n === 1 ? " point" : " points") + " - click to zoom in"; + tip.style.display = "block"; + tip.style.left = (e.point.x + 12) + "px"; + tip.style.top = (e.point.y + 12) + "px"; + try { map.getCanvas().style.cursor = "pointer"; } catch (err) {} + }); + map.on("mouseout", hide); + map.on("click", function (e) { + var f = clusterAt(e.point); + if (!f || !f.properties || typeof f.properties.cluster_id !== "number") return; + var src; + try { src = map.getSource(f.source); } catch (err) { return; } + if (!src || typeof src.getClusterExpansionZoom !== "function") return; + var center = f.geometry && f.geometry.coordinates; + var fly = function (z) { + if (typeof z !== "number" || !center) return; + hide(); + try { map.easeTo({ center: center, zoom: z }); } catch (err) {} + }; + // maplibre-gl returns a Promise in 3+ and takes a node-style callback in 2.x — support both. + try { + var p = src.getClusterExpansionZoom(f.properties.cluster_id, function (err, z) { + if (!err) fly(z); + }); + if (p && p.then) p.then(fly, function () {}); + } catch (err) {} + }); + } + // Same bounded wait as applyScrollZoom: the GL map attaches a frame or two after the render. + function applyClusterUi(gd, tries) { + if (tries === undefined) tries = 20; + var fl = gd._fullLayout || {}; + var keys = mapKeys(gd); + if (!keys.length) return; + var ready = keys.every(function (k) { var sp = fl[k] && fl[k]._subplot; return sp && sp.map; }); + if (!ready && tries > 0) { setTimeout(function () { applyClusterUi(gd, tries - 1); }, 100); return; } + keys.forEach(function (k) { + var sp = fl[k] && fl[k]._subplot, m = sp && sp.map; + // read the basemap mode from the style this render actually used, so a runtime theme flip + // (which re-runs newPlot with the dark/light basemap) re-installs with the matching ramp. + var style = (gd.layout && gd.layout[k] && gd.layout[k].style) || (fl[k] && fl[k].style) || ""; + if (m) installClusterUi(m, /dark/i.test(String(style))); + }); + } + window.__qsvRefitClusterUi = applyClusterUi; // gl3d (3D scene) panels need a DIFFERENT fix than geo/map. plotly's WebGL canvas swallows the // wheel (preventDefault) on EVERY wheel event — even when the scene is created with // scrollZoom:false, which suppresses the zoom but NOT the preventDefault. So a scroll over a 3D @@ -387,6 +571,9 @@

sales_sample.csv — data overview

// regardless of the render config, so a scroll over the map would otherwise pan/zoom it and // swallow the page scroll. applyScrollZoom(gd); + // cluster bubbles: repaint plotly's black-by-default count labels and add hover/click-to-zoom + // (see installClusterUi). No-op for non-map panels and for maps that never cluster. + applyClusterUi(gd); // gl3d panels: stop the WebGL canvas from eating the wheel inline so the page can scroll // (scrollZoom:false suppresses the zoom but not the canvas preventDefault; see above). installGl3dScrollFix(gd); @@ -441,6 +628,7 @@

sales_sample.csv — data overview

})(); + @@ -87,7 +87,7 @@

customer_spend.csv — data overview

@@ -95,7 +95,7 @@

customer_spend.csv — data overview

@@ -275,6 +275,190 @@

customer_spend.csv — data overview

setScrollZoom(gd, document.fullscreenElement === gd); } window.__qsvRefitScrollZoom = applyScrollZoom; + // ---- cluster bubbles: legible counts + hover ------------------------------------------------ + // Two plotly gaps to close. (1) It builds the cluster COUNT layer with an EMPTY paint + // ({type:"symbol", paint:{}, layout:{"text-field":"{point_count_abbreviated}"}}), so MapLibre's + // default text-color (#000000) applies and no trace attribute exposes it. (2) `cluster.color` + // defaults to the trace's MARKER color — an identity color doing a magnitude job — so every + // bubble reads the same regardless of size, and black digits on it can land anywhere from + // 2.5:1 (white on the orange marker) to unreadable. + // + // So the bubbles are repainted on the GL instance as a proper SEQUENTIAL ramp keyed to + // point_count (light = few, dark = many), with the label ink picked per step by measured WCAG + // contrast — every pairing below clears 4.5:1 for the 12px count, worst case 6.59:1 light / + // 7.86:1 dark. The ramps are single-hue (blue), lightness-monotone, and each validates against + // its own basemap; the dark-basemap ramp is deliberately paler, since a step dark enough to + // vanish into a dark map fails the mark-vs-surface floor. A surface-colored ring keeps a bubble + // legible over a busy patch of basemap (park, water, motorway) where fill-vs-map contrast alone + // would not hold. + // NOTE: hex colors are single-quoted on purpose — a double-quote immediately followed by a hash + // would close this script's Rust raw-string delimiter. + var CLUSTER_INK = '#0b0b0b', CLUSTER_WHITE = '#ffffff'; + var CLUSTER_STEPS = [10, 100, 1000]; + var CLUSTER_REPAINT_MS = 500; + var CLUSTER_SCHEME = { + light: { + fills: ['#86b6ef', '#5598e7', '#1c5cab', '#0d366b'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE, CLUSTER_WHITE], + ring: '#fafafa' + }, + dark: { + fills: ['#cde2fb', '#9ec5f4', '#6da7ec', '#184f95'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE], + ring: '#121212' + } + }; + // a MapLibre "step" expression over the cluster's point_count, so the ramp is evaluated per + // bubble by the GL layer itself (no per-feature bookkeeping on our side). + function clusterStepExpr(values) { + var e = ["step", ["get", "point_count"], values[0]]; + for (var i = 0; i < CLUSTER_STEPS.length; i++) e.push(CLUSTER_STEPS[i], values[i + 1]); + return e; + } + // Layers are (re)created by plotly whenever `cluster.enabled` flips, so ids are looked up by + // suffix each time rather than cached. "-cluster" never matches "-cluster-count" (different + // trailing 8 chars), so the circle and count layers stay distinct. + function clusterLayerIds(map, suffix) { + var style; + try { style = map.getStyle(); } catch (e) { return []; } + var layers = (style && style.layers) || []; + return layers.filter(function (l) { + return l && typeof l.id === "string" && l.id.slice(-suffix.length) === suffix; + }).map(function (l) { return l.id; }); + } + function paintClusters(map, isDark) { + var scheme = isDark ? CLUSTER_SCHEME.dark : CLUSTER_SCHEME.light; + clusterLayerIds(map, "-cluster").forEach(function (id) { + try { + map.setPaintProperty(id, "circle-color", clusterStepExpr(scheme.fills)); + map.setPaintProperty(id, "circle-stroke-color", scheme.ring); + map.setPaintProperty(id, "circle-stroke-width", 1.5); + } catch (e) {} + }); + clusterLayerIds(map, "-cluster-count").forEach(function (id) { + try { + map.setPaintProperty(id, "text-color", clusterStepExpr(scheme.texts)); + // MapLibre drops a symbol that collides with another label, and plotly sets no overlap + // policy — so a count silently disappeared whenever its bubble sat under a basemap place + // label, leaving an unlabelled blob (the number is the entire point of the bubble). Pin it: + // always draw the count, and don't let it suppress the basemap's own labels either. + map.setLayoutProperty(id, "text-allow-overlap", true); + map.setLayoutProperty(id, "text-ignore-placement", true); + } catch (e) {} + }); + } + // WHEN to paint is the hard part: plotly creates the cluster layers only when `cluster.enabled` + // flips on, and there is no event that reliably lands after that. `styledata` and `plotly_restyle` + // both fire well BEFORE the layers exist (on a heavy dashboard the gap outran a bounded retry, and + // the ramp silently didn't take), and MapLibre's `idle` never fires at all under plotly's usage + // (measured: 0 firings on a 28-panel dashboard, even after a pan). So don't guess — poll a cheap + // predicate and repaint whenever the layers are found unpainted. Our ramp is a step EXPRESSION (an + // array) while plotly's default is a plain color string, so "needs paint" is a type check, and the + // scan short-circuits to false on the common case of a map with no cluster layers at all. + function clustersNeedPaint(map) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return false; + var v; + try { v = map.getPaintProperty(ids[0], "circle-color"); } catch (e) { return false; } + return !Array.isArray(v); + } + // plotly gives cluster bubbles NO hover: it filters clustered features out of the hover-bearing + // circle layer (["!", ["has", "point_count"]]) and never registers the -cluster layers with its + // hover system. So supply our own tooltip — a plain positioned div in the map container (the + // maplibregl namespace is bundled but not published as a global, so Popup isn't reachable). + function clusterTip(map) { + if (map.__qsvClusterTip) return map.__qsvClusterTip; + var el = document.createElement("div"); + el.style.cssText = "position:absolute;z-index:5;display:none;pointer-events:none;" + + "padding:3px 7px;border-radius:4px;white-space:nowrap;" + + "font:12px/1.35 Helvetica Neue, Helvetica, Arial, sans-serif;" + + "color:#fff;background:rgba(0,0,0,.78);box-shadow:0 1px 3px rgba(0,0,0,.3)"; + try { map.getContainer().appendChild(el); } catch (e) { return null; } + map.__qsvClusterTip = el; + return el; + } + function installClusterUi(map, isDark) { + // keyed on the GL instance: a theme flip / fullscreen re-render builds a NEW map, which + // re-installs (picking up that render's basemap mode), while repeated calls against the same + // instance are no-ops. + if (map.__qsvClusterUi) return; + map.__qsvClusterUi = true; + paintClusters(map, isDark); + // the cluster layers only exist while clustering is ON, so re-assert on every render settle + // (see clustersNeedPaint) rather than trying to catch the moment they are added. + // Repaint on a slow tick rather than on an event (see clustersNeedPaint): this covers every path + // that rebuilds the layers — the "Clusters/Points" toggle, toggling it back off and on, the + // extent buttons — with one mechanism. The tick clears itself once plotly discards this map + // (a theme flip builds a new one, which gets its own install and its own tick), so no interval + // outlives its map. Painting is a no-op unless the layers are actually found unpainted. + var tick = setInterval(function () { + var alive = true; + try { if (!map.getStyle()) alive = false; } catch (e) { alive = false; } + if (!alive) { clearInterval(tick); return; } + if (clustersNeedPaint(map)) paintClusters(map, isDark); + }, CLUSTER_REPAINT_MS); + var tip = clusterTip(map); + if (!tip) return; + function hide() { + tip.style.display = "none"; + try { map.getCanvas().style.cursor = ""; } catch (e) {} + } + function clusterAt(pt) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return null; + var hits; + try { hits = map.queryRenderedFeatures(pt, { layers: ids }); } catch (e) { return null; } + return (hits && hits[0]) || null; + } + map.on("mousemove", function (e) { + var f = clusterAt(e.point); + var n = f && f.properties && f.properties.point_count; + if (typeof n !== "number") { hide(); return; } + tip.textContent = n.toLocaleString() + (n === 1 ? " point" : " points") + " - click to zoom in"; + tip.style.display = "block"; + tip.style.left = (e.point.x + 12) + "px"; + tip.style.top = (e.point.y + 12) + "px"; + try { map.getCanvas().style.cursor = "pointer"; } catch (err) {} + }); + map.on("mouseout", hide); + map.on("click", function (e) { + var f = clusterAt(e.point); + if (!f || !f.properties || typeof f.properties.cluster_id !== "number") return; + var src; + try { src = map.getSource(f.source); } catch (err) { return; } + if (!src || typeof src.getClusterExpansionZoom !== "function") return; + var center = f.geometry && f.geometry.coordinates; + var fly = function (z) { + if (typeof z !== "number" || !center) return; + hide(); + try { map.easeTo({ center: center, zoom: z }); } catch (err) {} + }; + // maplibre-gl returns a Promise in 3+ and takes a node-style callback in 2.x — support both. + try { + var p = src.getClusterExpansionZoom(f.properties.cluster_id, function (err, z) { + if (!err) fly(z); + }); + if (p && p.then) p.then(fly, function () {}); + } catch (err) {} + }); + } + // Same bounded wait as applyScrollZoom: the GL map attaches a frame or two after the render. + function applyClusterUi(gd, tries) { + if (tries === undefined) tries = 20; + var fl = gd._fullLayout || {}; + var keys = mapKeys(gd); + if (!keys.length) return; + var ready = keys.every(function (k) { var sp = fl[k] && fl[k]._subplot; return sp && sp.map; }); + if (!ready && tries > 0) { setTimeout(function () { applyClusterUi(gd, tries - 1); }, 100); return; } + keys.forEach(function (k) { + var sp = fl[k] && fl[k]._subplot, m = sp && sp.map; + // read the basemap mode from the style this render actually used, so a runtime theme flip + // (which re-runs newPlot with the dark/light basemap) re-installs with the matching ramp. + var style = (gd.layout && gd.layout[k] && gd.layout[k].style) || (fl[k] && fl[k].style) || ""; + if (m) installClusterUi(m, /dark/i.test(String(style))); + }); + } + window.__qsvRefitClusterUi = applyClusterUi; // gl3d (3D scene) panels need a DIFFERENT fix than geo/map. plotly's WebGL canvas swallows the // wheel (preventDefault) on EVERY wheel event — even when the scene is created with // scrollZoom:false, which suppresses the zoom but NOT the preventDefault. So a scroll over a 3D @@ -323,6 +507,9 @@

customer_spend.csv — data overview

// regardless of the render config, so a scroll over the map would otherwise pan/zoom it and // swallow the page scroll. applyScrollZoom(gd); + // cluster bubbles: repaint plotly's black-by-default count labels and add hover/click-to-zoom + // (see installClusterUi). No-op for non-map panels and for maps that never cluster. + applyClusterUi(gd); // gl3d panels: stop the WebGL canvas from eating the wheel inline so the page can scroll // (scrollZoom:false suppresses the zoom but not the canvas preventDefault; see above). installGl3dScrollFix(gd); @@ -377,6 +564,7 @@

customer_spend.csv — data overview

})(); + @@ -63,7 +63,7 @@

seismic_events.csv — data overview

Spatial extent: China & Japan · Asia
@@ -80,7 +80,7 @@

seismic_events.csv — data overview

@@ -88,7 +88,7 @@

seismic_events.csv — data overview

@@ -96,7 +96,7 @@

seismic_events.csv — data overview

@@ -104,7 +104,7 @@

seismic_events.csv — data overview

@@ -112,7 +112,7 @@

seismic_events.csv — data overview

@@ -120,7 +120,7 @@

seismic_events.csv — data overview

@@ -128,7 +128,7 @@

seismic_events.csv — data overview

@@ -152,7 +152,7 @@

seismic_events.csv — data overview

@@ -160,7 +160,7 @@

seismic_events.csv — data overview

@@ -168,7 +168,7 @@

seismic_events.csv — data overview

@@ -176,7 +176,7 @@

seismic_events.csv — data overview

@@ -184,7 +184,7 @@

seismic_events.csv — data overview

@@ -348,6 +348,190 @@

seismic_events.csv — data overview

setScrollZoom(gd, document.fullscreenElement === gd); } window.__qsvRefitScrollZoom = applyScrollZoom; + // ---- cluster bubbles: legible counts + hover ------------------------------------------------ + // Two plotly gaps to close. (1) It builds the cluster COUNT layer with an EMPTY paint + // ({type:"symbol", paint:{}, layout:{"text-field":"{point_count_abbreviated}"}}), so MapLibre's + // default text-color (#000000) applies and no trace attribute exposes it. (2) `cluster.color` + // defaults to the trace's MARKER color — an identity color doing a magnitude job — so every + // bubble reads the same regardless of size, and black digits on it can land anywhere from + // 2.5:1 (white on the orange marker) to unreadable. + // + // So the bubbles are repainted on the GL instance as a proper SEQUENTIAL ramp keyed to + // point_count (light = few, dark = many), with the label ink picked per step by measured WCAG + // contrast — every pairing below clears 4.5:1 for the 12px count, worst case 6.59:1 light / + // 7.86:1 dark. The ramps are single-hue (blue), lightness-monotone, and each validates against + // its own basemap; the dark-basemap ramp is deliberately paler, since a step dark enough to + // vanish into a dark map fails the mark-vs-surface floor. A surface-colored ring keeps a bubble + // legible over a busy patch of basemap (park, water, motorway) where fill-vs-map contrast alone + // would not hold. + // NOTE: hex colors are single-quoted on purpose — a double-quote immediately followed by a hash + // would close this script's Rust raw-string delimiter. + var CLUSTER_INK = '#0b0b0b', CLUSTER_WHITE = '#ffffff'; + var CLUSTER_STEPS = [10, 100, 1000]; + var CLUSTER_REPAINT_MS = 500; + var CLUSTER_SCHEME = { + light: { + fills: ['#86b6ef', '#5598e7', '#1c5cab', '#0d366b'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE, CLUSTER_WHITE], + ring: '#fafafa' + }, + dark: { + fills: ['#cde2fb', '#9ec5f4', '#6da7ec', '#184f95'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE], + ring: '#121212' + } + }; + // a MapLibre "step" expression over the cluster's point_count, so the ramp is evaluated per + // bubble by the GL layer itself (no per-feature bookkeeping on our side). + function clusterStepExpr(values) { + var e = ["step", ["get", "point_count"], values[0]]; + for (var i = 0; i < CLUSTER_STEPS.length; i++) e.push(CLUSTER_STEPS[i], values[i + 1]); + return e; + } + // Layers are (re)created by plotly whenever `cluster.enabled` flips, so ids are looked up by + // suffix each time rather than cached. "-cluster" never matches "-cluster-count" (different + // trailing 8 chars), so the circle and count layers stay distinct. + function clusterLayerIds(map, suffix) { + var style; + try { style = map.getStyle(); } catch (e) { return []; } + var layers = (style && style.layers) || []; + return layers.filter(function (l) { + return l && typeof l.id === "string" && l.id.slice(-suffix.length) === suffix; + }).map(function (l) { return l.id; }); + } + function paintClusters(map, isDark) { + var scheme = isDark ? CLUSTER_SCHEME.dark : CLUSTER_SCHEME.light; + clusterLayerIds(map, "-cluster").forEach(function (id) { + try { + map.setPaintProperty(id, "circle-color", clusterStepExpr(scheme.fills)); + map.setPaintProperty(id, "circle-stroke-color", scheme.ring); + map.setPaintProperty(id, "circle-stroke-width", 1.5); + } catch (e) {} + }); + clusterLayerIds(map, "-cluster-count").forEach(function (id) { + try { + map.setPaintProperty(id, "text-color", clusterStepExpr(scheme.texts)); + // MapLibre drops a symbol that collides with another label, and plotly sets no overlap + // policy — so a count silently disappeared whenever its bubble sat under a basemap place + // label, leaving an unlabelled blob (the number is the entire point of the bubble). Pin it: + // always draw the count, and don't let it suppress the basemap's own labels either. + map.setLayoutProperty(id, "text-allow-overlap", true); + map.setLayoutProperty(id, "text-ignore-placement", true); + } catch (e) {} + }); + } + // WHEN to paint is the hard part: plotly creates the cluster layers only when `cluster.enabled` + // flips on, and there is no event that reliably lands after that. `styledata` and `plotly_restyle` + // both fire well BEFORE the layers exist (on a heavy dashboard the gap outran a bounded retry, and + // the ramp silently didn't take), and MapLibre's `idle` never fires at all under plotly's usage + // (measured: 0 firings on a 28-panel dashboard, even after a pan). So don't guess — poll a cheap + // predicate and repaint whenever the layers are found unpainted. Our ramp is a step EXPRESSION (an + // array) while plotly's default is a plain color string, so "needs paint" is a type check, and the + // scan short-circuits to false on the common case of a map with no cluster layers at all. + function clustersNeedPaint(map) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return false; + var v; + try { v = map.getPaintProperty(ids[0], "circle-color"); } catch (e) { return false; } + return !Array.isArray(v); + } + // plotly gives cluster bubbles NO hover: it filters clustered features out of the hover-bearing + // circle layer (["!", ["has", "point_count"]]) and never registers the -cluster layers with its + // hover system. So supply our own tooltip — a plain positioned div in the map container (the + // maplibregl namespace is bundled but not published as a global, so Popup isn't reachable). + function clusterTip(map) { + if (map.__qsvClusterTip) return map.__qsvClusterTip; + var el = document.createElement("div"); + el.style.cssText = "position:absolute;z-index:5;display:none;pointer-events:none;" + + "padding:3px 7px;border-radius:4px;white-space:nowrap;" + + "font:12px/1.35 Helvetica Neue, Helvetica, Arial, sans-serif;" + + "color:#fff;background:rgba(0,0,0,.78);box-shadow:0 1px 3px rgba(0,0,0,.3)"; + try { map.getContainer().appendChild(el); } catch (e) { return null; } + map.__qsvClusterTip = el; + return el; + } + function installClusterUi(map, isDark) { + // keyed on the GL instance: a theme flip / fullscreen re-render builds a NEW map, which + // re-installs (picking up that render's basemap mode), while repeated calls against the same + // instance are no-ops. + if (map.__qsvClusterUi) return; + map.__qsvClusterUi = true; + paintClusters(map, isDark); + // the cluster layers only exist while clustering is ON, so re-assert on every render settle + // (see clustersNeedPaint) rather than trying to catch the moment they are added. + // Repaint on a slow tick rather than on an event (see clustersNeedPaint): this covers every path + // that rebuilds the layers — the "Clusters/Points" toggle, toggling it back off and on, the + // extent buttons — with one mechanism. The tick clears itself once plotly discards this map + // (a theme flip builds a new one, which gets its own install and its own tick), so no interval + // outlives its map. Painting is a no-op unless the layers are actually found unpainted. + var tick = setInterval(function () { + var alive = true; + try { if (!map.getStyle()) alive = false; } catch (e) { alive = false; } + if (!alive) { clearInterval(tick); return; } + if (clustersNeedPaint(map)) paintClusters(map, isDark); + }, CLUSTER_REPAINT_MS); + var tip = clusterTip(map); + if (!tip) return; + function hide() { + tip.style.display = "none"; + try { map.getCanvas().style.cursor = ""; } catch (e) {} + } + function clusterAt(pt) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return null; + var hits; + try { hits = map.queryRenderedFeatures(pt, { layers: ids }); } catch (e) { return null; } + return (hits && hits[0]) || null; + } + map.on("mousemove", function (e) { + var f = clusterAt(e.point); + var n = f && f.properties && f.properties.point_count; + if (typeof n !== "number") { hide(); return; } + tip.textContent = n.toLocaleString() + (n === 1 ? " point" : " points") + " - click to zoom in"; + tip.style.display = "block"; + tip.style.left = (e.point.x + 12) + "px"; + tip.style.top = (e.point.y + 12) + "px"; + try { map.getCanvas().style.cursor = "pointer"; } catch (err) {} + }); + map.on("mouseout", hide); + map.on("click", function (e) { + var f = clusterAt(e.point); + if (!f || !f.properties || typeof f.properties.cluster_id !== "number") return; + var src; + try { src = map.getSource(f.source); } catch (err) { return; } + if (!src || typeof src.getClusterExpansionZoom !== "function") return; + var center = f.geometry && f.geometry.coordinates; + var fly = function (z) { + if (typeof z !== "number" || !center) return; + hide(); + try { map.easeTo({ center: center, zoom: z }); } catch (err) {} + }; + // maplibre-gl returns a Promise in 3+ and takes a node-style callback in 2.x — support both. + try { + var p = src.getClusterExpansionZoom(f.properties.cluster_id, function (err, z) { + if (!err) fly(z); + }); + if (p && p.then) p.then(fly, function () {}); + } catch (err) {} + }); + } + // Same bounded wait as applyScrollZoom: the GL map attaches a frame or two after the render. + function applyClusterUi(gd, tries) { + if (tries === undefined) tries = 20; + var fl = gd._fullLayout || {}; + var keys = mapKeys(gd); + if (!keys.length) return; + var ready = keys.every(function (k) { var sp = fl[k] && fl[k]._subplot; return sp && sp.map; }); + if (!ready && tries > 0) { setTimeout(function () { applyClusterUi(gd, tries - 1); }, 100); return; } + keys.forEach(function (k) { + var sp = fl[k] && fl[k]._subplot, m = sp && sp.map; + // read the basemap mode from the style this render actually used, so a runtime theme flip + // (which re-runs newPlot with the dark/light basemap) re-installs with the matching ramp. + var style = (gd.layout && gd.layout[k] && gd.layout[k].style) || (fl[k] && fl[k].style) || ""; + if (m) installClusterUi(m, /dark/i.test(String(style))); + }); + } + window.__qsvRefitClusterUi = applyClusterUi; // gl3d (3D scene) panels need a DIFFERENT fix than geo/map. plotly's WebGL canvas swallows the // wheel (preventDefault) on EVERY wheel event — even when the scene is created with // scrollZoom:false, which suppresses the zoom but NOT the preventDefault. So a scroll over a 3D @@ -396,6 +580,9 @@

seismic_events.csv — data overview

// regardless of the render config, so a scroll over the map would otherwise pan/zoom it and // swallow the page scroll. applyScrollZoom(gd); + // cluster bubbles: repaint plotly's black-by-default count labels and add hover/click-to-zoom + // (see installClusterUi). No-op for non-map panels and for maps that never cluster. + applyClusterUi(gd); // gl3d panels: stop the WebGL canvas from eating the wheel inline so the page can scroll // (scrollZoom:false suppresses the zoom but not the canvas preventDefault; see above). installGl3dScrollFix(gd); @@ -450,6 +637,7 @@

seismic_events.csv — data overview

})(); + @@ -79,7 +79,7 @@

world_cities.csv — data overview

@@ -87,7 +87,7 @@

world_cities.csv — data overview

@@ -95,7 +95,7 @@

world_cities.csv — data overview

@@ -103,7 +103,7 @@

world_cities.csv — data overview

@@ -111,7 +111,7 @@

world_cities.csv — data overview

@@ -119,7 +119,7 @@

world_cities.csv — data overview

@@ -135,7 +135,7 @@

world_cities.csv — data overview

@@ -143,7 +143,7 @@

world_cities.csv — data overview

@@ -307,6 +307,190 @@

world_cities.csv — data overview

setScrollZoom(gd, document.fullscreenElement === gd); } window.__qsvRefitScrollZoom = applyScrollZoom; + // ---- cluster bubbles: legible counts + hover ------------------------------------------------ + // Two plotly gaps to close. (1) It builds the cluster COUNT layer with an EMPTY paint + // ({type:"symbol", paint:{}, layout:{"text-field":"{point_count_abbreviated}"}}), so MapLibre's + // default text-color (#000000) applies and no trace attribute exposes it. (2) `cluster.color` + // defaults to the trace's MARKER color — an identity color doing a magnitude job — so every + // bubble reads the same regardless of size, and black digits on it can land anywhere from + // 2.5:1 (white on the orange marker) to unreadable. + // + // So the bubbles are repainted on the GL instance as a proper SEQUENTIAL ramp keyed to + // point_count (light = few, dark = many), with the label ink picked per step by measured WCAG + // contrast — every pairing below clears 4.5:1 for the 12px count, worst case 6.59:1 light / + // 7.86:1 dark. The ramps are single-hue (blue), lightness-monotone, and each validates against + // its own basemap; the dark-basemap ramp is deliberately paler, since a step dark enough to + // vanish into a dark map fails the mark-vs-surface floor. A surface-colored ring keeps a bubble + // legible over a busy patch of basemap (park, water, motorway) where fill-vs-map contrast alone + // would not hold. + // NOTE: hex colors are single-quoted on purpose — a double-quote immediately followed by a hash + // would close this script's Rust raw-string delimiter. + var CLUSTER_INK = '#0b0b0b', CLUSTER_WHITE = '#ffffff'; + var CLUSTER_STEPS = [10, 100, 1000]; + var CLUSTER_REPAINT_MS = 500; + var CLUSTER_SCHEME = { + light: { + fills: ['#86b6ef', '#5598e7', '#1c5cab', '#0d366b'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE, CLUSTER_WHITE], + ring: '#fafafa' + }, + dark: { + fills: ['#cde2fb', '#9ec5f4', '#6da7ec', '#184f95'], + texts: [CLUSTER_INK, CLUSTER_INK, CLUSTER_INK, CLUSTER_WHITE], + ring: '#121212' + } + }; + // a MapLibre "step" expression over the cluster's point_count, so the ramp is evaluated per + // bubble by the GL layer itself (no per-feature bookkeeping on our side). + function clusterStepExpr(values) { + var e = ["step", ["get", "point_count"], values[0]]; + for (var i = 0; i < CLUSTER_STEPS.length; i++) e.push(CLUSTER_STEPS[i], values[i + 1]); + return e; + } + // Layers are (re)created by plotly whenever `cluster.enabled` flips, so ids are looked up by + // suffix each time rather than cached. "-cluster" never matches "-cluster-count" (different + // trailing 8 chars), so the circle and count layers stay distinct. + function clusterLayerIds(map, suffix) { + var style; + try { style = map.getStyle(); } catch (e) { return []; } + var layers = (style && style.layers) || []; + return layers.filter(function (l) { + return l && typeof l.id === "string" && l.id.slice(-suffix.length) === suffix; + }).map(function (l) { return l.id; }); + } + function paintClusters(map, isDark) { + var scheme = isDark ? CLUSTER_SCHEME.dark : CLUSTER_SCHEME.light; + clusterLayerIds(map, "-cluster").forEach(function (id) { + try { + map.setPaintProperty(id, "circle-color", clusterStepExpr(scheme.fills)); + map.setPaintProperty(id, "circle-stroke-color", scheme.ring); + map.setPaintProperty(id, "circle-stroke-width", 1.5); + } catch (e) {} + }); + clusterLayerIds(map, "-cluster-count").forEach(function (id) { + try { + map.setPaintProperty(id, "text-color", clusterStepExpr(scheme.texts)); + // MapLibre drops a symbol that collides with another label, and plotly sets no overlap + // policy — so a count silently disappeared whenever its bubble sat under a basemap place + // label, leaving an unlabelled blob (the number is the entire point of the bubble). Pin it: + // always draw the count, and don't let it suppress the basemap's own labels either. + map.setLayoutProperty(id, "text-allow-overlap", true); + map.setLayoutProperty(id, "text-ignore-placement", true); + } catch (e) {} + }); + } + // WHEN to paint is the hard part: plotly creates the cluster layers only when `cluster.enabled` + // flips on, and there is no event that reliably lands after that. `styledata` and `plotly_restyle` + // both fire well BEFORE the layers exist (on a heavy dashboard the gap outran a bounded retry, and + // the ramp silently didn't take), and MapLibre's `idle` never fires at all under plotly's usage + // (measured: 0 firings on a 28-panel dashboard, even after a pan). So don't guess — poll a cheap + // predicate and repaint whenever the layers are found unpainted. Our ramp is a step EXPRESSION (an + // array) while plotly's default is a plain color string, so "needs paint" is a type check, and the + // scan short-circuits to false on the common case of a map with no cluster layers at all. + function clustersNeedPaint(map) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return false; + var v; + try { v = map.getPaintProperty(ids[0], "circle-color"); } catch (e) { return false; } + return !Array.isArray(v); + } + // plotly gives cluster bubbles NO hover: it filters clustered features out of the hover-bearing + // circle layer (["!", ["has", "point_count"]]) and never registers the -cluster layers with its + // hover system. So supply our own tooltip — a plain positioned div in the map container (the + // maplibregl namespace is bundled but not published as a global, so Popup isn't reachable). + function clusterTip(map) { + if (map.__qsvClusterTip) return map.__qsvClusterTip; + var el = document.createElement("div"); + el.style.cssText = "position:absolute;z-index:5;display:none;pointer-events:none;" + + "padding:3px 7px;border-radius:4px;white-space:nowrap;" + + "font:12px/1.35 Helvetica Neue, Helvetica, Arial, sans-serif;" + + "color:#fff;background:rgba(0,0,0,.78);box-shadow:0 1px 3px rgba(0,0,0,.3)"; + try { map.getContainer().appendChild(el); } catch (e) { return null; } + map.__qsvClusterTip = el; + return el; + } + function installClusterUi(map, isDark) { + // keyed on the GL instance: a theme flip / fullscreen re-render builds a NEW map, which + // re-installs (picking up that render's basemap mode), while repeated calls against the same + // instance are no-ops. + if (map.__qsvClusterUi) return; + map.__qsvClusterUi = true; + paintClusters(map, isDark); + // the cluster layers only exist while clustering is ON, so re-assert on every render settle + // (see clustersNeedPaint) rather than trying to catch the moment they are added. + // Repaint on a slow tick rather than on an event (see clustersNeedPaint): this covers every path + // that rebuilds the layers — the "Clusters/Points" toggle, toggling it back off and on, the + // extent buttons — with one mechanism. The tick clears itself once plotly discards this map + // (a theme flip builds a new one, which gets its own install and its own tick), so no interval + // outlives its map. Painting is a no-op unless the layers are actually found unpainted. + var tick = setInterval(function () { + var alive = true; + try { if (!map.getStyle()) alive = false; } catch (e) { alive = false; } + if (!alive) { clearInterval(tick); return; } + if (clustersNeedPaint(map)) paintClusters(map, isDark); + }, CLUSTER_REPAINT_MS); + var tip = clusterTip(map); + if (!tip) return; + function hide() { + tip.style.display = "none"; + try { map.getCanvas().style.cursor = ""; } catch (e) {} + } + function clusterAt(pt) { + var ids = clusterLayerIds(map, "-cluster"); + if (!ids.length) return null; + var hits; + try { hits = map.queryRenderedFeatures(pt, { layers: ids }); } catch (e) { return null; } + return (hits && hits[0]) || null; + } + map.on("mousemove", function (e) { + var f = clusterAt(e.point); + var n = f && f.properties && f.properties.point_count; + if (typeof n !== "number") { hide(); return; } + tip.textContent = n.toLocaleString() + (n === 1 ? " point" : " points") + " - click to zoom in"; + tip.style.display = "block"; + tip.style.left = (e.point.x + 12) + "px"; + tip.style.top = (e.point.y + 12) + "px"; + try { map.getCanvas().style.cursor = "pointer"; } catch (err) {} + }); + map.on("mouseout", hide); + map.on("click", function (e) { + var f = clusterAt(e.point); + if (!f || !f.properties || typeof f.properties.cluster_id !== "number") return; + var src; + try { src = map.getSource(f.source); } catch (err) { return; } + if (!src || typeof src.getClusterExpansionZoom !== "function") return; + var center = f.geometry && f.geometry.coordinates; + var fly = function (z) { + if (typeof z !== "number" || !center) return; + hide(); + try { map.easeTo({ center: center, zoom: z }); } catch (err) {} + }; + // maplibre-gl returns a Promise in 3+ and takes a node-style callback in 2.x — support both. + try { + var p = src.getClusterExpansionZoom(f.properties.cluster_id, function (err, z) { + if (!err) fly(z); + }); + if (p && p.then) p.then(fly, function () {}); + } catch (err) {} + }); + } + // Same bounded wait as applyScrollZoom: the GL map attaches a frame or two after the render. + function applyClusterUi(gd, tries) { + if (tries === undefined) tries = 20; + var fl = gd._fullLayout || {}; + var keys = mapKeys(gd); + if (!keys.length) return; + var ready = keys.every(function (k) { var sp = fl[k] && fl[k]._subplot; return sp && sp.map; }); + if (!ready && tries > 0) { setTimeout(function () { applyClusterUi(gd, tries - 1); }, 100); return; } + keys.forEach(function (k) { + var sp = fl[k] && fl[k]._subplot, m = sp && sp.map; + // read the basemap mode from the style this render actually used, so a runtime theme flip + // (which re-runs newPlot with the dark/light basemap) re-installs with the matching ramp. + var style = (gd.layout && gd.layout[k] && gd.layout[k].style) || (fl[k] && fl[k].style) || ""; + if (m) installClusterUi(m, /dark/i.test(String(style))); + }); + } + window.__qsvRefitClusterUi = applyClusterUi; // gl3d (3D scene) panels need a DIFFERENT fix than geo/map. plotly's WebGL canvas swallows the // wheel (preventDefault) on EVERY wheel event — even when the scene is created with // scrollZoom:false, which suppresses the zoom but NOT the preventDefault. So a scroll over a 3D @@ -355,6 +539,9 @@

world_cities.csv — data overview

// regardless of the render config, so a scroll over the map would otherwise pan/zoom it and // swallow the page scroll. applyScrollZoom(gd); + // cluster bubbles: repaint plotly's black-by-default count labels and add hover/click-to-zoom + // (see installClusterUi). No-op for non-map panels and for maps that never cluster. + applyClusterUi(gd); // gl3d panels: stop the WebGL canvas from eating the wheel inline so the page can scroll // (scrollZoom:false suppresses the zoom but not the canvas preventDefault; see above). installGl3dScrollFix(gd); @@ -409,6 +596,7 @@

world_cities.csv — data overview

})(); + @@ -88,7 +88,7 @@

seismic_events.csv — data overview

@@ -96,7 +96,7 @@

seismic_events.csv — data overview

@@ -104,7 +104,7 @@

seismic_events.csv — data overview

@@ -112,7 +112,7 @@

seismic_events.csv — data overview

@@ -120,7 +120,7 @@

seismic_events.csv — data overview

@@ -128,7 +128,7 @@

seismic_events.csv — data overview

@@ -136,15 +136,15 @@

seismic_events.csv — data overview

-
-
+
+
@@ -152,7 +152,7 @@

seismic_events.csv — data overview

@@ -160,7 +160,7 @@

seismic_events.csv — data overview

@@ -168,7 +168,7 @@

seismic_events.csv — data overview

@@ -176,15 +176,7 @@

seismic_events.csv — data overview

-
- -
-
-
-
diff --git a/examples/viz/smart_world_events.html b/examples/viz/smart_world_events.html index b559cad544..ef9a1a216f 100644 --- a/examples/viz/smart_world_events.html +++ b/examples/viz/smart_world_events.html @@ -48,14 +48,14 @@

world_events_dated.csv — data overview

Rows:264 Columns:5 Completeness:100.0% -Compiled:2026-07-25 05:12 UTC +Compiled:2026-07-26 03:25 UTC
diff --git a/src/cmd/viz.rs b/src/cmd/viz.rs index 77e4f4f034..936bdd48bc 100644 --- a/src/cmd/viz.rs +++ b/src/cmd/viz.rs @@ -13261,8 +13261,18 @@ fn is_intensive_measure(label: &str, field: &str) -> bool { "elevations", "altitude", "altitudes", + "depth", + "depths", "density", "densities", + // Logarithmic and other non-linear scales, where even the SUM's unit is meaningless: + // adding two Richter magnitudes does not describe anything. `magnitude` joins the + // physical-measurement group above because it fails the same way -- a dictionary that + // tags it `role: measure` (as an LLM readily does, magnitude being a number with no + // obvious rate/percent tell in its name) would otherwise yield "Total Earthquake + // Magnitude", which is exactly the KPI this guard exists to prevent. + "magnitude", + "magnitudes", // Durations and ages/tenures. A per-record SPAN is not additive the way an amount is: // "Total Account Age (Days)" sums a per-customer state into a number that means nothing, // and the same applies to elapsed/latency/runtime style measures. This also keeps the From 0db0e2b37e97693924e2f95bfed31a6ba5fd9386 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 26 Jul 2026 11:39:00 +0800 Subject: [PATCH 15/15] viz gallery: showcase the pipeline funnel on the CPDB dashboard (#4222) Closes the last open item from the funnel work: the gallery demonstrated the standalone `viz funnel` but had nothing showing the smart panel. That gap existed because no reachable dataset had genuinely NESTED stage columns -- a constraint the redesign removed. Containment is now disclosed rather than enforced, so CPDB qualifies precisely BECAUSE its stages do not nest, which makes it the more instructive demo. Adds a curated `nyc_capital_projects_dict.schema.json` (the same hand-authored pattern as allegheny_dogs_dict / sales_kpi_dict, so gallery regeneration stays LLM-free) declaring the pipeline and giving the bands their Planned / Committed / Spent titles. Column descriptions are NYC's own wording, which is what explains the non-nesting. The old caption is REPLACED, not amended -- it actively taught the removed design: "Note what is absent: no pipeline funnel ... the containment gate declines and says so on stderr rather than drawing a funnel the data does not support." There is no containment gate any more, and the panel now draws. The new caption reads the subtitle instead: Spent totals 2.9x Committed because the three are independent aggregates on different bases, and the funnel names it -- "Spent exceeds Committed in 46% of rows" -- rather than refusing. Worth recording: gemma-4-26b-a4b-qat declared this pipeline UNPROMPTED on the raw CSV, in the correct upstream-first order, alongside a correct `joint` grouping for the two agency columns. So `--dictionary infer` alone produces the funnel here; the curated dictionary is for label quality and reproducibility, not to make it work. Co-Authored-By: Claude Opus 4.7 (1M context) --- examples/viz/gallery.html | 3 +- examples/viz/gen_gallery.py | 19 ++++-- .../viz/nyc_capital_projects_dict.schema.json | 59 +++++++++++++++++++ examples/viz/smart_cpdb.html | 44 ++++++++------ 4 files changed, 100 insertions(+), 25 deletions(-) create mode 100644 examples/viz/nyc_capital_projects_dict.schema.json diff --git a/examples/viz/gallery.html b/examples/viz/gallery.html index 9f7be736d2..7ca4f03e0a 100644 --- a/examples/viz/gallery.html +++ b/examples/viz/gallery.html @@ -43,7 +43,8 @@

qsv viz gallery (An Interactive Viz is worth a Million Rows)

-o smart_dashboard_kpi_gauges_target_delta.html
smart dashboard (--smarter)Same auto-profiler with `--smarter`, which runs `qsv moarstats --advanced` itself to enrich the stats cache in one step: the bimodal monthly_spend column renders as a histogram (a box plot would hide its two peaks), and the skewed account_age_days box is annotated with its skew direction and outlier share.
qsv viz smart customer_spend.csv --smarter --max-charts 8 -o smart_dashboard_smarter.html
smart dashboard (--smarter, Gini/Lorenz inequality + log-skew boxes)Medicare payments to individual practitioners (CMS — a 30k sample), with medical_payment and total_patients per provider. These are additive amounts across comparable units, so --smarter recognizes them as inequality measures and adds a Lorenz curve for each (Gini 0.65 / 0.61) — the further the curve bows below the diagonal, the more concentrated the payments. The distribution boxes are skew-aware: a heavily right-skewed money column would squash a linear box into a sliver against its largest values, so viz smart draws it on a log axis instead, keeping the median and quartiles legible.
qsv viz smart cms_medicare_providers.csv --smarter -o smart_dashboard_smarter_gini_lorenz_inequality_log_skew_boxes.html
-
smart dashboard (--smarter, zero-inflated capital pipeline)NYC Capital Projects Database (12,587 projects, sourced from Checkbook NYC), the dataset this dashboard's inequality work was designed against. Its money columns are both extremely concentrated (Gini 0.93–0.96) and heavily zero-inflated, which the Lorenz panels state outright: flat run = 60% zeros, not small values. That long flat opening run is not a mass of small projects — it is the projects with nothing committed or spent yet, a funding-pipeline stage rather than a have-not population. Every Lorenz panel also carries the unit caveat, because a Gini across units as unlike a subway extension and a playground resurfacing is close to tautological and must not be read as inequity.

Note what is absent: no pipeline funnel. The column names look like planned → committed → spent, but the values are not nested (spent totals 2.9× committed — they are independent sums on different bases), so the containment gate declines and says so on stderr rather than drawing a funnel the data does not support.
qsv viz smart nyc_capital_projects.csv --smarter -o smart_dashboard_smarter_zero_inflated_capital_pipeline.html
+
smart dashboard (--smarter, zero-inflated capital pipeline)NYC Capital Projects Database (12,587 projects, sourced from Checkbook NYC), the dataset this dashboard's inequality work was designed against. Its money columns are both extremely concentrated (Gini 0.93–0.96) and heavily zero-inflated, which the Lorenz panels state outright: flat run = 60% zeros, not small values. That long flat opening run is not a mass of small projects — it is the projects with nothing committed or spent yet, a funding-pipeline stage rather than a have-not population. Every Lorenz panel also carries the unit caveat, because a Gini across units as unlike a subway extension and a playground resurfacing is close to tautological and must not be read as inequity.

It also carries the pipeline funnel, declared by nyc_capital_projects_dict.schema.json as an x-qsv.relationships entry of kind: "pipeline". Which columns are stages, and in which direction, is semantics rather than a statistic, so a funnel is only ever drawn from an explicit declaration — never guessed from column names.

Read the subtitle: these stages do not nest. Spent totals 2.9× committed, because the three are independent aggregates on different bases — totalplannedcommit is allocated in the Capital Commitment Plan, while the other two are sums within the City's budget. Rather than refuse the panel, the funnel draws and names the violation: Spent exceeds Committed in 46% of rows. Declared order is never re-sorted by size, so the overrun stays visible instead of being quietly tidied away.
qsv viz smart nyc_capital_projects.csv --smarter --dictionary nyc_capital_projects_dict.schema.json \
+  -o smart_dashboard_smarter_zero_inflated_capital_pipeline.html
barRevenue by region (aggregated sum).
qsv viz bar sales_sample.csv --x region --y revenue --agg sum \
   -o bar.html
bar (animated slider)Revenue by product category, animated over an ordinal column with --slider: each distinct satisfaction rating (1–5) becomes an animation frame, with a ▶ Play/⏸ Pause button and a scrub slider to step through them (Gapminder-style). Axis ranges are pinned across frames so the bars stay comparable frame to frame instead of rescaling. --slider also works on line and scatter, may be split into animated traces with --series, and can accumulate with --slider-cumulative.
qsv viz bar sales_sample.csv --x product_category --y revenue \
diff --git a/examples/viz/gen_gallery.py b/examples/viz/gen_gallery.py
index 86a0ff11a9..4011c12c1b 100755
--- a/examples/viz/gen_gallery.py
+++ b/examples/viz/gen_gallery.py
@@ -486,12 +486,19 @@
      "committed or spent yet, a funding-pipeline stage rather than a have-not population. "
      "Every Lorenz panel also carries the unit caveat, because a Gini across units as unlike a "
      "subway extension and a playground resurfacing is close to tautological and must not be read "
-     "as inequity.

Note what is absent: no pipeline funnel. The column names look " - "like planned → committed → spent, but the values are not nested (spent totals " - "2.9× committed — they are independent sums on different bases), so the " - "containment gate declines and says so on stderr rather than drawing a funnel the data does " - "not support.", - True, ["smart", "nyc_capital_projects.csv", "--smarter"]), + "as inequity.

It also carries the pipeline funnel, declared by " + "nyc_capital_projects_dict.schema.json as an x-qsv.relationships " + "entry of kind: \"pipeline\". Which columns are stages, and in which direction, " + "is semantics rather than a statistic, so a funnel is only ever drawn from an explicit " + "declaration — never guessed from column names.

Read the subtitle: these stages " + "do not nest. Spent totals 2.9× committed, because the three are independent " + "aggregates on different bases — totalplannedcommit is allocated in the " + "Capital Commitment Plan, while the other two are sums within the City's budget. Rather than " + "refuse the panel, the funnel draws and names the violation: " + "Spent exceeds Committed in 46% of rows. Declared order is never re-sorted by " + "size, so the overrun stays visible instead of being quietly tidied away.", + True, ["smart", "nyc_capital_projects.csv", "--smarter", + "--dictionary", "nyc_capital_projects_dict.schema.json"]), ("bar", "Revenue by region (aggregated sum).", False, ["bar", "sales_sample.csv", "--x", "region", "--y", "revenue", "--agg", "sum"]), ("bar (animated slider)", diff --git a/examples/viz/nyc_capital_projects_dict.schema.json b/examples/viz/nyc_capital_projects_dict.schema.json new file mode 100644 index 0000000000..054dba3bab --- /dev/null +++ b/examples/viz/nyc_capital_projects_dict.schema.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "title": "Data Dictionary for nyc_capital_projects.csv", + "description": "NYC Capital Projects Database (CPDB), sourced from NYC Open Data resource fi59-268w. One row per capital project, with the three budget aggregates the Capital Commitment Plan and the City budget track separately.", + "type": "object", + "properties": { + "maprojid": { + "type": "string", + "title": "Project ID", + "description": "Managing-agency project identifier; unique per project.", + "x-qsv": { "qsv_type": "String", "role": "identifier", "concept": "id.natural_key" } + }, + "magencyacro": { + "type": "string", + "title": "Managing Agency", + "description": "Acronym of the agency managing the project.", + "x-qsv": { "qsv_type": "String", "role": "dimension", "concept": "org.agency" } + }, + "magencyname": { + "type": "string", + "title": "Managing Agency Name", + "description": "Full name of the managing agency.", + "x-qsv": { "qsv_type": "String", "role": "dimension", "concept": "org.agency" } + }, + "typecategory": { + "type": "string", + "title": "Project Type", + "description": "Broad category of capital work.", + "x-qsv": { "qsv_type": "String", "role": "dimension", "concept": "category.type" } + }, + "totalplannedcommit": { + "type": "integer", + "title": "Planned", + "description": "Total planned commitments for the project allocated in the Capital Commitment Plan.", + "x-qsv": { "qsv_type": "Integer", "role": "measure", "concept": "measure.amount" } + }, + "commit_total": { + "type": "number", + "title": "Committed", + "description": "Total committed funding associated with the project within the City's budget.", + "x-qsv": { "qsv_type": "Float", "role": "measure", "concept": "measure.amount" } + }, + "spent_total": { + "type": "number", + "title": "Spent", + "description": "Total funding spent associated with the project within the City's budget.", + "x-qsv": { "qsv_type": "Float", "role": "measure", "concept": "measure.amount" } + } + }, + "x-qsv": { + "grain": "one row = one capital project", + "relationships": [ + { + "kind": "pipeline", + "members": ["totalplannedcommit", "commit_total", "spent_total"] + } + ] + } +} diff --git a/examples/viz/smart_cpdb.html b/examples/viz/smart_cpdb.html index 07cb685b74..3593f2fba5 100644 --- a/examples/viz/smart_cpdb.html +++ b/examples/viz/smart_cpdb.html @@ -48,30 +48,30 @@

nyc_capital_projects.csv — data overview

Rows:12,587 Columns:7 Completeness:98.8% -Compiled:2026-07-25 23:28 UTC +Compiled:2026-07-26 03:38 UTC
-
+
-
+
@@ -79,7 +79,7 @@

nyc_capital_projects.csv — data overview

@@ -87,7 +87,7 @@

nyc_capital_projects.csv — data overview

@@ -95,7 +95,7 @@

nyc_capital_projects.csv — data overview

@@ -103,7 +103,7 @@

nyc_capital_projects.csv — data overview

@@ -111,15 +111,15 @@

nyc_capital_projects.csv — data overview

-
-
+
+
@@ -127,7 +127,7 @@

nyc_capital_projects.csv — data overview

@@ -135,7 +135,7 @@

nyc_capital_projects.csv — data overview

@@ -143,7 +143,7 @@

nyc_capital_projects.csv — data overview

@@ -151,7 +151,15 @@

nyc_capital_projects.csv — data overview

+
+ +
+
+
+