krz/lincoln-crimes

Interactive visualizations of crime data in Lincoln, NE.

clone: git clone https://gitbay.org/krz/lincoln-crimes.git

main: assets/js/app.js · raw

    1$(document).ready(function () {
    2	// Graph an initial value
    3	graph("Felony");
    4
    5	// Reset menu and inputs
    6	$("select option").prop("selected", function () {
    7		return this.defaultSelected;
    8	});
    9	$("input").val("");
   10
   11	// Set onclick event to change graphs when a new option is selected
   12	$("select").on("change", function () {
   13		var beginningYear = $("#beginningYear").val();
   14		var endingYear = $("#endingYear").val();
   15		graph(this.value, [beginningYear, endingYear]);
   16	});
   17
   18	// Set onclick event to change graphs when the per capita toggle is toggled
   19	$("#cb1").on("change", function () {
   20		var beginningYear = $("#beginningYear").val();
   21		var endingYear = $("#endingYear").val();
   22		var crime = $("select").val();
   23		graph(crime, [beginningYear, endingYear]);
   24	});
   25
   26	// Set onclick event to change graphs when the years only toggle is toggled
   27	$("#cb2").on("change", function () {
   28		var beginningYear = $("#beginningYear").val();
   29		var endingYear = $("#endingYear").val();
   30		var crime = $("select").val();
   31		graph(crime, [beginningYear, endingYear]);
   32	});
   33
   34	// Set onsubmit event to graph whenever the form is submitted
   35	$("form").submit(function (e) {
   36		e.preventDefault();
   37		var beginningYear = $("#beginningYear").val();
   38		var endingYear = $("#endingYear").val();
   39		var crime = $("select").val();
   40		graph(crime, [beginningYear, endingYear]);
   41	});
   42});
   43
   44function graph(crime, dates) {
   45	var crimeObject = {};
   46	var max;
   47	var i = 0;
   48
   49	if (dates === undefined || dates[0] == "" || dates[1] == "") {
   50		// If the dates are not defined or there aren't two numbers, use default dates
   51		// use yearData if the years only toggle is checked
   52		if ($("#cb2").is(":checked")) {
   53			max = yearData.length;
   54		} else {
   55			max = data.length;
   56		}
   57	} else {
   58		var begDate = parseInt(dates[0]);
   59		var endDate = parseInt(dates[1]);
   60
   61		if ($("#cb2").is(":checked")) {
   62			i = begDate - 1990;
   63			max = endDate - begDate + i + 1;
   64		} else {
   65			// Get the number of years between the dates the user chose and multiply by 12 to get the number of months
   66			i = (begDate - 1990) * 12;
   67			max = (endDate - begDate) * 12 + i;
   68			/* VOLATILE CODE: Only add 5 months for 2020;
   69       * VOLATILE CODE: `max = max + 5` needs to be updated every time new monthly data is added;
   70       * VOLATILE CODE: If all 12 months of data are recorded, `max = max + 12` can replace this if/else statement.
   71      if (endDate == 2020) {
   72        max = max + 5;
   73      } else {
   74        max = max + 12;
   75      }
   76      */
   77			max = max + 12;
   78		}
   79	}
   80
   81	// If both toggles are on, do both
   82	if ($("#cb1").is(":checked") && $("#cb2").is(":checked")) {
   83		for (i; i < max; i++) {
   84			crimeObject[yearData[i].Date] =
   85				yearData[i][crime] / yearData[i].Population;
   86		}
   87	}
   88	// If the per capita toggle is on, divide the crime data by the population for each data point
   89	else if ($("#cb1").is(":checked")) {
   90		for (i; i < max; i++) {
   91			crimeObject[data[i].Date] = data[i][crime] / data[i].Population;
   92		}
   93	}
   94	// If the years only toggle is on, increase the index by 12 each loop
   95	else if ($("#cb2").is(":checked")) {
   96		for (i; i < max; i++) {
   97			crimeObject[yearData[i].Date] = yearData[i][crime];
   98		}
   99	}
  100	// If both toggles are off, just record as normal
  101	else {
  102		for (i; i < max; i++) {
  103			crimeObject[data[i].Date] = data[i][crime];
  104		}
  105	}
  106
  107	Plotly.newPlot(
  108		"chart",
  109		[
  110			{
  111				x: Object.keys(crimeObject),
  112				y: Object.values(crimeObject),
  113				type: "scatter",
  114				line: {
  115					color: "#54B0FB",
  116				},
  117			},
  118		],
  119		{
  120			title: {
  121				text: crime,
  122				font: {
  123					color: "#fff",
  124				},
  125			},
  126			paper_bgcolor: "#202020",
  127			plot_bgcolor: "#202020",
  128			xaxis: {
  129				gridcolor: "#3b3b3b",
  130				zerolinecolor: "#3b3b3b",
  131				linecolor: "#898989",
  132				title: "Month and Year",
  133				titlefont: {
  134					size: 14,
  135					color: "#9d9d9d",
  136				},
  137				tickfont: {
  138					color: "#898989",
  139				},
  140			},
  141			yaxis: {
  142				gridcolor: "#3b3b3b",
  143				zerolinecolor: "#3b3b3b",
  144				linecolor: "#898989",
  145				title: "Number of Crimes",
  146				titlefont: {
  147					size: 14,
  148					color: "#9d9d9d",
  149				},
  150				tickfont: {
  151					color: "#898989",
  152				},
  153			},
  154		},
  155		{
  156			responsive: true,
  157		}
  158	);
  159}
  160
  161const data = [
  162	{
  163		Date: "Jan-90",
  164		Population: "191972",
  165		Felony: "182",
  166		Misdemeanor: "1550",
  167		DWI: "118",
  168		"Traffic Tickets": "2349",
  169		"Traffic Warnings": "4158",
  170		"All Reportable": "669",
  171		"Property Damage": "514",
  172		Injury: "154",
  173		Fatality: "1",
  174		Homicide: "0",
  175		"Rape and Attempted Rape": "11",
  176		Robbery: "9",
  177		"Aggravated Assault": "37",
  178		"Burglary (Residential)": "119",
  179		"Burglary (Non-Residential)": "44",
  180		"Auto Theft": "37",
  181		"All Thefts": "700",
  182		"Stolen Bikes": "31",
  183		"Theft From Vehicles": "0",
  184		Shoplifting: "0",
  185		Vandalism: "355",
  186		Fraud: "108",
  187		Forgery: "73",
  188		Arson: "0",
  189	},
  190	{
  191		Date: "Feb-90",
  192		Population: "191972",
  193		Felony: "106",
  194		Misdemeanor: "1450",
  195		DWI: "128",
  196		"Traffic Tickets": "3323",
  197		"Traffic Warnings": "6077",
  198		"All Reportable": "609",
  199		"Property Damage": "484",
  200		Injury: "125",
  201		Fatality: "0",
  202		Homicide: "0",
  203		"Rape and Attempted Rape": "4",
  204		Robbery: "6",
  205		"Aggravated Assault": "56",
  206		"Burglary (Residential)": "102",
  207		"Burglary (Non-Residential)": "47",
  208		"Auto Theft": "27",
  209		"All Thefts": "564",
  210		"Stolen Bikes": "35",
  211		"Theft From Vehicles": "0",
  212		Shoplifting: "0",
  213		Vandalism: "399",
  214		Fraud: "48",
  215		Forgery: "87",
  216		Arson: "0",
  217	},
  218	{
  219		Date: "Mar-90",
  220		Population: "191972",
  221		Felony: "116",
  222		Misdemeanor: "1822",
  223		DWI: "173",
  224		"Traffic Tickets": "3722",
  225		"Traffic Warnings": "6541",
  226		"All Reportable": "758",
  227		"Property Damage": "562",
  228		Injury: "194",
  229		Fatality: "2",
  230		Homicide: "0",
  231		"Rape and Attempted Rape": "8",
  232		Robbery: "9",
  233		"Aggravated Assault": "44",
  234		"Burglary (Residential)": "107",
  235		"Burglary (Non-Residential)": "47",
  236		"Auto Theft": "33",
  237		"All Thefts": "784",
  238		"Stolen Bikes": "52",
  239		"Theft From Vehicles": "0",
  240		Shoplifting: "0",
  241		Vandalism: "448",
  242		Fraud: "75",
  243		Forgery: "89",
  244		Arson: "0",
  245	},
  246	{
  247		Date: "Apr-90",
  248		Population: "191972",
  249		Felony: "101",
  250		Misdemeanor: "1508",
  251		DWI: "129",
  252		"Traffic Tickets": "3361",
  253		"Traffic Warnings": "6244",
  254		"All Reportable": "617",
  255		"Property Damage": "420",
  256		Injury: "197",
  257		Fatality: "0",
  258		Homicide: "0",
  259		"Rape and Attempted Rape": "9",
  260		Robbery: "6",
  261		"Aggravated Assault": "48",
  262		"Burglary (Residential)": "96",
  263		"Burglary (Non-Residential)": "55",
  264		"Auto Theft": "36",
  265		"All Thefts": "667",
  266		"Stolen Bikes": "53",
  267		"Theft From Vehicles": "0",
  268		Shoplifting: "0",
  269		Vandalism: "458",
  270		Fraud: "112",
  271		Forgery: "89",
  272		Arson: "0",
  273	},
  274	{
  275		Date: "May-90",
  276		Population: "191972",
  277		Felony: "96",
  278		Misdemeanor: "1340",
  279		DWI: "157",
  280		"Traffic Tickets": "3739",
  281		"Traffic Warnings": "6665",
  282		"All Reportable": "688",
  283		"Property Damage": "480",
  284		Injury: "208",
  285		Fatality: "0",
  286		Homicide: "0",
  287		"Rape and Attempted Rape": "11",
  288		Robbery: "11",
  289		"Aggravated Assault": "53",
  290		"Burglary (Residential)": "100",
  291		"Burglary (Non-Residential)": "35",
  292		"Auto Theft": "37",
  293		"All Thefts": "714",
  294		"Stolen Bikes": "60",
  295		"Theft From Vehicles": "0",
  296		Shoplifting: "0",
  297		Vandalism: "395",
  298		Fraud: "123",
  299		Forgery: "64",
  300		Arson: "0",
  301	},
  302	{
  303		Date: "Jun-90",
  304		Population: "191972",
  305		Felony: "89",
  306		Misdemeanor: "1799",
  307		DWI: "141",
  308		"Traffic Tickets": "3293",
  309		"Traffic Warnings": "4340",
  310		"All Reportable": "659",
  311		"Property Damage": "487",
  312		Injury: "171",
  313		Fatality: "1",
  314		Homicide: "0",
  315		"Rape and Attempted Rape": "6",
  316		Robbery: "6",
  317		"Aggravated Assault": "66",
  318		"Burglary (Residential)": "133",
  319		"Burglary (Non-Residential)": "43",
  320		"Auto Theft": "38",
  321		"All Thefts": "872",
  322		"Stolen Bikes": "132",
  323		"Theft From Vehicles": "0",
  324		Shoplifting: "0",
  325		Vandalism: "368",
  326		Fraud: "118",
  327		Forgery: "59",
  328		Arson: "0",
  329	},
  330	{
  331		Date: "Jul-90",
  332		Population: "191972",
  333		Felony: "129",
  334		Misdemeanor: "1815",
  335		DWI: "122",
  336		"Traffic Tickets": "2444",
  337		"Traffic Warnings": "4338",
  338		"All Reportable": "704",
  339		"Property Damage": "506",
  340		Injury: "198",
  341		Fatality: "0",
  342		Homicide: "0",
  343		"Rape and Attempted Rape": "7",
  344		Robbery: "20",
  345		"Aggravated Assault": "66",
  346		"Burglary (Residential)": "148",
  347		"Burglary (Non-Residential)": "56",
  348		"Auto Theft": "54",
  349		"All Thefts": "936",
  350		"Stolen Bikes": "128",
  351		"Theft From Vehicles": "0",
  352		Shoplifting: "0",
  353		Vandalism: "570",
  354		Fraud: "84",
  355		Forgery: "50",
  356		Arson: "0",
  357	},
  358	{
  359		Date: "Aug-90",
  360		Population: "191972",
  361		Felony: "126",
  362		Misdemeanor: "1968",
  363		DWI: "158",
  364		"Traffic Tickets": "3156",
  365		"Traffic Warnings": "4556",
  366		"All Reportable": "711",
  367		"Property Damage": "509",
  368		Injury: "202",
  369		Fatality: "0",
  370		Homicide: "0",
  371		"Rape and Attempted Rape": "9",
  372		Robbery: "11",
  373		"Aggravated Assault": "74",
  374		"Burglary (Residential)": "151",
  375		"Burglary (Non-Residential)": "69",
  376		"Auto Theft": "39",
  377		"All Thefts": "999",
  378		"Stolen Bikes": "137",
  379		"Theft From Vehicles": "0",
  380		Shoplifting: "0",
  381		Vandalism: "503",
  382		Fraud: "96",
  383		Forgery: "90",
  384		Arson: "0",
  385	},
  386	{
  387		Date: "Sep-90",
  388		Population: "191972",
  389		Felony: "114",
  390		Misdemeanor: "1882",
  391		DWI: "194",
  392		"Traffic Tickets": "3463",
  393		"Traffic Warnings": "4174",
  394		"All Reportable": "751",
  395		"Property Damage": "531",
  396		Injury: "218",
  397		Fatality: "2",
  398		Homicide: "2",
  399		"Rape and Attempted Rape": "10",
  400		Robbery: "10",
  401		"Aggravated Assault": "76",
  402		"Burglary (Residential)": "147",
  403		"Burglary (Non-Residential)": "92",
  404		"Auto Theft": "42",
  405		"All Thefts": "964",
  406		"Stolen Bikes": "135",
  407		"Theft From Vehicles": "0",
  408		Shoplifting: "0",
  409		Vandalism: "404",
  410		Fraud: "73",
  411		Forgery: "61",
  412		Arson: "0",
  413	},
  414	{
  415		Date: "Oct-90",
  416		Population: "191972",
  417		Felony: "107",
  418		Misdemeanor: "1707",
  419		DWI: "175",
  420		"Traffic Tickets": "3141",
  421		"Traffic Warnings": "4515",
  422		"All Reportable": "739",
  423		"Property Damage": "533",
  424		Injury: "205",
  425		Fatality: "1",
  426		Homicide: "0",
  427		"Rape and Attempted Rape": "9",
  428		Robbery: "13",
  429		"Aggravated Assault": "68",
  430		"Burglary (Residential)": "146",
  431		"Burglary (Non-Residential)": "56",
  432		"Auto Theft": "32",
  433		"All Thefts": "930",
  434		"Stolen Bikes": "111",
  435		"Theft From Vehicles": "0",
  436		Shoplifting: "0",
  437		Vandalism: "496",
  438		Fraud: "101",
  439		Forgery: "48",
  440		Arson: "0",
  441	},
  442	{
  443		Date: "Nov-90",
  444		Population: "191972",
  445		Felony: "97",
  446		Misdemeanor: "1478",
  447		DWI: "181",
  448		"Traffic Tickets": "3189",
  449		"Traffic Warnings": "4125",
  450		"All Reportable": "647",
  451		"Property Damage": "480",
  452		Injury: "166",
  453		Fatality: "1",
  454		Homicide: "0",
  455		"Rape and Attempted Rape": "8",
  456		Robbery: "7",
  457		"Aggravated Assault": "65",
  458		"Burglary (Residential)": "110",
  459		"Burglary (Non-Residential)": "58",
  460		"Auto Theft": "38",
  461		"All Thefts": "884",
  462		"Stolen Bikes": "75",
  463		"Theft From Vehicles": "0",
  464		Shoplifting: "0",
  465		Vandalism: "528",
  466		Fraud: "77",
  467		Forgery: "33",
  468		Arson: "0",
  469	},
  470	{
  471		Date: "Dec-90",
  472		Population: "191972",
  473		Felony: "108",
  474		Misdemeanor: "1408",
  475		DWI: "318",
  476		"Traffic Tickets": "2687",
  477		"Traffic Warnings": "3224",
  478		"All Reportable": "824",
  479		"Property Damage": "647",
  480		Injury: "176",
  481		Fatality: "1",
  482		Homicide: "1",
  483		"Rape and Attempted Rape": "13",
  484		Robbery: "11",
  485		"Aggravated Assault": "71",
  486		"Burglary (Residential)": "101",
  487		"Burglary (Non-Residential)": "69",
  488		"Auto Theft": "29",
  489		"All Thefts": "926",
  490		"Stolen Bikes": "28",
  491		"Theft From Vehicles": "0",
  492		Shoplifting: "0",
  493		Vandalism: "337",
  494		Fraud: "120",
  495		Forgery: "55",
  496		Arson: "0",
  497	},
  498	{
  499		Date: "Jan-91",
  500		Population: "195270",
  501		Felony: "114",
  502		Misdemeanor: "1326",
  503		DWI: "125",
  504		"Traffic Tickets": "2497",
  505		"Traffic Warnings": "4523",
  506		"All Reportable": "848",
  507		"Property Damage": "662",
  508		Injury: "186",
  509		Fatality: "0",
  510		Homicide: "0",
  511		"Rape and Attempted Rape": "6",
  512		Robbery: "3",
  513		"Aggravated Assault": "49",
  514		"Burglary (Residential)": "120",
  515		"Burglary (Non-Residential)": "44",
  516		"Auto Theft": "26",
  517		"All Thefts": "675",
  518		"Stolen Bikes": "22",
  519		"Theft From Vehicles": "0",
  520		Shoplifting: "0",
  521		Vandalism: "220",
  522		Fraud: "94",
  523		Forgery: "115",
  524		Arson: "0",
  525	},
  526	{
  527		Date: "Feb-91",
  528		Population: "195270",
  529		Felony: "92",
  530		Misdemeanor: "1527",
  531		DWI: "148",
  532		"Traffic Tickets": "2616",
  533		"Traffic Warnings": "4105",
  534		"All Reportable": "542",
  535		"Property Damage": "416",
  536		Injury: "126",
  537		Fatality: "0",
  538		Homicide: "0",
  539		"Rape and Attempted Rape": "9",
  540		Robbery: "8",
  541		"Aggravated Assault": "58",
  542		"Burglary (Residential)": "110",
  543		"Burglary (Non-Residential)": "44",
  544		"Auto Theft": "17",
  545		"All Thefts": "800",
  546		"Stolen Bikes": "54",
  547		"Theft From Vehicles": "0",
  548		Shoplifting: "0",
  549		Vandalism: "314",
  550		Fraud: "213",
  551		Forgery: "130",
  552		Arson: "0",
  553	},
  554	{
  555		Date: "Mar-91",
  556		Population: "195270",
  557		Felony: "104",
  558		Misdemeanor: "1617",
  559		DWI: "114",
  560		"Traffic Tickets": "2741",
  561		"Traffic Warnings": "4684",
  562		"All Reportable": "599",
  563		"Property Damage": "429",
  564		Injury: "170",
  565		Fatality: "0",
  566		Homicide: "0",
  567		"Rape and Attempted Rape": "7",
  568		Robbery: "7",
  569		"Aggravated Assault": "84",
  570		"Burglary (Residential)": "145",
  571		"Burglary (Non-Residential)": "44",
  572		"Auto Theft": "25",
  573		"All Thefts": "930",
  574		"Stolen Bikes": "70",
  575		"Theft From Vehicles": "0",
  576		Shoplifting: "0",
  577		Vandalism: "481",
  578		Fraud: "112",
  579		Forgery: "104",
  580		Arson: "0",
  581	},
  582	{
  583		Date: "Apr-91",
  584		Population: "195270",
  585		Felony: "76",
  586		Misdemeanor: "1515",
  587		DWI: "157",
  588		"Traffic Tickets": "2617",
  589		"Traffic Warnings": "3824",
  590		"All Reportable": "639",
  591		"Property Damage": "475",
  592		Injury: "164",
  593		Fatality: "0",
  594		Homicide: "0",
  595		"Rape and Attempted Rape": "6",
  596		Robbery: "4",
  597		"Aggravated Assault": "72",
  598		"Burglary (Residential)": "146",
  599		"Burglary (Non-Residential)": "43",
  600		"Auto Theft": "38",
  601		"All Thefts": "932",
  602		"Stolen Bikes": "118",
  603		"Theft From Vehicles": "0",
  604		Shoplifting: "0",
  605		Vandalism: "479",
  606		Fraud: "105",
  607		Forgery: "56",
  608		Arson: "0",
  609	},
  610	{
  611		Date: "May-91",
  612		Population: "195270",
  613		Felony: "107",
  614		Misdemeanor: "1623",
  615		DWI: "109",
  616		"Traffic Tickets": "2659",
  617		"Traffic Warnings": "3373",
  618		"All Reportable": "719",
  619		"Property Damage": "504",
  620		Injury: "214",
  621		Fatality: "1",
  622		Homicide: "0",
  623		"Rape and Attempted Rape": "7",
  624		Robbery: "16",
  625		"Aggravated Assault": "73",
  626		"Burglary (Residential)": "175",
  627		"Burglary (Non-Residential)": "48",
  628		"Auto Theft": "28",
  629		"All Thefts": "1019",
  630		"Stolen Bikes": "135",
  631		"Theft From Vehicles": "0",
  632		Shoplifting: "0",
  633		Vandalism: "426",
  634		Fraud: "161",
  635		Forgery: "41",
  636		Arson: "0",
  637	},
  638	{
  639		Date: "Jun-91",
  640		Population: "195270",
  641		Felony: "72",
  642		Misdemeanor: "1472",
  643		DWI: "111",
  644		"Traffic Tickets": "2335",
  645		"Traffic Warnings": "2940",
  646		"All Reportable": "636",
  647		"Property Damage": "447",
  648		Injury: "188",
  649		Fatality: "1",
  650		Homicide: "0",
  651		"Rape and Attempted Rape": "10",
  652		Robbery: "9",
  653		"Aggravated Assault": "88",
  654		"Burglary (Residential)": "148",
  655		"Burglary (Non-Residential)": "50",
  656		"Auto Theft": "42",
  657		"All Thefts": "1045",
  658		"Stolen Bikes": "207",
  659		"Theft From Vehicles": "0",
  660		Shoplifting: "0",
  661		Vandalism: "449",
  662		Fraud: "146",
  663		Forgery: "72",
  664		Arson: "0",
  665	},
  666	{
  667		Date: "Jul-91",
  668		Population: "195270",
  669		Felony: "87",
  670		Misdemeanor: "1511",
  671		DWI: "115",
  672		"Traffic Tickets": "2436",
  673		"Traffic Warnings": "3756",
  674		"All Reportable": "539",
  675		"Property Damage": "377",
  676		Injury: "161",
  677		Fatality: "1",
  678		Homicide: "0",
  679		"Rape and Attempted Rape": "12",
  680		Robbery: "10",
  681		"Aggravated Assault": "79",
  682		"Burglary (Residential)": "148",
  683		"Burglary (Non-Residential)": "73",
  684		"Auto Theft": "52",
  685		"All Thefts": "991",
  686		"Stolen Bikes": "181",
  687		"Theft From Vehicles": "0",
  688		Shoplifting: "0",
  689		Vandalism: "493",
  690		Fraud: "121",
  691		Forgery: "130",
  692		Arson: "0",
  693	},
  694	{
  695		Date: "Aug-91",
  696		Population: "195270",
  697		Felony: "117",
  698		Misdemeanor: "1584",
  699		DWI: "108",
  700		"Traffic Tickets": "2626",
  701		"Traffic Warnings": "3446",
  702		"All Reportable": "671",
  703		"Property Damage": "473",
  704		Injury: "196",
  705		Fatality: "2",
  706		Homicide: "0",
  707		"Rape and Attempted Rape": "7",
  708		Robbery: "7",
  709		"Aggravated Assault": "101",
  710		"Burglary (Residential)": "218",
  711		"Burglary (Non-Residential)": "52",
  712		"Auto Theft": "53",
  713		"All Thefts": "1051",
  714		"Stolen Bikes": "157",
  715		"Theft From Vehicles": "0",
  716		Shoplifting: "0",
  717		Vandalism: "567",
  718		Fraud: "102",
  719		Forgery: "158",
  720		Arson: "0",
  721	},
  722	{
  723		Date: "Sep-91",
  724		Population: "195270",
  725		Felony: "93",
  726		Misdemeanor: "1543",
  727		DWI: "131",
  728		"Traffic Tickets": "2996",
  729		"Traffic Warnings": "3468",
  730		"All Reportable": "628",
  731		"Property Damage": "437",
  732		Injury: "189",
  733		Fatality: "2",
  734		Homicide: "0",
  735		"Rape and Attempted Rape": "9",
  736		Robbery: "12",
  737		"Aggravated Assault": "85",
  738		"Burglary (Residential)": "160",
  739		"Burglary (Non-Residential)": "56",
  740		"Auto Theft": "49",
  741		"All Thefts": "973",
  742		"Stolen Bikes": "146",
  743		"Theft From Vehicles": "0",
  744		Shoplifting: "0",
  745		Vandalism: "471",
  746		Fraud: "138",
  747		Forgery: "89",
  748		Arson: "0",
  749	},
  750	{
  751		Date: "Oct-91",
  752		Population: "195270",
  753		Felony: "88",
  754		Misdemeanor: "1370",
  755		DWI: "126",
  756		"Traffic Tickets": "2755",
  757		"Traffic Warnings": "3224",
  758		"All Reportable": "728",
  759		"Property Damage": "521",
  760		Injury: "207",
  761		Fatality: "0",
  762		Homicide: "0",
  763		"Rape and Attempted Rape": "8",
  764		Robbery: "11",
  765		"Aggravated Assault": "79",
  766		"Burglary (Residential)": "129",
  767		"Burglary (Non-Residential)": "49",
  768		"Auto Theft": "28",
  769		"All Thefts": "1000",
  770		"Stolen Bikes": "108",
  771		"Theft From Vehicles": "0",
  772		Shoplifting: "0",
  773		Vandalism: "562",
  774		Fraud: "117",
  775		Forgery: "154",
  776		Arson: "0",
  777	},
  778	{
  779		Date: "Nov-91",
  780		Population: "195270",
  781		Felony: "82",
  782		Misdemeanor: "1086",
  783		DWI: "125",
  784		"Traffic Tickets": "2181",
  785		"Traffic Warnings": "3179",
  786		"All Reportable": "870",
  787		"Property Damage": "667",
  788		Injury: "203",
  789		Fatality: "0",
  790		Homicide: "0",
  791		"Rape and Attempted Rape": "7",
  792		Robbery: "13",
  793		"Aggravated Assault": "60",
  794		"Burglary (Residential)": "92",
  795		"Burglary (Non-Residential)": "60",
  796		"Auto Theft": "30",
  797		"All Thefts": "678",
  798		"Stolen Bikes": "29",
  799		"Theft From Vehicles": "0",
  800		Shoplifting: "0",
  801		Vandalism: "378",
  802		Fraud: "128",
  803		Forgery: "70",
  804		Arson: "0",
  805	},
  806	{
  807		Date: "Dec-91",
  808		Population: "195270",
  809		Felony: "73",
  810		Misdemeanor: "1320",
  811		DWI: "245",
  812		"Traffic Tickets": "2761",
  813		"Traffic Warnings": "3389",
  814		"All Reportable": "635",
  815		"Property Damage": "465",
  816		Injury: "170",
  817		Fatality: "0",
  818		Homicide: "0",
  819		"Rape and Attempted Rape": "6",
  820		Robbery: "17",
  821		"Aggravated Assault": "60",
  822		"Burglary (Residential)": "132",
  823		"Burglary (Non-Residential)": "46",
  824		"Auto Theft": "41",
  825		"All Thefts": "1058",
  826		"Stolen Bikes": "36",
  827		"Theft From Vehicles": "0",
  828		Shoplifting: "0",
  829		Vandalism: "574",
  830		Fraud: "118",
  831		Forgery: "78",
  832		Arson: "0",
  833	},
  834	{
  835		Date: "Jan-92",
  836		Population: "199021",
  837		Felony: "145",
  838		Misdemeanor: "1672",
  839		DWI: "105",
  840		"Traffic Tickets": "2723",
  841		"Traffic Warnings": "3766",
  842		"All Reportable": "570",
  843		"Property Damage": "416",
  844		Injury: "154",
  845		Fatality: "0",
  846		Homicide: "0",
  847		"Rape and Attempted Rape": "5",
  848		Robbery: "15",
  849		"Aggravated Assault": "71",
  850		"Burglary (Residential)": "128",
  851		"Burglary (Non-Residential)": "62",
  852		"Auto Theft": "30",
  853		"All Thefts": "1019",
  854		"Stolen Bikes": "43",
  855		"Theft From Vehicles": "0",
  856		Shoplifting: "0",
  857		Vandalism: "506",
  858		Fraud: "280",
  859		Forgery: "141",
  860		Arson: "0",
  861	},
  862	{
  863		Date: "Feb-92",
  864		Population: "199021",
  865		Felony: "125",
  866		Misdemeanor: "1638",
  867		DWI: "137",
  868		"Traffic Tickets": "2794",
  869		"Traffic Warnings": "3568",
  870		"All Reportable": "567",
  871		"Property Damage": "425",
  872		Injury: "142",
  873		Fatality: "0",
  874		Homicide: "0",
  875		"Rape and Attempted Rape": "12",
  876		Robbery: "17",
  877		"Aggravated Assault": "82",
  878		"Burglary (Residential)": "139",
  879		"Burglary (Non-Residential)": "36",
  880		"Auto Theft": "53",
  881		"All Thefts": "1012",
  882		"Stolen Bikes": "54",
  883		"Theft From Vehicles": "0",
  884		Shoplifting: "0",
  885		Vandalism: "557",
  886		Fraud: "191",
  887		Forgery: "45",
  888		Arson: "0",
  889	},
  890	{
  891		Date: "Mar-92",
  892		Population: "199021",
  893		Felony: "131",
  894		Misdemeanor: "1875",
  895		DWI: "140",
  896		"Traffic Tickets": "3031",
  897		"Traffic Warnings": "4056",
  898		"All Reportable": "625",
  899		"Property Damage": "458",
  900		Injury: "167",
  901		Fatality: "0",
  902		Homicide: "0",
  903		"Rape and Attempted Rape": "11",
  904		Robbery: "9",
  905		"Aggravated Assault": "65",
  906		"Burglary (Residential)": "138",
  907		"Burglary (Non-Residential)": "57",
  908		"Auto Theft": "44",
  909		"All Thefts": "981",
  910		"Stolen Bikes": "63",
  911		"Theft From Vehicles": "0",
  912		Shoplifting: "0",
  913		Vandalism: "635",
  914		Fraud: "133",
  915		Forgery: "103",
  916		Arson: "0",
  917	},
  918	{
  919		Date: "Apr-92",
  920		Population: "199021",
  921		Felony: "169",
  922		Misdemeanor: "1738",
  923		DWI: "127",
  924		"Traffic Tickets": "3077",
  925		"Traffic Warnings": "3951",
  926		"All Reportable": "620",
  927		"Property Damage": "425",
  928		Injury: "195",
  929		Fatality: "0",
  930		Homicide: "2",
  931		"Rape and Attempted Rape": "11",
  932		Robbery: "6",
  933		"Aggravated Assault": "66",
  934		"Burglary (Residential)": "114",
  935		"Burglary (Non-Residential)": "54",
  936		"Auto Theft": "29",
  937		"All Thefts": "858",
  938		"Stolen Bikes": "97",
  939		"Theft From Vehicles": "0",
  940		Shoplifting: "0",
  941		Vandalism: "453",
  942		Fraud: "79",
  943		Forgery: "99",
  944		Arson: "0",
  945	},
  946	{
  947		Date: "May-92",
  948		Population: "199021",
  949		Felony: "111",
  950		Misdemeanor: "1954",
  951		DWI: "105",
  952		"Traffic Tickets": "3629",
  953		"Traffic Warnings": "4231",
  954		"All Reportable": "607",
  955		"Property Damage": "420",
  956		Injury: "186",
  957		Fatality: "1",
  958		Homicide: "0",
  959		"Rape and Attempted Rape": "11",
  960		Robbery: "9",
  961		"Aggravated Assault": "91",
  962		"Burglary (Residential)": "138",
  963		"Burglary (Non-Residential)": "49",
  964		"Auto Theft": "30",
  965		"All Thefts": "895",
  966		"Stolen Bikes": "116",
  967		"Theft From Vehicles": "0",
  968		Shoplifting: "0",
  969		Vandalism: "476",
  970		Fraud: "72",
  971		Forgery: "74",
  972		Arson: "0",
  973	},
  974	{
  975		Date: "Jun-92",
  976		Population: "199021",
  977		Felony: "117",
  978		Misdemeanor: "1911",
  979		DWI: "89",
  980		"Traffic Tickets": "2918",
  981		"Traffic Warnings": "3533",
  982		"All Reportable": "559",
  983		"Property Damage": "387",
  984		Injury: "172",
  985		Fatality: "0",
  986		Homicide: "1",
  987		"Rape and Attempted Rape": "11",
  988		Robbery: "10",
  989		"Aggravated Assault": "71",
  990		"Burglary (Residential)": "146",
  991		"Burglary (Non-Residential)": "38",
  992		"Auto Theft": "25",
  993		"All Thefts": "988",
  994		"Stolen Bikes": "170",
  995		"Theft From Vehicles": "0",
  996		Shoplifting: "0",
  997		Vandalism: "494",
  998		Fraud: "74",
  999		Forgery: "78",
 1000		Arson: "0",
 1001	},
 1002	{
 1003		Date: "Jul-92",
 1004		Population: "199021",
 1005		Felony: "167",
 1006		Misdemeanor: "1921",
 1007		DWI: "85",
 1008		"Traffic Tickets": "2636",
 1009		"Traffic Warnings": "4100",
 1010		"All Reportable": "566",
 1011		"Property Damage": "390",
 1012		Injury: "175",
 1013		Fatality: "1",
 1014		Homicide: "0",
 1015		"Rape and Attempted Rape": "10",
 1016		Robbery: "9",
 1017		"Aggravated Assault": "97",
 1018		"Burglary (Residential)": "165",
 1019		"Burglary (Non-Residential)": "39",
 1020		"Auto Theft": "44",
 1021		"All Thefts": "1048",
 1022		"Stolen Bikes": "176",
 1023		"Theft From Vehicles": "0",
 1024		Shoplifting: "0",
 1025		Vandalism: "495",
 1026		Fraud: "127",
 1027		Forgery: "72",
 1028		Arson: "0",
 1029	},
 1030	{
 1031		Date: "Aug-92",
 1032		Population: "199021",
 1033		Felony: "130",
 1034		Misdemeanor: "1767",
 1035		DWI: "99",
 1036		"Traffic Tickets": "2711",
 1037		"Traffic Warnings": "3922",
 1038		"All Reportable": "637",
 1039		"Property Damage": "449",
 1040		Injury: "188",
 1041		Fatality: "0",
 1042		Homicide: "2",
 1043		"Rape and Attempted Rape": "12",
 1044		Robbery: "4",
 1045		"Aggravated Assault": "85",
 1046		"Burglary (Residential)": "182",
 1047		"Burglary (Non-Residential)": "60",
 1048		"Auto Theft": "28",
 1049		"All Thefts": "1079",
 1050		"Stolen Bikes": "201",
 1051		"Theft From Vehicles": "0",
 1052		Shoplifting: "0",
 1053		Vandalism: "508",
 1054		Fraud: "149",
 1055		Forgery: "53",
 1056		Arson: "0",
 1057	},
 1058	{
 1059		Date: "Sep-92",
 1060		Population: "199021",
 1061		Felony: "160",
 1062		Misdemeanor: "1824",
 1063		DWI: "90",
 1064		"Traffic Tickets": "2793",
 1065		"Traffic Warnings": "4066",
 1066		"All Reportable": "623",
 1067		"Property Damage": "426",
 1068		Injury: "197",
 1069		Fatality: "0",
 1070		Homicide: "0",
 1071		"Rape and Attempted Rape": "7",
 1072		Robbery: "23",
 1073		"Aggravated Assault": "92",
 1074		"Burglary (Residential)": "128",
 1075		"Burglary (Non-Residential)": "33",
 1076		"Auto Theft": "29",
 1077		"All Thefts": "887",
 1078		"Stolen Bikes": "124",
 1079		"Theft From Vehicles": "0",
 1080		Shoplifting: "0",
 1081		Vandalism: "418",
 1082		Fraud: "126",
 1083		Forgery: "116",
 1084		Arson: "0",
 1085	},
 1086	{
 1087		Date: "Oct-92",
 1088		Population: "199021",
 1089		Felony: "193",
 1090		Misdemeanor: "1804",
 1091		DWI: "93",
 1092		"Traffic Tickets": "2669",
 1093		"Traffic Warnings": "3572",
 1094		"All Reportable": "720",
 1095		"Property Damage": "515",
 1096		Injury: "205",
 1097		Fatality: "0",
 1098		Homicide: "2",
 1099		"Rape and Attempted Rape": "8",
 1100		Robbery: "16",
 1101		"Aggravated Assault": "93",
 1102		"Burglary (Residential)": "155",
 1103		"Burglary (Non-Residential)": "56",
 1104		"Auto Theft": "42",
 1105		"All Thefts": "809",
 1106		"Stolen Bikes": "99",
 1107		"Theft From Vehicles": "0",
 1108		Shoplifting: "0",
 1109		Vandalism: "537",
 1110		Fraud: "98",
 1111		Forgery: "62",
 1112		Arson: "0",
 1113	},
 1114	{
 1115		Date: "Nov-92",
 1116		Population: "199021",
 1117		Felony: "102",
 1118		Misdemeanor: "1446",
 1119		DWI: "110",
 1120		"Traffic Tickets": "2358",
 1121		"Traffic Warnings": "3004",
 1122		"All Reportable": "678",
 1123		"Property Damage": "517",
 1124		Injury: "160",
 1125		Fatality: "1",
 1126		Homicide: "1",
 1127		"Rape and Attempted Rape": "6",
 1128		Robbery: "7",
 1129		"Aggravated Assault": "99",
 1130		"Burglary (Residential)": "96",
 1131		"Burglary (Non-Residential)": "42",
 1132		"Auto Theft": "29",
 1133		"All Thefts": "696",
 1134		"Stolen Bikes": "48",
 1135		"Theft From Vehicles": "0",
 1136		Shoplifting: "0",
 1137		Vandalism: "338",
 1138		Fraud: "85",
 1139		Forgery: "55",
 1140		Arson: "0",
 1141	},
 1142	{
 1143		Date: "Dec-92",
 1144		Population: "199021",
 1145		Felony: "99",
 1146		Misdemeanor: "1255",
 1147		DWI: "109",
 1148		"Traffic Tickets": "2663",
 1149		"Traffic Warnings": "3204",
 1150		"All Reportable": "767",
 1151		"Property Damage": "588",
 1152		Injury: "179",
 1153		Fatality: "0",
 1154		Homicide: "1",
 1155		"Rape and Attempted Rape": "10",
 1156		Robbery: "12",
 1157		"Aggravated Assault": "70",
 1158		"Burglary (Residential)": "123",
 1159		"Burglary (Non-Residential)": "27",
 1160		"Auto Theft": "18",
 1161		"All Thefts": "721",
 1162		"Stolen Bikes": "30",
 1163		"Theft From Vehicles": "0",
 1164		Shoplifting: "0",
 1165		Vandalism: "362",
 1166		Fraud: "86",
 1167		Forgery: "80",
 1168		Arson: "0",
 1169	},
 1170	{
 1171		Date: "Jan-93",
 1172		Population: "202500",
 1173		Felony: "92",
 1174		Misdemeanor: "1363",
 1175		DWI: "82",
 1176		"Traffic Tickets": "2355",
 1177		"Traffic Warnings": "5013",
 1178		"All Reportable": "750",
 1179		"Property Damage": "604",
 1180		Injury: "145",
 1181		Fatality: "1",
 1182		Homicide: "0",
 1183		"Rape and Attempted Rape": "7",
 1184		Robbery: "5",
 1185		"Aggravated Assault": "73",
 1186		"Burglary (Residential)": "74",
 1187		"Burglary (Non-Residential)": "24",
 1188		"Auto Theft": "26",
 1189		"All Thefts": "624",
 1190		"Stolen Bikes": "6",
 1191		"Theft From Vehicles": "0",
 1192		Shoplifting: "0",
 1193		Vandalism: "238",
 1194		Fraud: "94",
 1195		Forgery: "121",
 1196		Arson: "0",
 1197	},
 1198	{
 1199		Date: "Feb-93",
 1200		Population: "202500",
 1201		Felony: "103",
 1202		Misdemeanor: "1250",
 1203		DWI: "94",
 1204		"Traffic Tickets": "2360",
 1205		"Traffic Warnings": "3498",
 1206		"All Reportable": "720",
 1207		"Property Damage": "562",
 1208		Injury: "158",
 1209		Fatality: "0",
 1210		Homicide: "0",
 1211		"Rape and Attempted Rape": "1",
 1212		Robbery: "9",
 1213		"Aggravated Assault": "61",
 1214		"Burglary (Residential)": "64",
 1215		"Burglary (Non-Residential)": "21",
 1216		"Auto Theft": "41",
 1217		"All Thefts": "614",
 1218		"Stolen Bikes": "20",
 1219		"Theft From Vehicles": "0",
 1220		Shoplifting: "0",
 1221		Vandalism: "272",
 1222		Fraud: "156",
 1223		Forgery: "74",
 1224		Arson: "0",
 1225	},
 1226	{
 1227		Date: "Mar-93",
 1228		Population: "202500",
 1229		Felony: "103",
 1230		Misdemeanor: "1570",
 1231		DWI: "109",
 1232		"Traffic Tickets": "3035",
 1233		"Traffic Warnings": "4712",
 1234		"All Reportable": "606",
 1235		"Property Damage": "454",
 1236		Injury: "152",
 1237		Fatality: "0",
 1238		Homicide: "0",
 1239		"Rape and Attempted Rape": "10",
 1240		Robbery: "12",
 1241		"Aggravated Assault": "82",
 1242		"Burglary (Residential)": "76",
 1243		"Burglary (Non-Residential)": "33",
 1244		"Auto Theft": "20",
 1245		"All Thefts": "709",
 1246		"Stolen Bikes": "31",
 1247		"Theft From Vehicles": "0",
 1248		Shoplifting: "0",
 1249		Vandalism: "307",
 1250		Fraud: "86",
 1251		Forgery: "139",
 1252		Arson: "0",
 1253	},
 1254	{
 1255		Date: "Apr-93",
 1256		Population: "202500",
 1257		Felony: "83",
 1258		Misdemeanor: "1590",
 1259		DWI: "88",
 1260		"Traffic Tickets": "2910",
 1261		"Traffic Warnings": "4401",
 1262		"All Reportable": "582",
 1263		"Property Damage": "438",
 1264		Injury: "144",
 1265		Fatality: "0",
 1266		Homicide: "0",
 1267		"Rape and Attempted Rape": "8",
 1268		Robbery: "6",
 1269		"Aggravated Assault": "66",
 1270		"Burglary (Residential)": "102",
 1271		"Burglary (Non-Residential)": "44",
 1272		"Auto Theft": "30",
 1273		"All Thefts": "736",
 1274		"Stolen Bikes": "70",
 1275		"Theft From Vehicles": "0",
 1276		Shoplifting: "0",
 1277		Vandalism: "484",
 1278		Fraud: "147",
 1279		Forgery: "62",
 1280		Arson: "0",
 1281	},
 1282	{
 1283		Date: "May-93",
 1284		Population: "202500",
 1285		Felony: "106",
 1286		Misdemeanor: "1578",
 1287		DWI: "70",
 1288		"Traffic Tickets": "2331",
 1289		"Traffic Warnings": "3634",
 1290		"All Reportable": "629",
 1291		"Property Damage": "444",
 1292		Injury: "185",
 1293		Fatality: "0",
 1294		Homicide: "0",
 1295		"Rape and Attempted Rape": "9",
 1296		Robbery: "9",
 1297		"Aggravated Assault": "58",
 1298		"Burglary (Residential)": "126",
 1299		"Burglary (Non-Residential)": "47",
 1300		"Auto Theft": "44",
 1301		"All Thefts": "884",
 1302		"Stolen Bikes": "91",
 1303		"Theft From Vehicles": "0",
 1304		Shoplifting: "0",
 1305		Vandalism: "444",
 1306		Fraud: "73",
 1307		Forgery: "53",
 1308		Arson: "0",
 1309	},
 1310	{
 1311		Date: "Jun-93",
 1312		Population: "202500",
 1313		Felony: "151",
 1314		Misdemeanor: "1662",
 1315		DWI: "75",
 1316		"Traffic Tickets": "2581",
 1317		"Traffic Warnings": "4141",
 1318		"All Reportable": "604",
 1319		"Property Damage": "419",
 1320		Injury: "185",
 1321		Fatality: "0",
 1322		Homicide: "1",
 1323		"Rape and Attempted Rape": "6",
 1324		Robbery: "5",
 1325		"Aggravated Assault": "73",
 1326		"Burglary (Residential)": "133",
 1327		"Burglary (Non-Residential)": "52",
 1328		"Auto Theft": "33",
 1329		"All Thefts": "905",
 1330		"Stolen Bikes": "142",
 1331		"Theft From Vehicles": "0",
 1332		Shoplifting: "0",
 1333		Vandalism: "436",
 1334		Fraud: "59",
 1335		Forgery: "61",
 1336		Arson: "0",
 1337	},
 1338	{
 1339		Date: "Jul-93",
 1340		Population: "202500",
 1341		Felony: "134",
 1342		Misdemeanor: "1736",
 1343		DWI: "84",
 1344		"Traffic Tickets": "2424",
 1345		"Traffic Warnings": "3915",
 1346		"All Reportable": "634",
 1347		"Property Damage": "456",
 1348		Injury: "178",
 1349		Fatality: "0",
 1350		Homicide: "1",
 1351		"Rape and Attempted Rape": "9",
 1352		Robbery: "12",
 1353		"Aggravated Assault": "91",
 1354		"Burglary (Residential)": "166",
 1355		"Burglary (Non-Residential)": "41",
 1356		"Auto Theft": "32",
 1357		"All Thefts": "976",
 1358		"Stolen Bikes": "169",
 1359		"Theft From Vehicles": "0",
 1360		Shoplifting: "0",
 1361		Vandalism: "452",
 1362		Fraud: "78",
 1363		Forgery: "76",
 1364		Arson: "0",
 1365	},
 1366	{
 1367		Date: "Aug-93",
 1368		Population: "202500",
 1369		Felony: "149",
 1370		Misdemeanor: "1734",
 1371		DWI: "87",
 1372		"Traffic Tickets": "2835",
 1373		"Traffic Warnings": "4619",
 1374		"All Reportable": "643",
 1375		"Property Damage": "453",
 1376		Injury: "189",
 1377		Fatality: "1",
 1378		Homicide: "0",
 1379		"Rape and Attempted Rape": "5",
 1380		Robbery: "12",
 1381		"Aggravated Assault": "74",
 1382		"Burglary (Residential)": "204",
 1383		"Burglary (Non-Residential)": "49",
 1384		"Auto Theft": "53",
 1385		"All Thefts": "1068",
 1386		"Stolen Bikes": "176",
 1387		"Theft From Vehicles": "0",
 1388		Shoplifting: "0",
 1389		Vandalism: "470",
 1390		Fraud: "73",
 1391		Forgery: "88",
 1392		Arson: "0",
 1393	},
 1394	{
 1395		Date: "Sep-93",
 1396		Population: "202500",
 1397		Felony: "159",
 1398		Misdemeanor: "1597",
 1399		DWI: "86",
 1400		"Traffic Tickets": "3806",
 1401		"Traffic Warnings": "6063",
 1402		"All Reportable": "694",
 1403		"Property Damage": "512",
 1404		Injury: "182",
 1405		Fatality: "0",
 1406		Homicide: "1",
 1407		"Rape and Attempted Rape": "7",
 1408		Robbery: "16",
 1409		"Aggravated Assault": "92",
 1410		"Burglary (Residential)": "158",
 1411		"Burglary (Non-Residential)": "52",
 1412		"Auto Theft": "33",
 1413		"All Thefts": "818",
 1414		"Stolen Bikes": "102",
 1415		"Theft From Vehicles": "0",
 1416		Shoplifting: "0",
 1417		Vandalism: "336",
 1418		Fraud: "93",
 1419		Forgery: "92",
 1420		Arson: "0",
 1421	},
 1422	{
 1423		Date: "Oct-93",
 1424		Population: "202500",
 1425		Felony: "150",
 1426		Misdemeanor: "1682",
 1427		DWI: "103",
 1428		"Traffic Tickets": "3479",
 1429		"Traffic Warnings": "4901",
 1430		"All Reportable": "698",
 1431		"Property Damage": "496",
 1432		Injury: "202",
 1433		Fatality: "0",
 1434		Homicide: "0",
 1435		"Rape and Attempted Rape": "11",
 1436		Robbery: "16",
 1437		"Aggravated Assault": "88",
 1438		"Burglary (Residential)": "138",
 1439		"Burglary (Non-Residential)": "38",
 1440		"Auto Theft": "34",
 1441		"All Thefts": "904",
 1442		"Stolen Bikes": "103",
 1443		"Theft From Vehicles": "0",
 1444		Shoplifting: "0",
 1445		Vandalism: "405",
 1446		Fraud: "165",
 1447		Forgery: "90",
 1448		Arson: "0",
 1449	},
 1450	{
 1451		Date: "Nov-93",
 1452		Population: "202500",
 1453		Felony: "119",
 1454		Misdemeanor: "1609",
 1455		DWI: "67",
 1456		"Traffic Tickets": "2672",
 1457		"Traffic Warnings": "3408",
 1458		"All Reportable": "713",
 1459		"Property Damage": "551",
 1460		Injury: "162",
 1461		Fatality: "0",
 1462		Homicide: "0",
 1463		"Rape and Attempted Rape": "3",
 1464		Robbery: "12",
 1465		"Aggravated Assault": "62",
 1466		"Burglary (Residential)": "143",
 1467		"Burglary (Non-Residential)": "37",
 1468		"Auto Theft": "48",
 1469		"All Thefts": "765",
 1470		"Stolen Bikes": "48",
 1471		"Theft From Vehicles": "0",
 1472		Shoplifting: "0",
 1473		Vandalism: "432",
 1474		Fraud: "109",
 1475		Forgery: "111",
 1476		Arson: "0",
 1477	},
 1478	{
 1479		Date: "Dec-93",
 1480		Population: "202500",
 1481		Felony: "123",
 1482		Misdemeanor: "1566",
 1483		DWI: "153",
 1484		"Traffic Tickets": "3203",
 1485		"Traffic Warnings": "4764",
 1486		"All Reportable": "667",
 1487		"Property Damage": "513",
 1488		Injury: "152",
 1489		Fatality: "2",
 1490		Homicide: "0",
 1491		"Rape and Attempted Rape": "6",
 1492		Robbery: "8",
 1493		"Aggravated Assault": "72",
 1494		"Burglary (Residential)": "88",
 1495		"Burglary (Non-Residential)": "54",
 1496		"Auto Theft": "30",
 1497		"All Thefts": "930",
 1498		"Stolen Bikes": "36",
 1499		"Theft From Vehicles": "0",
 1500		Shoplifting: "0",
 1501		Vandalism: "377",
 1502		Fraud: "137",
 1503		Forgery: "145",
 1504		Arson: "0",
 1505	},
 1506	{
 1507		Date: "Jan-94",
 1508		Population: "204493",
 1509		Felony: "117",
 1510		Misdemeanor: "1466",
 1511		DWI: "109",
 1512		"Traffic Tickets": "2907",
 1513		"Traffic Warnings": "4105",
 1514		"All Reportable": "642",
 1515		"Property Damage": "492",
 1516		Injury: "150",
 1517		Fatality: "0",
 1518		Homicide: "0",
 1519		"Rape and Attempted Rape": "7",
 1520		Robbery: "5",
 1521		"Aggravated Assault": "72",
 1522		"Burglary (Residential)": "98",
 1523		"Burglary (Non-Residential)": "42",
 1524		"Auto Theft": "41",
 1525		"All Thefts": "714",
 1526		"Stolen Bikes": "29",
 1527		"Theft From Vehicles": "0",
 1528		Shoplifting: "0",
 1529		Vandalism: "374",
 1530		Fraud: "160",
 1531		Forgery: "77",
 1532		Arson: "0",
 1533	},
 1534	{
 1535		Date: "Feb-94",
 1536		Population: "204493",
 1537		Felony: "100",
 1538		Misdemeanor: "1304",
 1539		DWI: "79",
 1540		"Traffic Tickets": "2657",
 1541		"Traffic Warnings": "3752",
 1542		"All Reportable": "784",
 1543		"Property Damage": "614",
 1544		Injury: "170",
 1545		Fatality: "0",
 1546		Homicide: "0",
 1547		"Rape and Attempted Rape": "7",
 1548		Robbery: "10",
 1549		"Aggravated Assault": "45",
 1550		"Burglary (Residential)": "91",
 1551		"Burglary (Non-Residential)": "31",
 1552		"Auto Theft": "34",
 1553		"All Thefts": "643",
 1554		"Stolen Bikes": "21",
 1555		"Theft From Vehicles": "0",
 1556		Shoplifting: "0",
 1557		Vandalism: "353",
 1558		Fraud: "72",
 1559		Forgery: "74",
 1560		Arson: "0",
 1561	},
 1562	{
 1563		Date: "Mar-94",
 1564		Population: "204493",
 1565		Felony: "173",
 1566		Misdemeanor: "1714",
 1567		DWI: "127",
 1568		"Traffic Tickets": "3179",
 1569		"Traffic Warnings": "4358",
 1570		"All Reportable": "640",
 1571		"Property Damage": "473",
 1572		Injury: "167",
 1573		Fatality: "0",
 1574		Homicide: "0",
 1575		"Rape and Attempted Rape": "8",
 1576		Robbery: "19",
 1577		"Aggravated Assault": "106",
 1578		"Burglary (Residential)": "95",
 1579		"Burglary (Non-Residential)": "34",
 1580		"Auto Theft": "28",
 1581		"All Thefts": "741",
 1582		"Stolen Bikes": "53",
 1583		"Theft From Vehicles": "0",
 1584		Shoplifting: "0",
 1585		Vandalism: "500",
 1586		Fraud: "156",
 1587		Forgery: "88",
 1588		Arson: "0",
 1589	},
 1590	{
 1591		Date: "Apr-94",
 1592		Population: "204493",
 1593		Felony: "122",
 1594		Misdemeanor: "1611",
 1595		DWI: "105",
 1596		"Traffic Tickets": "3356",
 1597		"Traffic Warnings": "4291",
 1598		"All Reportable": "579",
 1599		"Property Damage": "429",
 1600		Injury: "149",
 1601		Fatality: "1",
 1602		Homicide: "2",
 1603		"Rape and Attempted Rape": "9",
 1604		Robbery: "22",
 1605		"Aggravated Assault": "81",
 1606		"Burglary (Residential)": "106",
 1607		"Burglary (Non-Residential)": "42",
 1608		"Auto Theft": "37",
 1609		"All Thefts": "766",
 1610		"Stolen Bikes": "73",
 1611		"Theft From Vehicles": "0",
 1612		Shoplifting: "0",
 1613		Vandalism: "441",
 1614		Fraud: "103",
 1615		Forgery: "76",
 1616		Arson: "0",
 1617	},
 1618	{
 1619		Date: "May-94",
 1620		Population: "204493",
 1621		Felony: "130",
 1622		Misdemeanor: "2008",
 1623		DWI: "99",
 1624		"Traffic Tickets": "3558",
 1625		"Traffic Warnings": "4600",
 1626		"All Reportable": "592",
 1627		"Property Damage": "420",
 1628		Injury: "171",
 1629		Fatality: "1",
 1630		Homicide: "0",
 1631		"Rape and Attempted Rape": "7",
 1632		Robbery: "14",
 1633		"Aggravated Assault": "95",
 1634		"Burglary (Residential)": "117",
 1635		"Burglary (Non-Residential)": "53",
 1636		"Auto Theft": "36",
 1637		"All Thefts": "914",
 1638		"Stolen Bikes": "114",
 1639		"Theft From Vehicles": "0",
 1640		Shoplifting: "0",
 1641		Vandalism: "501",
 1642		Fraud: "90",
 1643		Forgery: "140",
 1644		Arson: "0",
 1645	},
 1646	{
 1647		Date: "Jun-94",
 1648		Population: "204493",
 1649		Felony: "153",
 1650		Misdemeanor: "1787",
 1651		DWI: "95",
 1652		"Traffic Tickets": "2961",
 1653		"Traffic Warnings": "4102",
 1654		"All Reportable": "553",
 1655		"Property Damage": "384",
 1656		Injury: "167",
 1657		Fatality: "2",
 1658		Homicide: "0",
 1659		"Rape and Attempted Rape": "9",
 1660		Robbery: "14",
 1661		"Aggravated Assault": "73",
 1662		"Burglary (Residential)": "143",
 1663		"Burglary (Non-Residential)": "60",
 1664		"Auto Theft": "51",
 1665		"All Thefts": "967",
 1666		"Stolen Bikes": "169",
 1667		"Theft From Vehicles": "0",
 1668		Shoplifting: "0",
 1669		Vandalism: "367",
 1670		Fraud: "147",
 1671		Forgery: "233",
 1672		Arson: "0",
 1673	},
 1674	{
 1675		Date: "Jul-94",
 1676		Population: "204493",
 1677		Felony: "139",
 1678		Misdemeanor: "1921",
 1679		DWI: "96",
 1680		"Traffic Tickets": "3073",
 1681		"Traffic Warnings": "4000",
 1682		"All Reportable": "613",
 1683		"Property Damage": "442",
 1684		Injury: "171",
 1685		Fatality: "0",
 1686		Homicide: "1",
 1687		"Rape and Attempted Rape": "10",
 1688		Robbery: "20",
 1689		"Aggravated Assault": "78",
 1690		"Burglary (Residential)": "167",
 1691		"Burglary (Non-Residential)": "48",
 1692		"Auto Theft": "46",
 1693		"All Thefts": "981",
 1694		"Stolen Bikes": "167",
 1695		"Theft From Vehicles": "0",
 1696		Shoplifting: "0",
 1697		Vandalism: "543",
 1698		Fraud: "69",
 1699		Forgery: "133",
 1700		Arson: "0",
 1701	},
 1702	{
 1703		Date: "Aug-94",
 1704		Population: "204493",
 1705		Felony: "165",
 1706		Misdemeanor: "1910",
 1707		DWI: "107",
 1708		"Traffic Tickets": "3394",
 1709		"Traffic Warnings": "3386",
 1710		"All Reportable": "703",
 1711		"Property Damage": "501",
 1712		Injury: "200",
 1713		Fatality: "2",
 1714		Homicide: "0",
 1715		"Rape and Attempted Rape": "16",
 1716		Robbery: "22",
 1717		"Aggravated Assault": "97",
 1718		"Burglary (Residential)": "151",
 1719		"Burglary (Non-Residential)": "46",
 1720		"Auto Theft": "72",
 1721		"All Thefts": "1029",
 1722		"Stolen Bikes": "158",
 1723		"Theft From Vehicles": "0",
 1724		Shoplifting: "0",
 1725		Vandalism: "533",
 1726		Fraud: "113",
 1727		Forgery: "88",
 1728		Arson: "0",
 1729	},
 1730	{
 1731		Date: "Sep-94",
 1732		Population: "204493",
 1733		Felony: "144",
 1734		Misdemeanor: "1934",
 1735		DWI: "87",
 1736		"Traffic Tickets": "4823",
 1737		"Traffic Warnings": "3420",
 1738		"All Reportable": "718",
 1739		"Property Damage": "501",
 1740		Injury: "217",
 1741		Fatality: "0",
 1742		Homicide: "0",
 1743		"Rape and Attempted Rape": "12",
 1744		Robbery: "8",
 1745		"Aggravated Assault": "104",
 1746		"Burglary (Residential)": "128",
 1747		"Burglary (Non-Residential)": "36",
 1748		"Auto Theft": "57",
 1749		"All Thefts": "926",
 1750		"Stolen Bikes": "110",
 1751		"Theft From Vehicles": "0",
 1752		Shoplifting: "0",
 1753		Vandalism: "449",
 1754		Fraud: "81",
 1755		Forgery: "79",
 1756		Arson: "0",
 1757	},
 1758	{
 1759		Date: "Oct-94",
 1760		Population: "204493",
 1761		Felony: "158",
 1762		Misdemeanor: "1733",
 1763		DWI: "103",
 1764		"Traffic Tickets": "3295",
 1765		"Traffic Warnings": "2692",
 1766		"All Reportable": "767",
 1767		"Property Damage": "545",
 1768		Injury: "222",
 1769		Fatality: "0",
 1770		Homicide: "1",
 1771		"Rape and Attempted Rape": "10",
 1772		Robbery: "13",
 1773		"Aggravated Assault": "78",
 1774		"Burglary (Residential)": "137",
 1775		"Burglary (Non-Residential)": "52",
 1776		"Auto Theft": "45",
 1777		"All Thefts": "972",
 1778		"Stolen Bikes": "97",
 1779		"Theft From Vehicles": "0",
 1780		Shoplifting: "0",
 1781		Vandalism: "559",
 1782		Fraud: "63",
 1783		Forgery: "142",
 1784		Arson: "0",
 1785	},
 1786	{
 1787		Date: "Nov-94",
 1788		Population: "204493",
 1789		Felony: "108",
 1790		Misdemeanor: "1505",
 1791		DWI: "100",
 1792		"Traffic Tickets": "2651",
 1793		"Traffic Warnings": "2741",
 1794		"All Reportable": "666",
 1795		"Property Damage": "483",
 1796		Injury: "182",
 1797		Fatality: "1",
 1798		Homicide: "0",
 1799		"Rape and Attempted Rape": "9",
 1800		Robbery: "16",
 1801		"Aggravated Assault": "75",
 1802		"Burglary (Residential)": "130",
 1803		"Burglary (Non-Residential)": "40",
 1804		"Auto Theft": "39",
 1805		"All Thefts": "813",
 1806		"Stolen Bikes": "40",
 1807		"Theft From Vehicles": "0",
 1808		Shoplifting: "0",
 1809		Vandalism: "532",
 1810		Fraud: "61",
 1811		Forgery: "80",
 1812		Arson: "0",
 1813	},
 1814	{
 1815		Date: "Dec-94",
 1816		Population: "204493",
 1817		Felony: "86",
 1818		Misdemeanor: "1514",
 1819		DWI: "127",
 1820		"Traffic Tickets": "3022",
 1821		"Traffic Warnings": "2698",
 1822		"All Reportable": "904",
 1823		"Property Damage": "668",
 1824		Injury: "235",
 1825		Fatality: "1",
 1826		Homicide: "0",
 1827		"Rape and Attempted Rape": "6",
 1828		Robbery: "15",
 1829		"Aggravated Assault": "59",
 1830		"Burglary (Residential)": "119",
 1831		"Burglary (Non-Residential)": "35",
 1832		"Auto Theft": "34",
 1833		"All Thefts": "792",
 1834		"Stolen Bikes": "25",
 1835		"Theft From Vehicles": "0",
 1836		Shoplifting: "0",
 1837		Vandalism: "405",
 1838		Fraud: "143",
 1839		Forgery: "107",
 1840		Arson: "0",
 1841	},
 1842	{
 1843		Date: "Jan-95",
 1844		Population: "207154",
 1845		Felony: "134",
 1846		Misdemeanor: "1530",
 1847		DWI: "81",
 1848		"Traffic Tickets": "3191",
 1849		"Traffic Warnings": "2879",
 1850		"All Reportable": "736",
 1851		"Property Damage": "567",
 1852		Injury: "169",
 1853		Fatality: "0",
 1854		Homicide: "0",
 1855		"Rape and Attempted Rape": "13",
 1856		Robbery: "11",
 1857		"Aggravated Assault": "92",
 1858		"Burglary (Residential)": "93",
 1859		"Burglary (Non-Residential)": "27",
 1860		"Auto Theft": "31",
 1861		"All Thefts": "768",
 1862		"Stolen Bikes": "16",
 1863		"Theft From Vehicles": "0",
 1864		Shoplifting: "0",
 1865		Vandalism: "349",
 1866		Fraud: "76",
 1867		Forgery: "80",
 1868		Arson: "0",
 1869	},
 1870	{
 1871		Date: "Feb-95",
 1872		Population: "207154",
 1873		Felony: "132",
 1874		Misdemeanor: "1633",
 1875		DWI: "84",
 1876		"Traffic Tickets": "3273",
 1877		"Traffic Warnings": "2987",
 1878		"All Reportable": "619",
 1879		"Property Damage": "472",
 1880		Injury: "147",
 1881		Fatality: "0",
 1882		Homicide: "0",
 1883		"Rape and Attempted Rape": "5",
 1884		Robbery: "9",
 1885		"Aggravated Assault": "54",
 1886		"Burglary (Residential)": "100",
 1887		"Burglary (Non-Residential)": "35",
 1888		"Auto Theft": "35",
 1889		"All Thefts": "714",
 1890		"Stolen Bikes": "35",
 1891		"Theft From Vehicles": "0",
 1892		Shoplifting: "0",
 1893		Vandalism: "328",
 1894		Fraud: "122",
 1895		Forgery: "85",
 1896		Arson: "0",
 1897	},
 1898	{
 1899		Date: "Mar-95",
 1900		Population: "207154",
 1901		Felony: "189",
 1902		Misdemeanor: "1583",
 1903		DWI: "99",
 1904		"Traffic Tickets": "3600",
 1905		"Traffic Warnings": "3388",
 1906		"All Reportable": "636",
 1907		"Property Damage": "463",
 1908		Injury: "173",
 1909		Fatality: "0",
 1910		Homicide: "0",
 1911		"Rape and Attempted Rape": "5",
 1912		Robbery: "12",
 1913		"Aggravated Assault": "86",
 1914		"Burglary (Residential)": "119",
 1915		"Burglary (Non-Residential)": "49",
 1916		"Auto Theft": "26",
 1917		"All Thefts": "743",
 1918		"Stolen Bikes": "49",
 1919		"Theft From Vehicles": "0",
 1920		Shoplifting: "0",
 1921		Vandalism: "411",
 1922		Fraud: "80",
 1923		Forgery: "152",
 1924		Arson: "0",
 1925	},
 1926	{
 1927		Date: "Apr-95",
 1928		Population: "207154",
 1929		Felony: "125",
 1930		Misdemeanor: "1731",
 1931		DWI: "86",
 1932		"Traffic Tickets": "3754",
 1933		"Traffic Warnings": "3321",
 1934		"All Reportable": "655",
 1935		"Property Damage": "482",
 1936		Injury: "173",
 1937		Fatality: "0",
 1938		Homicide: "0",
 1939		"Rape and Attempted Rape": "12",
 1940		Robbery: "10",
 1941		"Aggravated Assault": "73",
 1942		"Burglary (Residential)": "102",
 1943		"Burglary (Non-Residential)": "25",
 1944		"Auto Theft": "22",
 1945		"All Thefts": "820",
 1946		"Stolen Bikes": "60",
 1947		"Theft From Vehicles": "0",
 1948		Shoplifting: "0",
 1949		Vandalism: "482",
 1950		Fraud: "112",
 1951		Forgery: "171",
 1952		Arson: "0",
 1953	},
 1954	{
 1955		Date: "May-95",
 1956		Population: "207154",
 1957		Felony: "185",
 1958		Misdemeanor: "1734",
 1959		DWI: "103",
 1960		"Traffic Tickets": "3661",
 1961		"Traffic Warnings": "1411",
 1962		"All Reportable": "704",
 1963		"Property Damage": "492",
 1964		Injury: "211",
 1965		Fatality: "1",
 1966		Homicide: "0",
 1967		"Rape and Attempted Rape": "8",
 1968		Robbery: "7",
 1969		"Aggravated Assault": "102",
 1970		"Burglary (Residential)": "121",
 1971		"Burglary (Non-Residential)": "38",
 1972		"Auto Theft": "33",
 1973		"All Thefts": "903",
 1974		"Stolen Bikes": "77",
 1975		"Theft From Vehicles": "0",
 1976		Shoplifting: "0",
 1977		Vandalism: "467",
 1978		Fraud: "68",
 1979		Forgery: "195",
 1980		Arson: "0",
 1981	},
 1982	{
 1983		Date: "Jun-95",
 1984		Population: "207154",
 1985		Felony: "161",
 1986		Misdemeanor: "1923",
 1987		DWI: "69",
 1988		"Traffic Tickets": "3272",
 1989		"Traffic Warnings": "4270",
 1990		"All Reportable": "678",
 1991		"Property Damage": "488",
 1992		Injury: "190",
 1993		Fatality: "0",
 1994		Homicide: "0",
 1995		"Rape and Attempted Rape": "2",
 1996		Robbery: "9",
 1997		"Aggravated Assault": "100",
 1998		"Burglary (Residential)": "163",
 1999		"Burglary (Non-Residential)": "24",
 2000		"Auto Theft": "52",
 2001		"All Thefts": "911",
 2002		"Stolen Bikes": "116",
 2003		"Theft From Vehicles": "0",
 2004		Shoplifting: "0",
 2005		Vandalism: "526",
 2006		Fraud: "82",
 2007		Forgery: "177",
 2008		Arson: "0",
 2009	},
 2010	{
 2011		Date: "Jul-95",
 2012		Population: "207154",
 2013		Felony: "132",
 2014		Misdemeanor: "2017",
 2015		DWI: "62",
 2016		"Traffic Tickets": "3108",
 2017		"Traffic Warnings": "2658",
 2018		"All Reportable": "620",
 2019		"Property Damage": "421",
 2020		Injury: "199",
 2021		Fatality: "0",
 2022		Homicide: "1",
 2023		"Rape and Attempted Rape": "12",
 2024		Robbery: "5",
 2025		"Aggravated Assault": "106",
 2026		"Burglary (Residential)": "144",
 2027		"Burglary (Non-Residential)": "40",
 2028		"Auto Theft": "38",
 2029		"All Thefts": "965",
 2030		"Stolen Bikes": "177",
 2031		"Theft From Vehicles": "0",
 2032		Shoplifting: "0",
 2033		Vandalism: "546",
 2034		Fraud: "87",
 2035		Forgery: "97",
 2036		Arson: "0",
 2037	},
 2038	{
 2039		Date: "Aug-95",
 2040		Population: "207154",
 2041		Felony: "146",
 2042		Misdemeanor: "1858",
 2043		DWI: "53",
 2044		"Traffic Tickets": "3680",
 2045		"Traffic Warnings": "3393",
 2046		"All Reportable": "699",
 2047		"Property Damage": "478",
 2048		Injury: "221",
 2049		Fatality: "0",
 2050		Homicide: "0",
 2051		"Rape and Attempted Rape": "8",
 2052		Robbery: "12",
 2053		"Aggravated Assault": "105",
 2054		"Burglary (Residential)": "145",
 2055		"Burglary (Non-Residential)": "42",
 2056		"Auto Theft": "43",
 2057		"All Thefts": "986",
 2058		"Stolen Bikes": "139",
 2059		"Theft From Vehicles": "0",
 2060		Shoplifting: "0",
 2061		Vandalism: "553",
 2062		Fraud: "89",
 2063		Forgery: "145",
 2064		Arson: "0",
 2065	},
 2066	{
 2067		Date: "Sep-95",
 2068		Population: "207154",
 2069		Felony: "121",
 2070		Misdemeanor: "1797",
 2071		DWI: "70",
 2072		"Traffic Tickets": "4918",
 2073		"Traffic Warnings": "2820",
 2074		"All Reportable": "687",
 2075		"Property Damage": "488",
 2076		Injury: "199",
 2077		Fatality: "0",
 2078		Homicide: "0",
 2079		"Rape and Attempted Rape": "9",
 2080		Robbery: "16",
 2081		"Aggravated Assault": "116",
 2082		"Burglary (Residential)": "144",
 2083		"Burglary (Non-Residential)": "37",
 2084		"Auto Theft": "38",
 2085		"All Thefts": "947",
 2086		"Stolen Bikes": "155",
 2087		"Theft From Vehicles": "0",
 2088		Shoplifting: "0",
 2089		Vandalism: "485",
 2090		Fraud: "88",
 2091		Forgery: "129",
 2092		Arson: "0",
 2093	},
 2094	{
 2095		Date: "Oct-95",
 2096		Population: "207154",
 2097		Felony: "131",
 2098		Misdemeanor: "2119",
 2099		DWI: "85",
 2100		"Traffic Tickets": "3697",
 2101		"Traffic Warnings": "2100",
 2102		"All Reportable": "785",
 2103		"Property Damage": "551",
 2104		Injury: "233",
 2105		Fatality: "1",
 2106		Homicide: "0",
 2107		"Rape and Attempted Rape": "8",
 2108		Robbery: "21",
 2109		"Aggravated Assault": "110",
 2110		"Burglary (Residential)": "99",
 2111		"Burglary (Non-Residential)": "40",
 2112		"Auto Theft": "49",
 2113		"All Thefts": "1075",
 2114		"Stolen Bikes": "99",
 2115		"Theft From Vehicles": "0",
 2116		Shoplifting: "0",
 2117		Vandalism: "572",
 2118		Fraud: "82",
 2119		Forgery: "153",
 2120		Arson: "0",
 2121	},
 2122	{
 2123		Date: "Nov-95",
 2124		Population: "207154",
 2125		Felony: "148",
 2126		Misdemeanor: "1666",
 2127		DWI: "82",
 2128		"Traffic Tickets": "4079",
 2129		"Traffic Warnings": "3764",
 2130		"All Reportable": "809",
 2131		"Property Damage": "627",
 2132		Injury: "182",
 2133		Fatality: "0",
 2134		Homicide: "0",
 2135		"Rape and Attempted Rape": "3",
 2136		Robbery: "4",
 2137		"Aggravated Assault": "71",
 2138		"Burglary (Residential)": "91",
 2139		"Burglary (Non-Residential)": "48",
 2140		"Auto Theft": "58",
 2141		"All Thefts": "919",
 2142		"Stolen Bikes": "44",
 2143		"Theft From Vehicles": "0",
 2144		Shoplifting: "0",
 2145		Vandalism: "425",
 2146		Fraud: "38",
 2147		Forgery: "107",
 2148		Arson: "0",
 2149	},
 2150	{
 2151		Date: "Dec-95",
 2152		Population: "207154",
 2153		Felony: "150",
 2154		Misdemeanor: "1542",
 2155		DWI: "103",
 2156		"Traffic Tickets": "3545",
 2157		"Traffic Warnings": "3279",
 2158		"All Reportable": "745",
 2159		"Property Damage": "562",
 2160		Injury: "182",
 2161		Fatality: "1",
 2162		Homicide: "1",
 2163		"Rape and Attempted Rape": "3",
 2164		Robbery: "7",
 2165		"Aggravated Assault": "69",
 2166		"Burglary (Residential)": "80",
 2167		"Burglary (Non-Residential)": "51",
 2168		"Auto Theft": "43",
 2169		"All Thefts": "822",
 2170		"Stolen Bikes": "26",
 2171		"Theft From Vehicles": "0",
 2172		Shoplifting: "0",
 2173		Vandalism: "456",
 2174		Fraud: "74",
 2175		Forgery: "123",
 2176		Arson: "0",
 2177	},
 2178	{
 2179		Date: "Jan-96",
 2180		Population: "209192",
 2181		Felony: "142",
 2182		Misdemeanor: "1497",
 2183		DWI: "98",
 2184		"Traffic Tickets": "3689",
 2185		"Traffic Warnings": "2887",
 2186		"All Reportable": "948",
 2187		"Property Damage": "744",
 2188		Injury: "204",
 2189		Fatality: "0",
 2190		Homicide: "1",
 2191		"Rape and Attempted Rape": "7",
 2192		Robbery: "6",
 2193		"Aggravated Assault": "62",
 2194		"Burglary (Residential)": "93",
 2195		"Burglary (Non-Residential)": "29",
 2196		"Auto Theft": "39",
 2197		"All Thefts": "744",
 2198		"Stolen Bikes": "18",
 2199		"Theft From Vehicles": "0",
 2200		Shoplifting: "0",
 2201		Vandalism: "378",
 2202		Fraud: "59",
 2203		Forgery: "107",
 2204		Arson: "0",
 2205	},
 2206	{
 2207		Date: "Feb-96",
 2208		Population: "209192",
 2209		Felony: "198",
 2210		Misdemeanor: "1741",
 2211		DWI: "90",
 2212		"Traffic Tickets": "4195",
 2213		"Traffic Warnings": "3450",
 2214		"All Reportable": "600",
 2215		"Property Damage": "453",
 2216		Injury: "147",
 2217		Fatality: "0",
 2218		Homicide: "0",
 2219		"Rape and Attempted Rape": "15",
 2220		Robbery: "14",
 2221		"Aggravated Assault": "81",
 2222		"Burglary (Residential)": "105",
 2223		"Burglary (Non-Residential)": "38",
 2224		"Auto Theft": "34",
 2225		"All Thefts": "710",
 2226		"Stolen Bikes": "28",
 2227		"Theft From Vehicles": "0",
 2228		Shoplifting: "0",
 2229		Vandalism: "433",
 2230		Fraud: "80",
 2231		Forgery: "97",
 2232		Arson: "0",
 2233	},
 2234	{
 2235		Date: "Mar-96",
 2236		Population: "209192",
 2237		Felony: "187",
 2238		Misdemeanor: "1521",
 2239		DWI: "104",
 2240		"Traffic Tickets": "4532",
 2241		"Traffic Warnings": "3554",
 2242		"All Reportable": "732",
 2243		"Property Damage": "538",
 2244		Injury: "193",
 2245		Fatality: "1",
 2246		Homicide: "0",
 2247		"Rape and Attempted Rape": "3",
 2248		Robbery: "10",
 2249		"Aggravated Assault": "78",
 2250		"Burglary (Residential)": "87",
 2251		"Burglary (Non-Residential)": "28",
 2252		"Auto Theft": "43",
 2253		"All Thefts": "784",
 2254		"Stolen Bikes": "38",
 2255		"Theft From Vehicles": "0",
 2256		Shoplifting: "0",
 2257		Vandalism: "389",
 2258		Fraud: "43",
 2259		Forgery: "213",
 2260		Arson: "0",
 2261	},
 2262	{
 2263		Date: "Apr-96",
 2264		Population: "209192",
 2265		Felony: "157",
 2266		Misdemeanor: "1809",
 2267		DWI: "118",
 2268		"Traffic Tickets": "3444",
 2269		"Traffic Warnings": "3311",
 2270		"All Reportable": "638",
 2271		"Property Damage": "444",
 2272		Injury: "194",
 2273		Fatality: "0",
 2274		Homicide: "2",
 2275		"Rape and Attempted Rape": "8",
 2276		Robbery: "6",
 2277		"Aggravated Assault": "86",
 2278		"Burglary (Residential)": "110",
 2279		"Burglary (Non-Residential)": "35",
 2280		"Auto Theft": "39",
 2281		"All Thefts": "844",
 2282		"Stolen Bikes": "43",
 2283		"Theft From Vehicles": "0",
 2284		Shoplifting: "0",
 2285		Vandalism: "476",
 2286		Fraud: "66",
 2287		Forgery: "119",
 2288		Arson: "0",
 2289	},
 2290	{
 2291		Date: "May-96",
 2292		Population: "209192",
 2293		Felony: "166",
 2294		Misdemeanor: "1962",
 2295		DWI: "85",
 2296		"Traffic Tickets": "3654",
 2297		"Traffic Warnings": "3707",
 2298		"All Reportable": "695",
 2299		"Property Damage": "495",
 2300		Injury: "200",
 2301		Fatality: "0",
 2302		Homicide: "0",
 2303		"Rape and Attempted Rape": "6",
 2304		Robbery: "8",
 2305		"Aggravated Assault": "88",
 2306		"Burglary (Residential)": "121",
 2307		"Burglary (Non-Residential)": "38",
 2308		"Auto Theft": "37",
 2309		"All Thefts": "886",
 2310		"Stolen Bikes": "71",
 2311		"Theft From Vehicles": "0",
 2312		Shoplifting: "0",
 2313		Vandalism: "524",
 2314		Fraud: "81",
 2315		Forgery: "170",
 2316		Arson: "0",
 2317	},
 2318	{
 2319		Date: "Jun-96",
 2320		Population: "209192",
 2321		Felony: "114",
 2322		Misdemeanor: "1832",
 2323		DWI: "103",
 2324		"Traffic Tickets": "4559",
 2325		"Traffic Warnings": "3725",
 2326		"All Reportable": "663",
 2327		"Property Damage": "464",
 2328		Injury: "199",
 2329		Fatality: "0",
 2330		Homicide: "1",
 2331		"Rape and Attempted Rape": "5",
 2332		Robbery: "9",
 2333		"Aggravated Assault": "90",
 2334		"Burglary (Residential)": "136",
 2335		"Burglary (Non-Residential)": "45",
 2336		"Auto Theft": "53",
 2337		"All Thefts": "941",
 2338		"Stolen Bikes": "101",
 2339		"Theft From Vehicles": "0",
 2340		Shoplifting: "0",
 2341		Vandalism: "520",
 2342		Fraud: "144",
 2343		Forgery: "66",
 2344		Arson: "0",
 2345	},
 2346	{
 2347		Date: "Jul-96",
 2348		Population: "209192",
 2349		Felony: "195",
 2350		Misdemeanor: "2184",
 2351		DWI: "96",
 2352		"Traffic Tickets": "3023",
 2353		"Traffic Warnings": "2921",
 2354		"All Reportable": "652",
 2355		"Property Damage": "453",
 2356		Injury: "199",
 2357		Fatality: "0",
 2358		Homicide: "0",
 2359		"Rape and Attempted Rape": "5",
 2360		Robbery: "14",
 2361		"Aggravated Assault": "93",
 2362		"Burglary (Residential)": "148",
 2363		"Burglary (Non-Residential)": "45",
 2364		"Auto Theft": "57",
 2365		"All Thefts": "1126",
 2366		"Stolen Bikes": "162",
 2367		"Theft From Vehicles": "0",
 2368		Shoplifting: "0",
 2369		Vandalism: "560",
 2370		Fraud: "102",
 2371		Forgery: "72",
 2372		Arson: "0",
 2373	},
 2374	{
 2375		Date: "Aug-96",
 2376		Population: "209192",
 2377		Felony: "192",
 2378		Misdemeanor: "1917",
 2379		DWI: "80",
 2380		"Traffic Tickets": "4510",
 2381		"Traffic Warnings": "3467",
 2382		"All Reportable": "744",
 2383		"Property Damage": "522",
 2384		Injury: "222",
 2385		Fatality: "0",
 2386		Homicide: "0",
 2387		"Rape and Attempted Rape": "12",
 2388		Robbery: "10",
 2389		"Aggravated Assault": "81",
 2390		"Burglary (Residential)": "133",
 2391		"Burglary (Non-Residential)": "42",
 2392		"Auto Theft": "39",
 2393		"All Thefts": "1040",
 2394		"Stolen Bikes": "159",
 2395		"Theft From Vehicles": "0",
 2396		Shoplifting: "0",
 2397		Vandalism: "595",
 2398		Fraud: "80",
 2399		Forgery: "167",
 2400		Arson: "0",
 2401	},
 2402	{
 2403		Date: "Sep-96",
 2404		Population: "209192",
 2405		Felony: "136",
 2406		Misdemeanor: "1911",
 2407		DWI: "88",
 2408		"Traffic Tickets": "4317",
 2409		"Traffic Warnings": "3563",
 2410		"All Reportable": "742",
 2411		"Property Damage": "548",
 2412		Injury: "192",
 2413		Fatality: "2",
 2414		Homicide: "0",
 2415		"Rape and Attempted Rape": "5",
 2416		Robbery: "17",
 2417		"Aggravated Assault": "90",
 2418		"Burglary (Residential)": "149",
 2419		"Burglary (Non-Residential)": "46",
 2420		"Auto Theft": "47",
 2421		"All Thefts": "1019",
 2422		"Stolen Bikes": "133",
 2423		"Theft From Vehicles": "0",
 2424		Shoplifting: "0",
 2425		Vandalism: "563",
 2426		Fraud: "60",
 2427		Forgery: "110",
 2428		Arson: "0",
 2429	},
 2430	{
 2431		Date: "Oct-96",
 2432		Population: "209192",
 2433		Felony: "189",
 2434		Misdemeanor: "1942",
 2435		DWI: "71",
 2436		"Traffic Tickets": "3066",
 2437		"Traffic Warnings": "2646",
 2438		"All Reportable": "760",
 2439		"Property Damage": "577",
 2440		Injury: "183",
 2441		Fatality: "0",
 2442		Homicide: "0",
 2443		"Rape and Attempted Rape": "11",
 2444		Robbery: "7",
 2445		"Aggravated Assault": "81",
 2446		"Burglary (Residential)": "120",
 2447		"Burglary (Non-Residential)": "42",
 2448		"Auto Theft": "56",
 2449		"All Thefts": "945",
 2450		"Stolen Bikes": "69",
 2451		"Theft From Vehicles": "0",
 2452		Shoplifting: "0",
 2453		Vandalism: "483",
 2454		Fraud: "97",
 2455		Forgery: "143",
 2456		Arson: "0",
 2457	},
 2458	{
 2459		Date: "Nov-96",
 2460		Population: "209192",
 2461		Felony: "140",
 2462		Misdemeanor: "1446",
 2463		DWI: "80",
 2464		"Traffic Tickets": "2866",
 2465		"Traffic Warnings": "2245",
 2466		"All Reportable": "767",
 2467		"Property Damage": "553",
 2468		Injury: "214",
 2469		Fatality: "0",
 2470		Homicide: "0",
 2471		"Rape and Attempted Rape": "8",
 2472		Robbery: "24",
 2473		"Aggravated Assault": "63",
 2474		"Burglary (Residential)": "81",
 2475		"Burglary (Non-Residential)": "55",
 2476		"Auto Theft": "48",
 2477		"All Thefts": "754",
 2478		"Stolen Bikes": "41",
 2479		"Theft From Vehicles": "0",
 2480		Shoplifting: "0",
 2481		Vandalism: "423",
 2482		Fraud: "50",
 2483		Forgery: "139",
 2484		Arson: "0",
 2485	},
 2486	{
 2487		Date: "Dec-96",
 2488		Population: "209192",
 2489		Felony: "129",
 2490		Misdemeanor: "1599",
 2491		DWI: "111",
 2492		"Traffic Tickets": "3384",
 2493		"Traffic Warnings": "3471",
 2494		"All Reportable": "825",
 2495		"Property Damage": "631",
 2496		Injury: "192",
 2497		Fatality: "2",
 2498		Homicide: "0",
 2499		"Rape and Attempted Rape": "5",
 2500		Robbery: "15",
 2501		"Aggravated Assault": "71",
 2502		"Burglary (Residential)": "87",
 2503		"Burglary (Non-Residential)": "43",
 2504		"Auto Theft": "31",
 2505		"All Thefts": "764",
 2506		"Stolen Bikes": "14",
 2507		"Theft From Vehicles": "0",
 2508		Shoplifting: "0",
 2509		Vandalism: "459",
 2510		Fraud: "62",
 2511		Forgery: "238",
 2512		Arson: "0",
 2513	},
 2514	{
 2515		Date: "Jan-97",
 2516		Population: "211552",
 2517		Felony: "145",
 2518		Misdemeanor: "1394",
 2519		DWI: "90",
 2520		"Traffic Tickets": "3278",
 2521		"Traffic Warnings": "3145",
 2522		"All Reportable": "847",
 2523		"Property Damage": "649",
 2524		Injury: "197",
 2525		Fatality: "1",
 2526		Homicide: "0",
 2527		"Rape and Attempted Rape": "6",
 2528		Robbery: "11",
 2529		"Aggravated Assault": "81",
 2530		"Burglary (Residential)": "82",
 2531		"Burglary (Non-Residential)": "45",
 2532		"Auto Theft": "64",
 2533		"All Thefts": "699",
 2534		"Stolen Bikes": "11",
 2535		"Theft From Vehicles": "259",
 2536		Shoplifting: "150",
 2537		Vandalism: "481",
 2538		Fraud: "63",
 2539		Forgery: "158",
 2540		Arson: "0",
 2541	},
 2542	{
 2543		Date: "Feb-97",
 2544		Population: "211552",
 2545		Felony: "142",
 2546		Misdemeanor: "1484",
 2547		DWI: "108",
 2548		"Traffic Tickets": "3778",
 2549		"Traffic Warnings": "3981",
 2550		"All Reportable": "710",
 2551		"Property Damage": "540",
 2552		Injury: "169",
 2553		Fatality: "1",
 2554		Homicide: "1",
 2555		"Rape and Attempted Rape": "9",
 2556		Robbery: "11",
 2557		"Aggravated Assault": "43",
 2558		"Burglary (Residential)": "55",
 2559		"Burglary (Non-Residential)": "39",
 2560		"Auto Theft": "40",
 2561		"All Thefts": "692",
 2562		"Stolen Bikes": "17",
 2563		"Theft From Vehicles": "260",
 2564		Shoplifting: "122",
 2565		Vandalism: "459",
 2566		Fraud: "88",
 2567		Forgery: "132",
 2568		Arson: "0",
 2569	},
 2570	{
 2571		Date: "Mar-97",
 2572		Population: "211552",
 2573		Felony: "178",
 2574		Misdemeanor: "1686",
 2575		DWI: "88",
 2576		"Traffic Tickets": "3113",
 2577		"Traffic Warnings": "4915",
 2578		"All Reportable": "557",
 2579		"Property Damage": "422",
 2580		Injury: "134",
 2581		Fatality: "1",
 2582		Homicide: "0",
 2583		"Rape and Attempted Rape": "6",
 2584		Robbery: "18",
 2585		"Aggravated Assault": "80",
 2586		"Burglary (Residential)": "97",
 2587		"Burglary (Non-Residential)": "37",
 2588		"Auto Theft": "30",
 2589		"All Thefts": "906",
 2590		"Stolen Bikes": "40",
 2591		"Theft From Vehicles": "337",
 2592		Shoplifting: "176",
 2593		Vandalism: "511",
 2594		Fraud: "129",
 2595		Forgery: "137",
 2596		Arson: "0",
 2597	},
 2598	{
 2599		Date: "Apr-97",
 2600		Population: "211552",
 2601		Felony: "132",
 2602		Misdemeanor: "1778",
 2603		DWI: "87",
 2604		"Traffic Tickets": "3064",
 2605		"Traffic Warnings": "2836",
 2606		"All Reportable": "674",
 2607		"Property Damage": "505",
 2608		Injury: "168",
 2609		Fatality: "1",
 2610		Homicide: "0",
 2611		"Rape and Attempted Rape": "11",
 2612		Robbery: "14",
 2613		"Aggravated Assault": "68",
 2614		"Burglary (Residential)": "76",
 2615		"Burglary (Non-Residential)": "25",
 2616		"Auto Theft": "29",
 2617		"All Thefts": "887",
 2618		"Stolen Bikes": "45",
 2619		"Theft From Vehicles": "390",
 2620		Shoplifting: "136",
 2621		Vandalism: "423",
 2622		Fraud: "113",
 2623		Forgery: "137",
 2624		Arson: "0",
 2625	},
 2626	{
 2627		Date: "May-97",
 2628		Population: "211552",
 2629		Felony: "205",
 2630		Misdemeanor: "1846",
 2631		DWI: "88",
 2632		"Traffic Tickets": "3947",
 2633		"Traffic Warnings": "3261",
 2634		"All Reportable": "722",
 2635		"Property Damage": "515",
 2636		Injury: "207",
 2637		Fatality: "0",
 2638		Homicide: "0",
 2639		"Rape and Attempted Rape": "7",
 2640		Robbery: "12",
 2641		"Aggravated Assault": "89",
 2642		"Burglary (Residential)": "113",
 2643		"Burglary (Non-Residential)": "42",
 2644		"Auto Theft": "43",
 2645		"All Thefts": "871",
 2646		"Stolen Bikes": "52",
 2647		"Theft From Vehicles": "376",
 2648		Shoplifting: "144",
 2649		Vandalism: "538",
 2650		Fraud: "78",
 2651		Forgery: "113",
 2652		Arson: "0",
 2653	},
 2654	{
 2655		Date: "Jun-97",
 2656		Population: "211552",
 2657		Felony: "185",
 2658		Misdemeanor: "1724",
 2659		DWI: "96",
 2660		"Traffic Tickets": "3730",
 2661		"Traffic Warnings": "3257",
 2662		"All Reportable": "689",
 2663		"Property Damage": "475",
 2664		Injury: "213",
 2665		Fatality: "1",
 2666		Homicide: "2",
 2667		"Rape and Attempted Rape": "9",
 2668		Robbery: "8",
 2669		"Aggravated Assault": "71",
 2670		"Burglary (Residential)": "108",
 2671		"Burglary (Non-Residential)": "60",
 2672		"Auto Theft": "59",
 2673		"All Thefts": "844",
 2674		"Stolen Bikes": "115",
 2675		"Theft From Vehicles": "307",
 2676		Shoplifting: "126",
 2677		Vandalism: "466",
 2678		Fraud: "84",
 2679		Forgery: "94",
 2680		Arson: "0",
 2681	},
 2682	{
 2683		Date: "Jul-97",
 2684		Population: "211552",
 2685		Felony: "228",
 2686		Misdemeanor: "1989",
 2687		DWI: "83",
 2688		"Traffic Tickets": "3280",
 2689		"Traffic Warnings": "2945",
 2690		"All Reportable": "685",
 2691		"Property Damage": "502",
 2692		Injury: "182",
 2693		Fatality: "1",
 2694		Homicide: "1",
 2695		"Rape and Attempted Rape": "9",
 2696		Robbery: "12",
 2697		"Aggravated Assault": "85",
 2698		"Burglary (Residential)": "166",
 2699		"Burglary (Non-Residential)": "39",
 2700		"Auto Theft": "56",
 2701		"All Thefts": "1059",
 2702		"Stolen Bikes": "131",
 2703		"Theft From Vehicles": "446",
 2704		Shoplifting: "139",
 2705		Vandalism: "486",
 2706		Fraud: "92",
 2707		Forgery: "70",
 2708		Arson: "0",
 2709	},
 2710	{
 2711		Date: "Aug-97",
 2712		Population: "211552",
 2713		Felony: "182",
 2714		Misdemeanor: "1845",
 2715		DWI: "95",
 2716		"Traffic Tickets": "4269",
 2717		"Traffic Warnings": "3334",
 2718		"All Reportable": "738",
 2719		"Property Damage": "528",
 2720		Injury: "209",
 2721		Fatality: "1",
 2722		Homicide: "0",
 2723		"Rape and Attempted Rape": "10",
 2724		Robbery: "11",
 2725		"Aggravated Assault": "80",
 2726		"Burglary (Residential)": "141",
 2727		"Burglary (Non-Residential)": "49",
 2728		"Auto Theft": "40",
 2729		"All Thefts": "1065",
 2730		"Stolen Bikes": "155",
 2731		"Theft From Vehicles": "419",
 2732		Shoplifting: "144",
 2733		Vandalism: "502",
 2734		Fraud: "67",
 2735		Forgery: "133",
 2736		Arson: "0",
 2737	},
 2738	{
 2739		Date: "Sep-97",
 2740		Population: "211552",
 2741		Felony: "158",
 2742		Misdemeanor: "1865",
 2743		DWI: "106",
 2744		"Traffic Tickets": "3644",
 2745		"Traffic Warnings": "2624",
 2746		"All Reportable": "728",
 2747		"Property Damage": "533",
 2748		Injury: "195",
 2749		Fatality: "0",
 2750		Homicide: "1",
 2751		"Rape and Attempted Rape": "6",
 2752		Robbery: "11",
 2753		"Aggravated Assault": "60",
 2754		"Burglary (Residential)": "125",
 2755		"Burglary (Non-Residential)": "23",
 2756		"Auto Theft": "65",
 2757		"All Thefts": "905",
 2758		"Stolen Bikes": "108",
 2759		"Theft From Vehicles": "386",
 2760		Shoplifting: "110",
 2761		Vandalism: "463",
 2762		Fraud: "50",
 2763		Forgery: "94",
 2764		Arson: "0",
 2765	},
 2766	{
 2767		Date: "Oct-97",
 2768		Population: "211552",
 2769		Felony: "193",
 2770		Misdemeanor: "1737",
 2771		DWI: "86",
 2772		"Traffic Tickets": "3732",
 2773		"Traffic Warnings": "2762",
 2774		"All Reportable": "859",
 2775		"Property Damage": "629",
 2776		Injury: "230",
 2777		Fatality: "0",
 2778		Homicide: "0",
 2779		"Rape and Attempted Rape": "9",
 2780		Robbery: "15",
 2781		"Aggravated Assault": "67",
 2782		"Burglary (Residential)": "126",
 2783		"Burglary (Non-Residential)": "40",
 2784		"Auto Theft": "51",
 2785		"All Thefts": "977",
 2786		"Stolen Bikes": "89",
 2787		"Theft From Vehicles": "415",
 2788		Shoplifting: "140",
 2789		Vandalism: "422",
 2790		Fraud: "55",
 2791		Forgery: "120",
 2792		Arson: "0",
 2793	},
 2794	{
 2795		Date: "Nov-97",
 2796		Population: "211552",
 2797		Felony: "159",
 2798		Misdemeanor: "1632",
 2799		DWI: "97",
 2800		"Traffic Tickets": "3112",
 2801		"Traffic Warnings": "2504",
 2802		"All Reportable": "702",
 2803		"Property Damage": "531",
 2804		Injury: "170",
 2805		Fatality: "1",
 2806		Homicide: "0",
 2807		"Rape and Attempted Rape": "12",
 2808		Robbery: "14",
 2809		"Aggravated Assault": "74",
 2810		"Burglary (Residential)": "109",
 2811		"Burglary (Non-Residential)": "19",
 2812		"Auto Theft": "42",
 2813		"All Thefts": "856",
 2814		"Stolen Bikes": "40",
 2815		"Theft From Vehicles": "336",
 2816		Shoplifting: "140",
 2817		Vandalism: "374",
 2818		Fraud: "88",
 2819		Forgery: "96",
 2820		Arson: "0",
 2821	},
 2822	{
 2823		Date: "Dec-97",
 2824		Population: "211552",
 2825		Felony: "181",
 2826		Misdemeanor: "1536",
 2827		DWI: "116",
 2828		"Traffic Tickets": "3716",
 2829		"Traffic Warnings": "3039",
 2830		"All Reportable": "739",
 2831		"Property Damage": "555",
 2832		Injury: "183",
 2833		Fatality: "1",
 2834		Homicide: "1",
 2835		"Rape and Attempted Rape": "8",
 2836		Robbery: "10",
 2837		"Aggravated Assault": "57",
 2838		"Burglary (Residential)": "80",
 2839		"Burglary (Non-Residential)": "52",
 2840		"Auto Theft": "23",
 2841		"All Thefts": "819",
 2842		"Stolen Bikes": "27",
 2843		"Theft From Vehicles": "250",
 2844		Shoplifting: "153",
 2845		Vandalism: "310",
 2846		Fraud: "50",
 2847		Forgery: "79",
 2848		Arson: "0",
 2849	},
 2850	{
 2851		Date: "Jan-98",
 2852		Population: "213836",
 2853		Felony: "175",
 2854		Misdemeanor: "1457",
 2855		DWI: "92",
 2856		"Traffic Tickets": "3724",
 2857		"Traffic Warnings": "3654",
 2858		"All Reportable": "898",
 2859		"Property Damage": "699",
 2860		Injury: "199",
 2861		Fatality: "0",
 2862		Homicide: "0",
 2863		"Rape and Attempted Rape": "11",
 2864		Robbery: "12",
 2865		"Aggravated Assault": "74",
 2866		"Burglary (Residential)": "108",
 2867		"Burglary (Non-Residential)": "37",
 2868		"Auto Theft": "28",
 2869		"All Thefts": "784",
 2870		"Stolen Bikes": "15",
 2871		"Theft From Vehicles": "336",
 2872		Shoplifting: "145",
 2873		Vandalism: "336",
 2874		Fraud: "77",
 2875		Forgery: "162",
 2876		Arson: "0",
 2877	},
 2878	{
 2879		Date: "Feb-98",
 2880		Population: "213836",
 2881		Felony: "178",
 2882		Misdemeanor: "1814",
 2883		DWI: "113",
 2884		"Traffic Tickets": "3616",
 2885		"Traffic Warnings": "3236",
 2886		"All Reportable": "599",
 2887		"Property Damage": "444",
 2888		Injury: "154",
 2889		Fatality: "1",
 2890		Homicide: "0",
 2891		"Rape and Attempted Rape": "5",
 2892		Robbery: "18",
 2893		"Aggravated Assault": "71",
 2894		"Burglary (Residential)": "81",
 2895		"Burglary (Non-Residential)": "22",
 2896		"Auto Theft": "34",
 2897		"All Thefts": "707",
 2898		"Stolen Bikes": "27",
 2899		"Theft From Vehicles": "273",
 2900		Shoplifting: "120",
 2901		Vandalism: "400",
 2902		Fraud: "69",
 2903		Forgery: "142",
 2904		Arson: "0",
 2905	},
 2906	{
 2907		Date: "Mar-98",
 2908		Population: "213836",
 2909		Felony: "149",
 2910		Misdemeanor: "1751",
 2911		DWI: "154",
 2912		"Traffic Tickets": "3389",
 2913		"Traffic Warnings": "3315",
 2914		"All Reportable": "834",
 2915		"Property Damage": "638",
 2916		Injury: "195",
 2917		Fatality: "1",
 2918		Homicide: "0",
 2919		"Rape and Attempted Rape": "6",
 2920		Robbery: "21",
 2921		"Aggravated Assault": "64",
 2922		"Burglary (Residential)": "93",
 2923		"Burglary (Non-Residential)": "43",
 2924		"Auto Theft": "33",
 2925		"All Thefts": "796",
 2926		"Stolen Bikes": "25",
 2927		"Theft From Vehicles": "371",
 2928		Shoplifting: "130",
 2929		Vandalism: "346",
 2930		Fraud: "91",
 2931		Forgery: "150",
 2932		Arson: "0",
 2933	},
 2934	{
 2935		Date: "Apr-98",
 2936		Population: "213836",
 2937		Felony: "190",
 2938		Misdemeanor: "1762",
 2939		DWI: "94",
 2940		"Traffic Tickets": "3547",
 2941		"Traffic Warnings": "3113",
 2942		"All Reportable": "653",
 2943		"Property Damage": "473",
 2944		Injury: "179",
 2945		Fatality: "1",
 2946		Homicide: "3",
 2947		"Rape and Attempted Rape": "10",
 2948		Robbery: "24",
 2949		"Aggravated Assault": "65",
 2950		"Burglary (Residential)": "114",
 2951		"Burglary (Non-Residential)": "34",
 2952		"Auto Theft": "46",
 2953		"All Thefts": "865",
 2954		"Stolen Bikes": "60",
 2955		"Theft From Vehicles": "337",
 2956		Shoplifting: "122",
 2957		Vandalism: "413",
 2958		Fraud: "63",
 2959		Forgery: "128",
 2960		Arson: "0",
 2961	},
 2962	{
 2963		Date: "May-98",
 2964		Population: "213836",
 2965		Felony: "193",
 2966		Misdemeanor: "2039",
 2967		DWI: "128",
 2968		"Traffic Tickets": "4633",
 2969		"Traffic Warnings": "4048",
 2970		"All Reportable": "731",
 2971		"Property Damage": "542",
 2972		Injury: "189",
 2973		Fatality: "0",
 2974		Homicide: "4",
 2975		"Rape and Attempted Rape": "9",
 2976		Robbery: "15",
 2977		"Aggravated Assault": "107",
 2978		"Burglary (Residential)": "129",
 2979		"Burglary (Non-Residential)": "34",
 2980		"Auto Theft": "36",
 2981		"All Thefts": "895",
 2982		"Stolen Bikes": "72",
 2983		"Theft From Vehicles": "352",
 2984		Shoplifting: "132",
 2985		Vandalism: "511",
 2986		Fraud: "69",
 2987		Forgery: "104",
 2988		Arson: "0",
 2989	},
 2990	{
 2991		Date: "Jun-98",
 2992		Population: "213836",
 2993		Felony: "147",
 2994		Misdemeanor: "1759",
 2995		DWI: "91",
 2996		"Traffic Tickets": "4228",
 2997		"Traffic Warnings": "3778",
 2998		"All Reportable": "670",
 2999		"Property Damage": "500",
 3000		Injury: "168",
 3001		Fatality: "2",
 3002		Homicide: "1",
 3003		"Rape and Attempted Rape": "9",
 3004		Robbery: "13",
 3005		"Aggravated Assault": "69",
 3006		"Burglary (Residential)": "140",
 3007		"Burglary (Non-Residential)": "42",
 3008		"Auto Theft": "51",
 3009		"All Thefts": "858",
 3010		"Stolen Bikes": "74",
 3011		"Theft From Vehicles": "365",
 3012		Shoplifting: "111",
 3013		Vandalism: "458",
 3014		Fraud: "113",
 3015		Forgery: "85",
 3016		Arson: "0",
 3017	},
 3018	{
 3019		Date: "Jul-98",
 3020		Population: "213836",
 3021		Felony: "182",
 3022		Misdemeanor: "1664",
 3023		DWI: "82",
 3024		"Traffic Tickets": "4204",
 3025		"Traffic Warnings": "4378",
 3026		"All Reportable": "676",
 3027		"Property Damage": "492",
 3028		Injury: "184",
 3029		Fatality: "0",
 3030		Homicide: "0",
 3031		"Rape and Attempted Rape": "12",
 3032		Robbery: "13",
 3033		"Aggravated Assault": "69",
 3034		"Burglary (Residential)": "159",
 3035		"Burglary (Non-Residential)": "52",
 3036		"Auto Theft": "44",
 3037		"All Thefts": "956",
 3038		"Stolen Bikes": "149",
 3039		"Theft From Vehicles": "353",
 3040		Shoplifting: "135",
 3041		Vandalism: "428",
 3042		Fraud: "60",
 3043		Forgery: "154",
 3044		Arson: "0",
 3045	},
 3046	{
 3047		Date: "Aug-98",
 3048		Population: "213836",
 3049		Felony: "145",
 3050		Misdemeanor: "1888",
 3051		DWI: "141",
 3052		"Traffic Tickets": "4841",
 3053		"Traffic Warnings": "4150",
 3054		"All Reportable": "735",
 3055		"Property Damage": "530",
 3056		Injury: "203",
 3057		Fatality: "2",
 3058		Homicide: "0",
 3059		"Rape and Attempted Rape": "13",
 3060		Robbery: "8",
 3061		"Aggravated Assault": "85",
 3062		"Burglary (Residential)": "137",
 3063		"Burglary (Non-Residential)": "45",
 3064		"Auto Theft": "35",
 3065		"All Thefts": "1120",
 3066		"Stolen Bikes": "125",
 3067		"Theft From Vehicles": "532",
 3068		Shoplifting: "137",
 3069		Vandalism: "484",
 3070		Fraud: "77",
 3071		Forgery: "111",
 3072		Arson: "0",
 3073	},
 3074	{
 3075		Date: "Sep-98",
 3076		Population: "213836",
 3077		Felony: "124",
 3078		Misdemeanor: "1763",
 3079		DWI: "96",
 3080		"Traffic Tickets": "4200",
 3081		"Traffic Warnings": "0",
 3082		"All Reportable": "738",
 3083		"Property Damage": "536",
 3084		Injury: "201",
 3085		Fatality: "1",
 3086		Homicide: "0",
 3087		"Rape and Attempted Rape": "7",
 3088		Robbery: "10",
 3089		"Aggravated Assault": "71",
 3090		"Burglary (Residential)": "169",
 3091		"Burglary (Non-Residential)": "36",
 3092		"Auto Theft": "49",
 3093		"All Thefts": "977",
 3094		"Stolen Bikes": "92",
 3095		"Theft From Vehicles": "482",
 3096		Shoplifting: "122",
 3097		Vandalism: "441",
 3098		Fraud: "66",
 3099		Forgery: "156",
 3100		Arson: "0",
 3101	},
 3102	{
 3103		Date: "Oct-98",
 3104		Population: "213836",
 3105		Felony: "205",
 3106		Misdemeanor: "1921",
 3107		DWI: "107",
 3108		"Traffic Tickets": "3835",
 3109		"Traffic Warnings": "3206",
 3110		"All Reportable": "893",
 3111		"Property Damage": "655",
 3112		Injury: "237",
 3113		Fatality: "1",
 3114		Homicide: "1",
 3115		"Rape and Attempted Rape": "3",
 3116		Robbery: "20",
 3117		"Aggravated Assault": "85",
 3118		"Burglary (Residential)": "151",
 3119		"Burglary (Non-Residential)": "30",
 3120		"Auto Theft": "38",
 3121		"All Thefts": "868",
 3122		"Stolen Bikes": "68",
 3123		"Theft From Vehicles": "349",
 3124		Shoplifting: "139",
 3125		Vandalism: "610",
 3126		Fraud: "74",
 3127		Forgery: "99",
 3128		Arson: "0",
 3129	},
 3130	{
 3131		Date: "Nov-98",
 3132		Population: "213836",
 3133		Felony: "179",
 3134		Misdemeanor: "1722",
 3135		DWI: "160",
 3136		"Traffic Tickets": "3775",
 3137		"Traffic Warnings": "3452",
 3138		"All Reportable": "737",
 3139		"Property Damage": "550",
 3140		Injury: "186",
 3141		Fatality: "1",
 3142		Homicide: "0",
 3143		"Rape and Attempted Rape": "8",
 3144		Robbery: "3",
 3145		"Aggravated Assault": "56",
 3146		"Burglary (Residential)": "114",
 3147		"Burglary (Non-Residential)": "23",
 3148		"Auto Theft": "36",
 3149		"All Thefts": "790",
 3150		"Stolen Bikes": "25",
 3151		"Theft From Vehicles": "345",
 3152		Shoplifting: "135",
 3153		Vandalism: "449",
 3154		Fraud: "81",
 3155		Forgery: "91",
 3156		Arson: "0",
 3157	},
 3158	{
 3159		Date: "Dec-98",
 3160		Population: "213836",
 3161		Felony: "196",
 3162		Misdemeanor: "1641",
 3163		DWI: "167",
 3164		"Traffic Tickets": "3671",
 3165		"Traffic Warnings": "3688",
 3166		"All Reportable": "696",
 3167		"Property Damage": "526",
 3168		Injury: "167",
 3169		Fatality: "3",
 3170		Homicide: "0",
 3171		"Rape and Attempted Rape": "10",
 3172		Robbery: "15",
 3173		"Aggravated Assault": "55",
 3174		"Burglary (Residential)": "104",
 3175		"Burglary (Non-Residential)": "55",
 3176		"Auto Theft": "35",
 3177		"All Thefts": "733",
 3178		"Stolen Bikes": "36",
 3179		"Theft From Vehicles": "240",
 3180		Shoplifting: "159",
 3181		Vandalism: "412",
 3182		Fraud: "82",
 3183		Forgery: "143",
 3184		Arson: "0",
 3185	},
 3186	{
 3187		Date: "Jan-99",
 3188		Population: "215928",
 3189		Felony: "203",
 3190		Misdemeanor: "1484",
 3191		DWI: "139",
 3192		"Traffic Tickets": "3799",
 3193		"Traffic Warnings": "3573",
 3194		"All Reportable": "731",
 3195		"Property Damage": "586",
 3196		Injury: "145",
 3197		Fatality: "0",
 3198		Homicide: "0",
 3199		"Rape and Attempted Rape": "6",
 3200		Robbery: "16",
 3201		"Aggravated Assault": "77",
 3202		"Burglary (Residential)": "81",
 3203		"Burglary (Non-Residential)": "62",
 3204		"Auto Theft": "40",
 3205		"All Thefts": "688",
 3206		"Stolen Bikes": "4",
 3207		"Theft From Vehicles": "306",
 3208		Shoplifting: "112",
 3209		Vandalism: "350",
 3210		Fraud: "81",
 3211		Forgery: "187",
 3212		Arson: "0",
 3213	},
 3214	{
 3215		Date: "Feb-99",
 3216		Population: "215928",
 3217		Felony: "167",
 3218		Misdemeanor: "1551",
 3219		DWI: "141",
 3220		"Traffic Tickets": "3487",
 3221		"Traffic Warnings": "2885",
 3222		"All Reportable": "710",
 3223		"Property Damage": "547",
 3224		Injury: "162",
 3225		Fatality: "1",
 3226		Homicide: "1",
 3227		"Rape and Attempted Rape": "6",
 3228		Robbery: "10",
 3229		"Aggravated Assault": "64",
 3230		"Burglary (Residential)": "98",
 3231		"Burglary (Non-Residential)": "46",
 3232		"Auto Theft": "34",
 3233		"All Thefts": "644",
 3234		"Stolen Bikes": "22",
 3235		"Theft From Vehicles": "289",
 3236		Shoplifting: "114",
 3237		Vandalism: "368",
 3238		Fraud: "73",
 3239		Forgery: "141",
 3240		Arson: "0",
 3241	},
 3242	{
 3243		Date: "Mar-99",
 3244		Population: "215928",
 3245		Felony: "196",
 3246		Misdemeanor: "1914",
 3247		DWI: "221",
 3248		"Traffic Tickets": "4262",
 3249		"Traffic Warnings": "4133",
 3250		"All Reportable": "698",
 3251		"Property Damage": "549",
 3252		Injury: "149",
 3253		Fatality: "0",
 3254		Homicide: "1",
 3255		"Rape and Attempted Rape": "8",
 3256		Robbery: "23",
 3257		"Aggravated Assault": "70",
 3258		"Burglary (Residential)": "92",
 3259		"Burglary (Non-Residential)": "41",
 3260		"Auto Theft": "33",
 3261		"All Thefts": "692",
 3262		"Stolen Bikes": "29",
 3263		"Theft From Vehicles": "263",
 3264		Shoplifting: "151",
 3265		Vandalism: "477",
 3266		Fraud: "64",
 3267		Forgery: "158",
 3268		Arson: "0",
 3269	},
 3270	{
 3271		Date: "Apr-99",
 3272		Population: "215928",
 3273		Felony: "180",
 3274		Misdemeanor: "1819",
 3275		DWI: "125",
 3276		"Traffic Tickets": "3341",
 3277		"Traffic Warnings": "3299",
 3278		"All Reportable": "724",
 3279		"Property Damage": "545",
 3280		Injury: "179",
 3281		Fatality: "0",
 3282		Homicide: "2",
 3283		"Rape and Attempted Rape": "5",
 3284		Robbery: "4",
 3285		"Aggravated Assault": "87",
 3286		"Burglary (Residential)": "97",
 3287		"Burglary (Non-Residential)": "29",
 3288		"Auto Theft": "29",
 3289		"All Thefts": "745",
 3290		"Stolen Bikes": "31",
 3291		"Theft From Vehicles": "299",
 3292		Shoplifting: "144",
 3293		Vandalism: "430",
 3294		Fraud: "38",
 3295		Forgery: "143",
 3296		Arson: "0",
 3297	},
 3298	{
 3299		Date: "May-99",
 3300		Population: "215928",
 3301		Felony: "184",
 3302		Misdemeanor: "1699",
 3303		DWI: "124",
 3304		"Traffic Tickets": "4370",
 3305		"Traffic Warnings": "3745",
 3306		"All Reportable": "667",
 3307		"Property Damage": "507",
 3308		Injury: "160",
 3309		Fatality: "0",
 3310		Homicide: "1",
 3311		"Rape and Attempted Rape": "10",
 3312		Robbery: "14",
 3313		"Aggravated Assault": "71",
 3314		"Burglary (Residential)": "109",
 3315		"Burglary (Non-Residential)": "30",
 3316		"Auto Theft": "46",
 3317		"All Thefts": "834",
 3318		"Stolen Bikes": "60",
 3319		"Theft From Vehicles": "355",
 3320		Shoplifting: "124",
 3321		Vandalism: "482",
 3322		Fraud: "56",
 3323		Forgery: "150",
 3324		Arson: "0",
 3325	},
 3326	{
 3327		Date: "Jun-99",
 3328		Population: "215928",
 3329		Felony: "155",
 3330		Misdemeanor: "1808",
 3331		DWI: "101",
 3332		"Traffic Tickets": "3573",
 3333		"Traffic Warnings": "3636",
 3334		"All Reportable": "756",
 3335		"Property Damage": "536",
 3336		Injury: "220",
 3337		Fatality: "0",
 3338		Homicide: "0",
 3339		"Rape and Attempted Rape": "7",
 3340		Robbery: "18",
 3341		"Aggravated Assault": "59",
 3342		"Burglary (Residential)": "129",
 3343		"Burglary (Non-Residential)": "42",
 3344		"Auto Theft": "36",
 3345		"All Thefts": "896",
 3346		"Stolen Bikes": "91",
 3347		"Theft From Vehicles": "368",
 3348		Shoplifting: "136",
 3349		Vandalism: "487",
 3350		Fraud: "65",
 3351		Forgery: "62",
 3352		Arson: "0",
 3353	},
 3354	{
 3355		Date: "Jul-99",
 3356		Population: "215928",
 3357		Felony: "218",
 3358		Misdemeanor: "1928",
 3359		DWI: "115",
 3360		"Traffic Tickets": "3970",
 3361		"Traffic Warnings": "3206",
 3362		"All Reportable": "786",
 3363		"Property Damage": "546",
 3364		Injury: "238",
 3365		Fatality: "2",
 3366		Homicide: "0",
 3367		"Rape and Attempted Rape": "6",
 3368		Robbery: "12",
 3369		"Aggravated Assault": "89",
 3370		"Burglary (Residential)": "123",
 3371		"Burglary (Non-Residential)": "49",
 3372		"Auto Theft": "49",
 3373		"All Thefts": "879",
 3374		"Stolen Bikes": "115",
 3375		"Theft From Vehicles": "348",
 3376		Shoplifting: "106",
 3377		Vandalism: "494",
 3378		Fraud: "67",
 3379		Forgery: "142",
 3380		Arson: "0",
 3381	},
 3382	{
 3383		Date: "Aug-99",
 3384		Population: "215928",
 3385		Felony: "167",
 3386		Misdemeanor: "2061",
 3387		DWI: "85",
 3388		"Traffic Tickets": "4031",
 3389		"Traffic Warnings": "4439",
 3390		"All Reportable": "764",
 3391		"Property Damage": "557",
 3392		Injury: "207",
 3393		Fatality: "0",
 3394		Homicide: "1",
 3395		"Rape and Attempted Rape": "6",
 3396		Robbery: "13",
 3397		"Aggravated Assault": "103",
 3398		"Burglary (Residential)": "123",
 3399		"Burglary (Non-Residential)": "57",
 3400		"Auto Theft": "39",
 3401		"All Thefts": "925",
 3402		"Stolen Bikes": "103",
 3403		"Theft From Vehicles": "398",
 3404		Shoplifting: "108",
 3405		Vandalism: "517",
 3406		Fraud: "82",
 3407		Forgery: "179",
 3408		Arson: "0",
 3409	},
 3410	{
 3411		Date: "Sep-99",
 3412		Population: "215928",
 3413		Felony: "185",
 3414		Misdemeanor: "2022",
 3415		DWI: "125",
 3416		"Traffic Tickets": "3719",
 3417		"Traffic Warnings": "2930",
 3418		"All Reportable": "735",
 3419		"Property Damage": "525",
 3420		Injury: "210",
 3421		Fatality: "0",
 3422		Homicide: "1",
 3423		"Rape and Attempted Rape": "1",
 3424		Robbery: "18",
 3425		"Aggravated Assault": "92",
 3426		"Burglary (Residential)": "133",
 3427		"Burglary (Non-Residential)": "47",
 3428		"Auto Theft": "43",
 3429		"All Thefts": "845",
 3430		"Stolen Bikes": "85",
 3431		"Theft From Vehicles": "298",
 3432		Shoplifting: "137",
 3433		Vandalism: "428",
 3434		Fraud: "47",
 3435		Forgery: "88",
 3436		Arson: "0",
 3437	},
 3438	{
 3439		Date: "Oct-99",
 3440		Population: "215928",
 3441		Felony: "172",
 3442		Misdemeanor: "1931",
 3443		DWI: "127",
 3444		"Traffic Tickets": "3594",
 3445		"Traffic Warnings": "2577",
 3446		"All Reportable": "718",
 3447		"Property Damage": "516",
 3448		Injury: "200",
 3449		Fatality: "2",
 3450		Homicide: "0",
 3451		"Rape and Attempted Rape": "6",
 3452		Robbery: "15",
 3453		"Aggravated Assault": "78",
 3454		"Burglary (Residential)": "102",
 3455		"Burglary (Non-Residential)": "36",
 3456		"Auto Theft": "52",
 3457		"All Thefts": "833",
 3458		"Stolen Bikes": "61",
 3459		"Theft From Vehicles": "316",
 3460		Shoplifting: "144",
 3461		Vandalism: "601",
 3462		Fraud: "62",
 3463		Forgery: "118",
 3464		Arson: "0",
 3465	},
 3466	{
 3467		Date: "Nov-99",
 3468		Population: "215928",
 3469		Felony: "147",
 3470		Misdemeanor: "1700",
 3471		DWI: "107",
 3472		"Traffic Tickets": "3163",
 3473		"Traffic Warnings": "2355",
 3474		"All Reportable": "721",
 3475		"Property Damage": "536",
 3476		Injury: "185",
 3477		Fatality: "0",
 3478		Homicide: "0",
 3479		"Rape and Attempted Rape": "17",
 3480		Robbery: "8",
 3481		"Aggravated Assault": "72",
 3482		"Burglary (Residential)": "108",
 3483		"Burglary (Non-Residential)": "49",
 3484		"Auto Theft": "38",
 3485		"All Thefts": "865",
 3486		"Stolen Bikes": "41",
 3487		"Theft From Vehicles": "357",
 3488		Shoplifting: "108",
 3489		Vandalism: "456",
 3490		Fraud: "101",
 3491		Forgery: "122",
 3492		Arson: "0",
 3493	},
 3494	{
 3495		Date: "Dec-99",
 3496		Population: "215928",
 3497		Felony: "149",
 3498		Misdemeanor: "1692",
 3499		DWI: "186",
 3500		"Traffic Tickets": "3515",
 3501		"Traffic Warnings": "2689",
 3502		"All Reportable": "815",
 3503		"Property Damage": "643",
 3504		Injury: "171",
 3505		Fatality: "1",
 3506		Homicide: "1",
 3507		"Rape and Attempted Rape": "2",
 3508		Robbery: "10",
 3509		"Aggravated Assault": "63",
 3510		"Burglary (Residential)": "89",
 3511		"Burglary (Non-Residential)": "63",
 3512		"Auto Theft": "49",
 3513		"All Thefts": "795",
 3514		"Stolen Bikes": "16",
 3515		"Theft From Vehicles": "253",
 3516		Shoplifting: "135",
 3517		Vandalism: "341",
 3518		Fraud: "73",
 3519		Forgery: "204",
 3520		Arson: "0",
 3521	},
 3522	{
 3523		Date: "Jan-00",
 3524		Population: "225581",
 3525		Felony: "175",
 3526		Misdemeanor: "1685",
 3527		DWI: "128",
 3528		"Traffic Tickets": "3398",
 3529		"Traffic Warnings": "3129",
 3530		"All Reportable": "691",
 3531		"Property Damage": "537",
 3532		Injury: "154",
 3533		Fatality: "0",
 3534		Homicide: "1",
 3535		"Rape and Attempted Rape": "8",
 3536		Robbery: "11",
 3537		"Aggravated Assault": "47",
 3538		"Burglary (Residential)": "100",
 3539		"Burglary (Non-Residential)": "47",
 3540		"Auto Theft": "44",
 3541		"All Thefts": "723",
 3542		"Stolen Bikes": "24",
 3543		"Theft From Vehicles": "340",
 3544		Shoplifting: "89",
 3545		Vandalism: "444",
 3546		Fraud: "78",
 3547		Forgery: "117",
 3548		Arson: "0",
 3549	},
 3550	{
 3551		Date: "Feb-00",
 3552		Population: "225581",
 3553		Felony: "186",
 3554		Misdemeanor: "1645",
 3555		DWI: "89",
 3556		"Traffic Tickets": "2775",
 3557		"Traffic Warnings": "2317",
 3558		"All Reportable": "707",
 3559		"Property Damage": "538",
 3560		Injury: "168",
 3561		Fatality: "1",
 3562		Homicide: "1",
 3563		"Rape and Attempted Rape": "5",
 3564		Robbery: "9",
 3565		"Aggravated Assault": "62",
 3566		"Burglary (Residential)": "109",
 3567		"Burglary (Non-Residential)": "38",
 3568		"Auto Theft": "47",
 3569		"All Thefts": "799",
 3570		"Stolen Bikes": "19",
 3571		"Theft From Vehicles": "403",
 3572		Shoplifting: "108",
 3573		Vandalism: "422",
 3574		Fraud: "94",
 3575		Forgery: "86",
 3576		Arson: "0",
 3577	},
 3578	{
 3579		Date: "Mar-00",
 3580		Population: "225581",
 3581		Felony: "174",
 3582		Misdemeanor: "2194",
 3583		DWI: "125",
 3584		"Traffic Tickets": "3208",
 3585		"Traffic Warnings": "2984",
 3586		"All Reportable": "726",
 3587		"Property Damage": "537",
 3588		Injury: "189",
 3589		Fatality: "0",
 3590		Homicide: "0",
 3591		"Rape and Attempted Rape": "11",
 3592		Robbery: "15",
 3593		"Aggravated Assault": "90",
 3594		"Burglary (Residential)": "113",
 3595		"Burglary (Non-Residential)": "89",
 3596		"Auto Theft": "39",
 3597		"All Thefts": "952",
 3598		"Stolen Bikes": "35",
 3599		"Theft From Vehicles": "504",
 3600		Shoplifting: "117",
 3601		Vandalism: "463",
 3602		Fraud: "74",
 3603		Forgery: "178",
 3604		Arson: "0",
 3605	},
 3606	{
 3607		Date: "Apr-00",
 3608		Population: "225581",
 3609		Felony: "242",
 3610		Misdemeanor: "1825",
 3611		DWI: "97",
 3612		"Traffic Tickets": "3138",
 3613		"Traffic Warnings": "2467",
 3614		"All Reportable": "677",
 3615		"Property Damage": "487",
 3616		Injury: "189",
 3617		Fatality: "1",
 3618		Homicide: "0",
 3619		"Rape and Attempted Rape": "11",
 3620		Robbery: "3",
 3621		"Aggravated Assault": "82",
 3622		"Burglary (Residential)": "107",
 3623		"Burglary (Non-Residential)": "47",
 3624		"Auto Theft": "31",
 3625		"All Thefts": "719",
 3626		"Stolen Bikes": "36",
 3627		"Theft From Vehicles": "267",
 3628		Shoplifting: "109",
 3629		Vandalism: "393",
 3630		Fraud: "85",
 3631		Forgery: "66",
 3632		Arson: "0",
 3633	},
 3634	{
 3635		Date: "May-00",
 3636		Population: "225581",
 3637		Felony: "171",
 3638		Misdemeanor: "1800",
 3639		DWI: "75",
 3640		"Traffic Tickets": "4183",
 3641		"Traffic Warnings": "3585",
 3642		"All Reportable": "826",
 3643		"Property Damage": "610",
 3644		Injury: "215",
 3645		Fatality: "1",
 3646		Homicide: "0",
 3647		"Rape and Attempted Rape": "8",
 3648		Robbery: "11",
 3649		"Aggravated Assault": "70",
 3650		"Burglary (Residential)": "124",
 3651		"Burglary (Non-Residential)": "32",
 3652		"Auto Theft": "46",
 3653		"All Thefts": "878",
 3654		"Stolen Bikes": "63",
 3655		"Theft From Vehicles": "347",
 3656		Shoplifting: "143",
 3657		Vandalism: "450",
 3658		Fraud: "74",
 3659		Forgery: "75",
 3660		Arson: "0",
 3661	},
 3662	{
 3663		Date: "Jun-00",
 3664		Population: "225581",
 3665		Felony: "155",
 3666		Misdemeanor: "2000",
 3667		DWI: "91",
 3668		"Traffic Tickets": "3669",
 3669		"Traffic Warnings": "3158",
 3670		"All Reportable": "722",
 3671		"Property Damage": "541",
 3672		Injury: "179",
 3673		Fatality: "2",
 3674		Homicide: "0",
 3675		"Rape and Attempted Rape": "8",
 3676		Robbery: "7",
 3677		"Aggravated Assault": "76",
 3678		"Burglary (Residential)": "124",
 3679		"Burglary (Non-Residential)": "29",
 3680		"Auto Theft": "51",
 3681		"All Thefts": "964",
 3682		"Stolen Bikes": "93",
 3683		"Theft From Vehicles": "347",
 3684		Shoplifting: "113",
 3685		Vandalism: "530",
 3686		Fraud: "82",
 3687		Forgery: "121",
 3688		Arson: "0",
 3689	},
 3690	{
 3691		Date: "Jul-00",
 3692		Population: "225581",
 3693		Felony: "196",
 3694		Misdemeanor: "2190",
 3695		DWI: "96",
 3696		"Traffic Tickets": "3369",
 3697		"Traffic Warnings": "2527",
 3698		"All Reportable": "700",
 3699		"Property Damage": "508",
 3700		Injury: "191",
 3701		Fatality: "1",
 3702		Homicide: "0",
 3703		"Rape and Attempted Rape": "10",
 3704		Robbery: "18",
 3705		"Aggravated Assault": "90",
 3706		"Burglary (Residential)": "151",
 3707		"Burglary (Non-Residential)": "65",
 3708		"Auto Theft": "41",
 3709		"All Thefts": "988",
 3710		"Stolen Bikes": "101",
 3711		"Theft From Vehicles": "401",
 3712		Shoplifting: "132",
 3713		Vandalism: "666",
 3714		Fraud: "80",
 3715		Forgery: "78",
 3716		Arson: "0",
 3717	},
 3718	{
 3719		Date: "Aug-00",
 3720		Population: "225581",
 3721		Felony: "176",
 3722		Misdemeanor: "2160",
 3723		DWI: "108",
 3724		"Traffic Tickets": "4499",
 3725		"Traffic Warnings": "3317",
 3726		"All Reportable": "705",
 3727		"Property Damage": "517",
 3728		Injury: "187",
 3729		Fatality: "1",
 3730		Homicide: "0",
 3731		"Rape and Attempted Rape": "10",
 3732		Robbery: "17",
 3733		"Aggravated Assault": "79",
 3734		"Burglary (Residential)": "139",
 3735		"Burglary (Non-Residential)": "36",
 3736		"Auto Theft": "34",
 3737		"All Thefts": "1048",
 3738		"Stolen Bikes": "113",
 3739		"Theft From Vehicles": "418",
 3740		Shoplifting: "133",
 3741		Vandalism: "566",
 3742		Fraud: "69",
 3743		Forgery: "172",
 3744		Arson: "0",
 3745	},
 3746	{
 3747		Date: "Sep-00",
 3748		Population: "225581",
 3749		Felony: "160",
 3750		Misdemeanor: "2132",
 3751		DWI: "87",
 3752		"Traffic Tickets": "4353",
 3753		"Traffic Warnings": "3388",
 3754		"All Reportable": "749",
 3755		"Property Damage": "565",
 3756		Injury: "183",
 3757		Fatality: "1",
 3758		Homicide: "1",
 3759		"Rape and Attempted Rape": "10",
 3760		Robbery: "8",
 3761		"Aggravated Assault": "92",
 3762		"Burglary (Residential)": "107",
 3763		"Burglary (Non-Residential)": "28",
 3764		"Auto Theft": "28",
 3765		"All Thefts": "903",
 3766		"Stolen Bikes": "87",
 3767		"Theft From Vehicles": "355",
 3768		Shoplifting: "134",
 3769		Vandalism: "407",
 3770		Fraud: "89",
 3771		Forgery: "117",
 3772		Arson: "0",
 3773	},
 3774	{
 3775		Date: "Oct-00",
 3776		Population: "225581",
 3777		Felony: "134",
 3778		Misdemeanor: "2013",
 3779		DWI: "138",
 3780		"Traffic Tickets": "3509",
 3781		"Traffic Warnings": "3194",
 3782		"All Reportable": "727",
 3783		"Property Damage": "540",
 3784		Injury: "186",
 3785		Fatality: "1",
 3786		Homicide: "0",
 3787		"Rape and Attempted Rape": "7",
 3788		Robbery: "20",
 3789		"Aggravated Assault": "93",
 3790		"Burglary (Residential)": "144",
 3791		"Burglary (Non-Residential)": "27",
 3792		"Auto Theft": "39",
 3793		"All Thefts": "925",
 3794		"Stolen Bikes": "72",
 3795		"Theft From Vehicles": "333",
 3796		Shoplifting: "121",
 3797		Vandalism: "595",
 3798		Fraud: "81",
 3799		Forgery: "74",
 3800		Arson: "0",
 3801	},
 3802	{
 3803		Date: "Nov-00",
 3804		Population: "225581",
 3805		Felony: "196",
 3806		Misdemeanor: "1621",
 3807		DWI: "102",
 3808		"Traffic Tickets": "3315",
 3809		"Traffic Warnings": "3341",
 3810		"All Reportable": "777",
 3811		"Property Damage": "595",
 3812		Injury: "181",
 3813		Fatality: "1",
 3814		Homicide: "0",
 3815		"Rape and Attempted Rape": "10",
 3816		Robbery: "12",
 3817		"Aggravated Assault": "66",
 3818		"Burglary (Residential)": "110",
 3819		"Burglary (Non-Residential)": "34",
 3820		"Auto Theft": "44",
 3821		"All Thefts": "744",
 3822		"Stolen Bikes": "29",
 3823		"Theft From Vehicles": "240",
 3824		Shoplifting: "165",
 3825		Vandalism: "528",
 3826		Fraud: "51",
 3827		Forgery: "82",
 3828		Arson: "0",
 3829	},
 3830	{
 3831		Date: "Dec-00",
 3832		Population: "225581",
 3833		Felony: "135",
 3834		Misdemeanor: "1606",
 3835		DWI: "251",
 3836		"Traffic Tickets": "4051",
 3837		"Traffic Warnings": "3506",
 3838		"All Reportable": "1046",
 3839		"Property Damage": "859",
 3840		Injury: "187",
 3841		Fatality: "0",
 3842		Homicide: "0",
 3843		"Rape and Attempted Rape": "2",
 3844		Robbery: "10",
 3845		"Aggravated Assault": "56",
 3846		"Burglary (Residential)": "77",
 3847		"Burglary (Non-Residential)": "37",
 3848		"Auto Theft": "39",
 3849		"All Thefts": "617",
 3850		"Stolen Bikes": "8",
 3851		"Theft From Vehicles": "159",
 3852		Shoplifting: "112",
 3853		Vandalism: "310",
 3854		Fraud: "64",
 3855		Forgery: "102",
 3856		Arson: "0",
 3857	},
 3858	{
 3859		Date: "Jan-01",
 3860		Population: "230400",
 3861		Felony: "185",
 3862		Misdemeanor: "1791",
 3863		DWI: "130",
 3864		"Traffic Tickets": "4072",
 3865		"Traffic Warnings": "3521",
 3866		"All Reportable": "901",
 3867		"Property Damage": "711",
 3868		Injury: "188",
 3869		Fatality: "2",
 3870		Homicide: "0",
 3871		"Rape and Attempted Rape": "2",
 3872		Robbery: "15",
 3873		"Aggravated Assault": "83",
 3874		"Burglary (Residential)": "100",
 3875		"Burglary (Non-Residential)": "44",
 3876		"Auto Theft": "33",
 3877		"All Thefts": "684",
 3878		"Stolen Bikes": "9",
 3879		"Theft From Vehicles": "229",
 3880		Shoplifting: "116",
 3881		Vandalism: "401",
 3882		Fraud: "70",
 3883		Forgery: "91",
 3884		Arson: "0",
 3885	},
 3886	{
 3887		Date: "Feb-01",
 3888		Population: "230400",
 3889		Felony: "127",
 3890		Misdemeanor: "1629",
 3891		DWI: "106",
 3892		"Traffic Tickets": "3347",
 3893		"Traffic Warnings": "2933",
 3894		"All Reportable": "1013",
 3895		"Property Damage": "845",
 3896		Injury: "168",
 3897		Fatality: "0",
 3898		Homicide: "0",
 3899		"Rape and Attempted Rape": "6",
 3900		Robbery: "13",
 3901		"Aggravated Assault": "61",
 3902		"Burglary (Residential)": "59",
 3903		"Burglary (Non-Residential)": "21",
 3904		"Auto Theft": "42",
 3905		"All Thefts": "465",
 3906		"Stolen Bikes": "10",
 3907		"Theft From Vehicles": "129",
 3908		Shoplifting: "90",
 3909		Vandalism: "277",
 3910		Fraud: "126",
 3911		Forgery: "90",
 3912		Arson: "0",
 3913	},
 3914	{
 3915		Date: "Mar-01",
 3916		Population: "230400",
 3917		Felony: "195",
 3918		Misdemeanor: "2182",
 3919		DWI: "126",
 3920		"Traffic Tickets": "4013",
 3921		"Traffic Warnings": "3974",
 3922		"All Reportable": "678",
 3923		"Property Damage": "522",
 3924		Injury: "155",
 3925		Fatality: "1",
 3926		Homicide: "1",
 3927		"Rape and Attempted Rape": "4",
 3928		Robbery: "7",
 3929		"Aggravated Assault": "101",
 3930		"Burglary (Residential)": "92",
 3931		"Burglary (Non-Residential)": "38",
 3932		"Auto Theft": "47",
 3933		"All Thefts": "772",
 3934		"Stolen Bikes": "24",
 3935		"Theft From Vehicles": "282",
 3936		Shoplifting: "129",
 3937		Vandalism: "705",
 3938		Fraud: "118",
 3939		Forgery: "203",
 3940		Arson: "0",
 3941	},
 3942	{
 3943		Date: "Apr-01",
 3944		Population: "230400",
 3945		Felony: "209",
 3946		Misdemeanor: "1989",
 3947		DWI: "121",
 3948		"Traffic Tickets": "3995",
 3949		"Traffic Warnings": "3665",
 3950		"All Reportable": "693",
 3951		"Property Damage": "502",
 3952		Injury: "191",
 3953		Fatality: "0",
 3954		Homicide: "0",
 3955		"Rape and Attempted Rape": "9",
 3956		Robbery: "10",
 3957		"Aggravated Assault": "84",
 3958		"Burglary (Residential)": "106",
 3959		"Burglary (Non-Residential)": "30",
 3960		"Auto Theft": "42",
 3961		"All Thefts": "919",
 3962		"Stolen Bikes": "41",
 3963		"Theft From Vehicles": "401",
 3964		Shoplifting: "138",
 3965		Vandalism: "534",
 3966		Fraud: "78",
 3967		Forgery: "226",
 3968		Arson: "0",
 3969	},
 3970	{
 3971		Date: "May-01",
 3972		Population: "230400",
 3973		Felony: "180",
 3974		Misdemeanor: "2053",
 3975		DWI: "110",
 3976		"Traffic Tickets": "5805",
 3977		"Traffic Warnings": "4960",
 3978		"All Reportable": "753",
 3979		"Property Damage": "571",
 3980		Injury: "178",
 3981		Fatality: "4",
 3982		Homicide: "0",
 3983		"Rape and Attempted Rape": "4",
 3984		Robbery: "15",
 3985		"Aggravated Assault": "86",
 3986		"Burglary (Residential)": "131",
 3987		"Burglary (Non-Residential)": "45",
 3988		"Auto Theft": "46",
 3989		"All Thefts": "901",
 3990		"Stolen Bikes": "61",
 3991		"Theft From Vehicles": "338",
 3992		Shoplifting: "131",
 3993		Vandalism: "449",
 3994		Fraud: "101",
 3995		Forgery: "158",
 3996		Arson: "0",
 3997	},
 3998	{
 3999		Date: "Jun-01",
 4000		Population: "230400",
 4001		Felony: "183",
 4002		Misdemeanor: "1959",
 4003		DWI: "113",
 4004		"Traffic Tickets": "4300",
 4005		"Traffic Warnings": "3529",
 4006		"All Reportable": "721",
 4007		"Property Damage": "531",
 4008		Injury: "189",
 4009		Fatality: "1",
 4010		Homicide: "1",
 4011		"Rape and Attempted Rape": "12",
 4012		Robbery: "20",
 4013		"Aggravated Assault": "87",
 4014		"Burglary (Residential)": "107",
 4015		"Burglary (Non-Residential)": "49",
 4016		"Auto Theft": "53",
 4017		"All Thefts": "1037",
 4018		"Stolen Bikes": "107",
 4019		"Theft From Vehicles": "403",
 4020		Shoplifting: "177",
 4021		Vandalism: "512",
 4022		Fraud: "80",
 4023		Forgery: "113",
 4024		Arson: "0",
 4025	},
 4026	{
 4027		Date: "Jul-01",
 4028		Population: "230400",
 4029		Felony: "234",
 4030		Misdemeanor: "2018",
 4031		DWI: "99",
 4032		"Traffic Tickets": "3915",
 4033		"Traffic Warnings": "4616",
 4034		"All Reportable": "706",
 4035		"Property Damage": "533",
 4036		Injury: "172",
 4037		Fatality: "1",
 4038		Homicide: "0",
 4039		"Rape and Attempted Rape": "10",
 4040		Robbery: "9",
 4041		"Aggravated Assault": "102",
 4042		"Burglary (Residential)": "129",
 4043		"Burglary (Non-Residential)": "51",
 4044		"Auto Theft": "71",
 4045		"All Thefts": "1039",
 4046		"Stolen Bikes": "113",
 4047		"Theft From Vehicles": "454",
 4048		Shoplifting: "174",
 4049		Vandalism: "489",
 4050		Fraud: "99",
 4051		Forgery: "113",
 4052		Arson: "0",
 4053	},
 4054	{
 4055		Date: "Aug-01",
 4056		Population: "230400",
 4057		Felony: "230",
 4058		Misdemeanor: "2095",
 4059		DWI: "91",
 4060		"Traffic Tickets": "5259",
 4061		"Traffic Warnings": "4292",
 4062		"All Reportable": "668",
 4063		"Property Damage": "482",
 4064		Injury: "186",
 4065		Fatality: "0",
 4066		Homicide: "1",
 4067		"Rape and Attempted Rape": "11",
 4068		Robbery: "15",
 4069		"Aggravated Assault": "82",
 4070		"Burglary (Residential)": "150",
 4071		"Burglary (Non-Residential)": "59",
 4072		"Auto Theft": "56",
 4073		"All Thefts": "1152",
 4074		"Stolen Bikes": "149",
 4075		"Theft From Vehicles": "476",
 4076		Shoplifting: "150",
 4077		Vandalism: "473",
 4078		Fraud: "95",
 4079		Forgery: "102",
 4080		Arson: "0",
 4081	},
 4082	{
 4083		Date: "Sep-01",
 4084		Population: "230400",
 4085		Felony: "179",
 4086		Misdemeanor: "1999",
 4087		DWI: "104",
 4088		"Traffic Tickets": "3135",
 4089		"Traffic Warnings": "2603",
 4090		"All Reportable": "716",
 4091		"Property Damage": "532",
 4092		Injury: "183",
 4093		Fatality: "1",
 4094		Homicide: "0",
 4095		"Rape and Attempted Rape": "7",
 4096		Robbery: "11",
 4097		"Aggravated Assault": "94",
 4098		"Burglary (Residential)": "138",
 4099		"Burglary (Non-Residential)": "65",
 4100		"Auto Theft": "55",
 4101		"All Thefts": "1003",
 4102		"Stolen Bikes": "106",
 4103		"Theft From Vehicles": "379",
 4104		Shoplifting: "122",
 4105		Vandalism: "423",
 4106		Fraud: "89",
 4107		Forgery: "131",
 4108		Arson: "0",
 4109	},
 4110	{
 4111		Date: "Oct-01",
 4112		Population: "230400",
 4113		Felony: "208",
 4114		Misdemeanor: "2083",
 4115		DWI: "110",
 4116		"Traffic Tickets": "3832",
 4117		"Traffic Warnings": "3446",
 4118		"All Reportable": "857",
 4119		"Property Damage": "635",
 4120		Injury: "222",
 4121		Fatality: "0",
 4122		Homicide: "1",
 4123		"Rape and Attempted Rape": "11",
 4124		Robbery: "14",
 4125		"Aggravated Assault": "86",
 4126		"Burglary (Residential)": "131",
 4127		"Burglary (Non-Residential)": "52",
 4128		"Auto Theft": "49",
 4129		"All Thefts": "1100",
 4130		"Stolen Bikes": "79",
 4131		"Theft From Vehicles": "533",
 4132		Shoplifting: "126",
 4133		Vandalism: "537",
 4134		Fraud: "97",
 4135		Forgery: "230",
 4136		Arson: "0",
 4137	},
 4138	{
 4139		Date: "Nov-01",
 4140		Population: "230400",
 4141		Felony: "210",
 4142		Misdemeanor: "1934",
 4143		DWI: "120",
 4144		"Traffic Tickets": "3843",
 4145		"Traffic Warnings": "3657",
 4146		"All Reportable": "740",
 4147		"Property Damage": "561",
 4148		Injury: "177",
 4149		Fatality: "2",
 4150		Homicide: "0",
 4151		"Rape and Attempted Rape": "2",
 4152		Robbery: "10",
 4153		"Aggravated Assault": "69",
 4154		"Burglary (Residential)": "124",
 4155		"Burglary (Non-Residential)": "29",
 4156		"Auto Theft": "36",
 4157		"All Thefts": "1117",
 4158		"Stolen Bikes": "47",
 4159		"Theft From Vehicles": "588",
 4160		Shoplifting: "147",
 4161		Vandalism: "521",
 4162		Fraud: "89",
 4163		Forgery: "136",
 4164		Arson: "0",
 4165	},
 4166	{
 4167		Date: "Dec-01",
 4168		Population: "230400",
 4169		Felony: "177",
 4170		Misdemeanor: "1778",
 4171		DWI: "267",
 4172		"Traffic Tickets": "3954",
 4173		"Traffic Warnings": "3450",
 4174		"All Reportable": "807",
 4175		"Property Damage": "623",
 4176		Injury: "184",
 4177		Fatality: "0",
 4178		Homicide: "2",
 4179		"Rape and Attempted Rape": "8",
 4180		Robbery: "12",
 4181		"Aggravated Assault": "75",
 4182		"Burglary (Residential)": "128",
 4183		"Burglary (Non-Residential)": "27",
 4184		"Auto Theft": "33",
 4185		"All Thefts": "872",
 4186		"Stolen Bikes": "27",
 4187		"Theft From Vehicles": "334",
 4188		Shoplifting: "154",
 4189		Vandalism: "426",
 4190		Fraud: "72",
 4191		Forgery: "94",
 4192		Arson: "0",
 4193	},
 4194	{
 4195		Date: "Jan-02",
 4196		Population: "233737",
 4197		Felony: "183",
 4198		Misdemeanor: "1707",
 4199		DWI: "124",
 4200		"Traffic Tickets": "3846",
 4201		"Traffic Warnings": "4225",
 4202		"All Reportable": "688",
 4203		"Property Damage": "548",
 4204		Injury: "139",
 4205		Fatality: "1",
 4206		Homicide: "1",
 4207		"Rape and Attempted Rape": "5",
 4208		Robbery: "14",
 4209		"Aggravated Assault": "78",
 4210		"Burglary (Residential)": "119",
 4211		"Burglary (Non-Residential)": "45",
 4212		"Auto Theft": "39",
 4213		"All Thefts": "796",
 4214		"Stolen Bikes": "31",
 4215		"Theft From Vehicles": "323",
 4216		Shoplifting: "135",
 4217		Vandalism: "529",
 4218		Fraud: "120",
 4219		Forgery: "135",
 4220		Arson: "0",
 4221	},
 4222	{
 4223		Date: "Feb-02",
 4224		Population: "233737",
 4225		Felony: "242",
 4226		Misdemeanor: "1669",
 4227		DWI: "127",
 4228		"Traffic Tickets": "3935",
 4229		"Traffic Warnings": "3832",
 4230		"All Reportable": "672",
 4231		"Property Damage": "513",
 4232		Injury: "158",
 4233		Fatality: "1",
 4234		Homicide: "0",
 4235		"Rape and Attempted Rape": "8",
 4236		Robbery: "7",
 4237		"Aggravated Assault": "70",
 4238		"Burglary (Residential)": "96",
 4239		"Burglary (Non-Residential)": "10",
 4240		"Auto Theft": "34",
 4241		"All Thefts": "697",
 4242		"Stolen Bikes": "19",
 4243		"Theft From Vehicles": "306",
 4244		Shoplifting: "107",
 4245		Vandalism: "338",
 4246		Fraud: "84",
 4247		Forgery: "214",
 4248		Arson: "0",
 4249	},
 4250	{
 4251		Date: "Mar-02",
 4252		Population: "233737",
 4253		Felony: "239",
 4254		Misdemeanor: "1943",
 4255		DWI: "146",
 4256		"Traffic Tickets": "4361",
 4257		"Traffic Warnings": "3586",
 4258		"All Reportable": "830",
 4259		"Property Damage": "645",
 4260		Injury: "185",
 4261		Fatality: "0",
 4262		Homicide: "1",
 4263		"Rape and Attempted Rape": "4",
 4264		Robbery: "7",
 4265		"Aggravated Assault": "76",
 4266		"Burglary (Residential)": "92",
 4267		"Burglary (Non-Residential)": "22",
 4268		"Auto Theft": "38",
 4269		"All Thefts": "965",
 4270		"Stolen Bikes": "22",
 4271		"Theft From Vehicles": "466",
 4272		Shoplifting: "125",
 4273		Vandalism: "462",
 4274		Fraud: "73",
 4275		Forgery: "232",
 4276		Arson: "0",
 4277	},
 4278	{
 4279		Date: "Apr-02",
 4280		Population: "233737",
 4281		Felony: "193",
 4282		Misdemeanor: "2247",
 4283		DWI: "115",
 4284		"Traffic Tickets": "4340",
 4285		"Traffic Warnings": "4055",
 4286		"All Reportable": "685",
 4287		"Property Damage": "512",
 4288		Injury: "172",
 4289		Fatality: "1",
 4290		Homicide: "1",
 4291		"Rape and Attempted Rape": "11",
 4292		Robbery: "13",
 4293		"Aggravated Assault": "90",
 4294		"Burglary (Residential)": "117",
 4295		"Burglary (Non-Residential)": "39",
 4296		"Auto Theft": "45",
 4297		"All Thefts": "872",
 4298		"Stolen Bikes": "52",
 4299		"Theft From Vehicles": "313",
 4300		Shoplifting: "144",
 4301		Vandalism: "438",
 4302		Fraud: "68",
 4303		Forgery: "218",
 4304		Arson: "0",
 4305	},
 4306	{
 4307		Date: "May-02",
 4308		Population: "233737",
 4309		Felony: "209",
 4310		Misdemeanor: "2023",
 4311		DWI: "146",
 4312		"Traffic Tickets": "5492",
 4313		"Traffic Warnings": "3914",
 4314		"All Reportable": "814",
 4315		"Property Damage": "605",
 4316		Injury: "209",
 4317		Fatality: "0",
 4318		Homicide: "2",
 4319		"Rape and Attempted Rape": "9",
 4320		Robbery: "28",
 4321		"Aggravated Assault": "88",
 4322		"Burglary (Residential)": "103",
 4323		"Burglary (Non-Residential)": "19",
 4324		"Auto Theft": "38",
 4325		"All Thefts": "903",
 4326		"Stolen Bikes": "57",
 4327		"Theft From Vehicles": "391",
 4328		Shoplifting: "149",
 4329		Vandalism: "471",
 4330		Fraud: "92",
 4331		Forgery: "140",
 4332		Arson: "0",
 4333	},
 4334	{
 4335		Date: "Jun-02",
 4336		Population: "233737",
 4337		Felony: "169",
 4338		Misdemeanor: "2014",
 4339		DWI: "105",
 4340		"Traffic Tickets": "4913",
 4341		"Traffic Warnings": "3860",
 4342		"All Reportable": "705",
 4343		"Property Damage": "516",
 4344		Injury: "188",
 4345		Fatality: "1",
 4346		Homicide: "2",
 4347		"Rape and Attempted Rape": "8",
 4348		Robbery: "14",
 4349		"Aggravated Assault": "79",
 4350		"Burglary (Residential)": "143",
 4351		"Burglary (Non-Residential)": "33",
 4352		"Auto Theft": "43",
 4353		"All Thefts": "910",
 4354		"Stolen Bikes": "91",
 4355		"Theft From Vehicles": "373",
 4356		Shoplifting: "97",
 4357		Vandalism: "518",
 4358		Fraud: "58",
 4359		Forgery: "111",
 4360		Arson: "0",
 4361	},
 4362	{
 4363		Date: "Jul-02",
 4364		Population: "233737",
 4365		Felony: "226",
 4366		Misdemeanor: "1970",
 4367		DWI: "98",
 4368		"Traffic Tickets": "4703",
 4369		"Traffic Warnings": "3437",
 4370		"All Reportable": "689",
 4371		"Property Damage": "519",
 4372		Injury: "169",
 4373		Fatality: "1",
 4374		Homicide: "0",
 4375		"Rape and Attempted Rape": "9",
 4376		Robbery: "13",
 4377		"Aggravated Assault": "104",
 4378		"Burglary (Residential)": "158",
 4379		"Burglary (Non-Residential)": "68",
 4380		"Auto Theft": "43",
 4381		"All Thefts": "1053",
 4382		"Stolen Bikes": "108",
 4383		"Theft From Vehicles": "449",
 4384		Shoplifting: "122",
 4385		Vandalism: "618",
 4386		Fraud: "95",
 4387		Forgery: "181",
 4388		Arson: "0",
 4389	},
 4390	{
 4391		Date: "Aug-02",
 4392		Population: "233737",
 4393		Felony: "199",
 4394		Misdemeanor: "2196",
 4395		DWI: "115",
 4396		"Traffic Tickets": "4805",
 4397		"Traffic Warnings": "3178",
 4398		"All Reportable": "774",
 4399		"Property Damage": "557",
 4400		Injury: "215",
 4401		Fatality: "2",
 4402		Homicide: "0",
 4403		"Rape and Attempted Rape": "14",
 4404		Robbery: "15",
 4405		"Aggravated Assault": "86",
 4406		"Burglary (Residential)": "130",
 4407		"Burglary (Non-Residential)": "58",
 4408		"Auto Theft": "47",
 4409		"All Thefts": "1090",
 4410		"Stolen Bikes": "131",
 4411		"Theft From Vehicles": "463",
 4412		Shoplifting: "141",
 4413		Vandalism: "579",
 4414		Fraud: "120",
 4415		Forgery: "173",
 4416		Arson: "0",
 4417	},
 4418	{
 4419		Date: "Sep-02",
 4420		Population: "233737",
 4421		Felony: "249",
 4422		Misdemeanor: "2137",
 4423		DWI: "128",
 4424		"Traffic Tickets": "4557",
 4425		"Traffic Warnings": "2763",
 4426		"All Reportable": "750",
 4427		"Property Damage": "547",
 4428		Injury: "203",
 4429		Fatality: "0",
 4430		Homicide: "0",
 4431		"Rape and Attempted Rape": "6",
 4432		Robbery: "19",
 4433		"Aggravated Assault": "87",
 4434		"Burglary (Residential)": "117",
 4435		"Burglary (Non-Residential)": "55",
 4436		"Auto Theft": "47",
 4437		"All Thefts": "1052",
 4438		"Stolen Bikes": "106",
 4439		"Theft From Vehicles": "453",
 4440		Shoplifting: "122",
 4441		Vandalism: "539",
 4442		Fraud: "83",
 4443		Forgery: "138",
 4444		Arson: "0",
 4445	},
 4446	{
 4447		Date: "Oct-02",
 4448		Population: "233737",
 4449		Felony: "174",
 4450		Misdemeanor: "1938",
 4451		DWI: "118",
 4452		"Traffic Tickets": "3851",
 4453		"Traffic Warnings": "2490",
 4454		"All Reportable": "852",
 4455		"Property Damage": "635",
 4456		Injury: "216",
 4457		Fatality: "1",
 4458		Homicide: "0",
 4459		"Rape and Attempted Rape": "6",
 4460		Robbery: "15",
 4461		"Aggravated Assault": "69",
 4462		"Burglary (Residential)": "85",
 4463		"Burglary (Non-Residential)": "76",
 4464		"Auto Theft": "55",
 4465		"All Thefts": "923",
 4466		"Stolen Bikes": "54",
 4467		"Theft From Vehicles": "359",
 4468		Shoplifting: "157",
 4469		Vandalism: "471",
 4470		Fraud: "90",
 4471		Forgery: "226",
 4472		Arson: "0",
 4473	},
 4474	{
 4475		Date: "Nov-02",
 4476		Population: "233737",
 4477		Felony: "192",
 4478		Misdemeanor: "1707",
 4479		DWI: "130",
 4480		"Traffic Tickets": "3830",
 4481		"Traffic Warnings": "2825",
 4482		"All Reportable": "804",
 4483		"Property Damage": "614",
 4484		Injury: "188",
 4485		Fatality: "2",
 4486		Homicide: "0",
 4487		"Rape and Attempted Rape": "7",
 4488		Robbery: "18",
 4489		"Aggravated Assault": "58",
 4490		"Burglary (Residential)": "105",
 4491		"Burglary (Non-Residential)": "91",
 4492		"Auto Theft": "48",
 4493		"All Thefts": "814",
 4494		"Stolen Bikes": "24",
 4495		"Theft From Vehicles": "323",
 4496		Shoplifting: "156",
 4497		Vandalism: "476",
 4498		Fraud: "96",
 4499		Forgery: "211",
 4500		Arson: "0",
 4501	},
 4502	{
 4503		Date: "Dec-02",
 4504		Population: "233737",
 4505		Felony: "167",
 4506		Misdemeanor: "1690",
 4507		DWI: "166",
 4508		"Traffic Tickets": "4210",
 4509		"Traffic Warnings": "3576",
 4510		"All Reportable": "694",
 4511		"Property Damage": "521",
 4512		Injury: "173",
 4513		Fatality: "0",
 4514		Homicide: "0",
 4515		"Rape and Attempted Rape": "10",
 4516		Robbery: "14",
 4517		"Aggravated Assault": "62",
 4518		"Burglary (Residential)": "115",
 4519		"Burglary (Non-Residential)": "68",
 4520		"Auto Theft": "36",
 4521		"All Thefts": "930",
 4522		"Stolen Bikes": "16",
 4523		"Theft From Vehicles": "398",
 4524		Shoplifting: "119",
 4525		Vandalism: "555",
 4526		Fraud: "101",
 4527		Forgery: "219",
 4528		Arson: "0",
 4529	},
 4530	{
 4531		Date: "Jan-03",
 4532		Population: "237356",
 4533		Felony: "178",
 4534		Misdemeanor: "1457",
 4535		DWI: "115",
 4536		"Traffic Tickets": "3434",
 4537		"Traffic Warnings": "2601",
 4538		"All Reportable": "742",
 4539		"Property Damage": "596",
 4540		Injury: "144",
 4541		Fatality: "2",
 4542		Homicide: "0",
 4543		"Rape and Attempted Rape": "5",
 4544		Robbery: "23",
 4545		"Aggravated Assault": "61",
 4546		"Burglary (Residential)": "92",
 4547		"Burglary (Non-Residential)": "81",
 4548		"Auto Theft": "25",
 4549		"All Thefts": "765",
 4550		"Stolen Bikes": "14",
 4551		"Theft From Vehicles": "313",
 4552		Shoplifting: "118",
 4553		Vandalism: "457",
 4554		Fraud: "95",
 4555		Forgery: "273",
 4556		Arson: "0",
 4557	},
 4558	{
 4559		Date: "Feb-03",
 4560		Population: "237356",
 4561		Felony: "180",
 4562		Misdemeanor: "1433",
 4563		DWI: "76",
 4564		"Traffic Tickets": "3537",
 4565		"Traffic Warnings": "2106",
 4566		"All Reportable": "929",
 4567		"Property Damage": "737",
 4568		Injury: "192",
 4569		Fatality: "0",
 4570		Homicide: "0",
 4571		"Rape and Attempted Rape": "3",
 4572		Robbery: "10",
 4573		"Aggravated Assault": "65",
 4574		"Burglary (Residential)": "67",
 4575		"Burglary (Non-Residential)": "24",
 4576		"Auto Theft": "33",
 4577		"All Thefts": "654",
 4578		"Stolen Bikes": "8",
 4579		"Theft From Vehicles": "266",
 4580		Shoplifting: "110",
 4581		Vandalism: "336",
 4582		Fraud: "60",
 4583		Forgery: "221",
 4584		Arson: "0",
 4585	},
 4586	{
 4587		Date: "Mar-03",
 4588		Population: "237356",
 4589		Felony: "244",
 4590		Misdemeanor: "2041",
 4591		DWI: "162",
 4592		"Traffic Tickets": "4138",
 4593		"Traffic Warnings": "2317",
 4594		"All Reportable": "714",
 4595		"Property Damage": "573",
 4596		Injury: "140",
 4597		Fatality: "1",
 4598		Homicide: "1",
 4599		"Rape and Attempted Rape": "8",
 4600		Robbery: "9",
 4601		"Aggravated Assault": "79",
 4602		"Burglary (Residential)": "95",
 4603		"Burglary (Non-Residential)": "81",
 4604		"Auto Theft": "50",
 4605		"All Thefts": "945",
 4606		"Stolen Bikes": "17",
 4607		"Theft From Vehicles": "460",
 4608		Shoplifting: "118",
 4609		Vandalism: "589",
 4610		Fraud: "113",
 4611		Forgery: "249",
 4612		Arson: "0",
 4613	},
 4614	{
 4615		Date: "Apr-03",
 4616		Population: "237356",
 4617		Felony: "165",
 4618		Misdemeanor: "1927",
 4619		DWI: "83",
 4620		"Traffic Tickets": "4431",
 4621		"Traffic Warnings": "2474",
 4622		"All Reportable": "768",
 4623		"Property Damage": "576",
 4624		Injury: "191",
 4625		Fatality: "1",
 4626		Homicide: "1",
 4627		"Rape and Attempted Rape": "5",
 4628		Robbery: "12",
 4629		"Aggravated Assault": "76",
 4630		"Burglary (Residential)": "96",
 4631		"Burglary (Non-Residential)": "43",
 4632		"Auto Theft": "52",
 4633		"All Thefts": "823",
 4634		"Stolen Bikes": "24",
 4635		"Theft From Vehicles": "347",
 4636		Shoplifting: "139",
 4637		Vandalism: "531",
 4638		Fraud: "91",
 4639		Forgery: "183",
 4640		Arson: "0",
 4641	},
 4642	{
 4643		Date: "May-03",
 4644		Population: "237356",
 4645		Felony: "154",
 4646		Misdemeanor: "2088",
 4647		DWI: "95",
 4648		"Traffic Tickets": "5124",
 4649		"Traffic Warnings": "2460",
 4650		"All Reportable": "803",
 4651		"Property Damage": "599",
 4652		Injury: "202",
 4653		Fatality: "2",
 4654		Homicide: "0",
 4655		"Rape and Attempted Rape": "8",
 4656		Robbery: "15",
 4657		"Aggravated Assault": "85",
 4658		"Burglary (Residential)": "94",
 4659		"Burglary (Non-Residential)": "61",
 4660		"Auto Theft": "38",
 4661		"All Thefts": "1035",
 4662		"Stolen Bikes": "52",
 4663		"Theft From Vehicles": "456",
 4664		Shoplifting: "134",
 4665		Vandalism: "537",
 4666		Fraud: "84",
 4667		Forgery: "148",
 4668		Arson: "0",
 4669	},
 4670	{
 4671		Date: "Jun-03",
 4672		Population: "237356",
 4673		Felony: "198",
 4674		Misdemeanor: "1973",
 4675		DWI: "105",
 4676		"Traffic Tickets": "3929",
 4677		"Traffic Warnings": "2385",
 4678		"All Reportable": "737",
 4679		"Property Damage": "553",
 4680		Injury: "182",
 4681		Fatality: "2",
 4682		Homicide: "0",
 4683		"Rape and Attempted Rape": "10",
 4684		Robbery: "16",
 4685		"Aggravated Assault": "72",
 4686		"Burglary (Residential)": "150",
 4687		"Burglary (Non-Residential)": "68",
 4688		"Auto Theft": "43",
 4689		"All Thefts": "938",
 4690		"Stolen Bikes": "62",
 4691		"Theft From Vehicles": "402",
 4692		Shoplifting: "125",
 4693		Vandalism: "478",
 4694		Fraud: "94",
 4695		Forgery: "273",
 4696		Arson: "0",
 4697	},
 4698	{
 4699		Date: "Jul-03",
 4700		Population: "237356",
 4701		Felony: "194",
 4702		Misdemeanor: "1962",
 4703		DWI: "96",
 4704		"Traffic Tickets": "4425",
 4705		"Traffic Warnings": "2786",
 4706		"All Reportable": "738",
 4707		"Property Damage": "558",
 4708		Injury: "179",
 4709		Fatality: "1",
 4710		Homicide: "1",
 4711		"Rape and Attempted Rape": "9",
 4712		Robbery: "11",
 4713		"Aggravated Assault": "73",
 4714		"Burglary (Residential)": "121",
 4715		"Burglary (Non-Residential)": "56",
 4716		"Auto Theft": "35",
 4717		"All Thefts": "988",
 4718		"Stolen Bikes": "108",
 4719		"Theft From Vehicles": "385",
 4720		Shoplifting: "131",
 4721		Vandalism: "832",
 4722		Fraud: "95",
 4723		Forgery: "239",
 4724		Arson: "0",
 4725	},
 4726	{
 4727		Date: "Aug-03",
 4728		Population: "237356",
 4729		Felony: "183",
 4730		Misdemeanor: "2190",
 4731		DWI: "97",
 4732		"Traffic Tickets": "3870",
 4733		"Traffic Warnings": "2614",
 4734		"All Reportable": "666",
 4735		"Property Damage": "510",
 4736		Injury: "155",
 4737		Fatality: "1",
 4738		Homicide: "0",
 4739		"Rape and Attempted Rape": "11",
 4740		Robbery: "9",
 4741		"Aggravated Assault": "75",
 4742		"Burglary (Residential)": "123",
 4743		"Burglary (Non-Residential)": "35",
 4744		"Auto Theft": "45",
 4745		"All Thefts": "1011",
 4746		"Stolen Bikes": "81",
 4747		"Theft From Vehicles": "427",
 4748		Shoplifting: "137",
 4749		Vandalism: "485",
 4750		Fraud: "99",
 4751		Forgery: "286",
 4752		Arson: "0",
 4753	},
 4754	{
 4755		Date: "Sep-03",
 4756		Population: "237356",
 4757		Felony: "156",
 4758		Misdemeanor: "1828",
 4759		DWI: "98",
 4760		"Traffic Tickets": "3854",
 4761		"Traffic Warnings": "2847",
 4762		"All Reportable": "757",
 4763		"Property Damage": "567",
 4764		Injury: "190",
 4765		Fatality: "0",
 4766		Homicide: "0",
 4767		"Rape and Attempted Rape": "9",
 4768		Robbery: "10",
 4769		"Aggravated Assault": "82",
 4770		"Burglary (Residential)": "126",
 4771		"Burglary (Non-Residential)": "37",
 4772		"Auto Theft": "37",
 4773		"All Thefts": "966",
 4774		"Stolen Bikes": "76",
 4775		"Theft From Vehicles": "359",
 4776		Shoplifting: "134",
 4777		Vandalism: "471",
 4778		Fraud: "88",
 4779		Forgery: "151",
 4780		Arson: "0",
 4781	},
 4782	{
 4783		Date: "Oct-03",
 4784		Population: "237356",
 4785		Felony: "209",
 4786		Misdemeanor: "1883",
 4787		DWI: "116",
 4788		"Traffic Tickets": "3905",
 4789		"Traffic Warnings": "2261",
 4790		"All Reportable": "809",
 4791		"Property Damage": "623",
 4792		Injury: "181",
 4793		Fatality: "5",
 4794		Homicide: "1",
 4795		"Rape and Attempted Rape": "13",
 4796		Robbery: "11",
 4797		"Aggravated Assault": "68",
 4798		"Burglary (Residential)": "122",
 4799		"Burglary (Non-Residential)": "56",
 4800		"Auto Theft": "41",
 4801		"All Thefts": "1038",
 4802		"Stolen Bikes": "54",
 4803		"Theft From Vehicles": "374",
 4804		Shoplifting: "145",
 4805		Vandalism: "529",
 4806		Fraud: "87",
 4807		Forgery: "230",
 4808		Arson: "0",
 4809	},
 4810	{
 4811		Date: "Nov-03",
 4812		Population: "237356",
 4813		Felony: "165",
 4814		Misdemeanor: "1712",
 4815		DWI: "115",
 4816		"Traffic Tickets": "3868",
 4817		"Traffic Warnings": "2431",
 4818		"All Reportable": "734",
 4819		"Property Damage": "590",
 4820		Injury: "140",
 4821		Fatality: "4",
 4822		Homicide: "0",
 4823		"Rape and Attempted Rape": "6",
 4824		Robbery: "10",
 4825		"Aggravated Assault": "53",
 4826		"Burglary (Residential)": "99",
 4827		"Burglary (Non-Residential)": "44",
 4828		"Auto Theft": "31",
 4829		"All Thefts": "817",
 4830		"Stolen Bikes": "28",
 4831		"Theft From Vehicles": "315",
 4832		Shoplifting: "115",
 4833		Vandalism: "488",
 4834		Fraud: "89",
 4835		Forgery: "156",
 4836		Arson: "0",
 4837	},
 4838	{
 4839		Date: "Dec-03",
 4840		Population: "237356",
 4841		Felony: "163",
 4842		Misdemeanor: "1560",
 4843		DWI: "182",
 4844		"Traffic Tickets": "3690",
 4845		"Traffic Warnings": "3058",
 4846		"All Reportable": "893",
 4847		"Property Damage": "727",
 4848		Injury: "165",
 4849		Fatality: "1",
 4850		Homicide: "0",
 4851		"Rape and Attempted Rape": "9",
 4852		Robbery: "10",
 4853		"Aggravated Assault": "48",
 4854		"Burglary (Residential)": "101",
 4855		"Burglary (Non-Residential)": "40",
 4856		"Auto Theft": "39",
 4857		"All Thefts": "815",
 4858		"Stolen Bikes": "15",
 4859		"Theft From Vehicles": "308",
 4860		Shoplifting: "107",
 4861		Vandalism: "496",
 4862		Fraud: "97",
 4863		Forgery: "160",
 4864		Arson: "0",
 4865	},
 4866	{
 4867		Date: "Jan-04",
 4868		Population: "239417",
 4869		Felony: "127",
 4870		Misdemeanor: "1593",
 4871		DWI: "153",
 4872		"Traffic Tickets": "3516",
 4873		"Traffic Warnings": "2818",
 4874		"All Reportable": "730",
 4875		"Property Damage": "568",
 4876		Injury: "162",
 4877		Fatality: "0",
 4878		Homicide: "0",
 4879		"Rape and Attempted Rape": "9",
 4880		Robbery: "17",
 4881		"Aggravated Assault": "58",
 4882		"Burglary (Residential)": "63",
 4883		"Burglary (Non-Residential)": "19",
 4884		"Auto Theft": "29",
 4885		"All Thefts": "771",
 4886		"Stolen Bikes": "7",
 4887		"Theft From Vehicles": "286",
 4888		Shoplifting: "143",
 4889		Vandalism: "390",
 4890		Fraud: "88",
 4891		Forgery: "228",
 4892		Arson: "0",
 4893	},
 4894	{
 4895		Date: "Feb-04",
 4896		Population: "239417",
 4897		Felony: "164",
 4898		Misdemeanor: "1712",
 4899		DWI: "128",
 4900		"Traffic Tickets": "3984",
 4901		"Traffic Warnings": "3602",
 4902		"All Reportable": "851",
 4903		"Property Damage": "689",
 4904		Injury: "162",
 4905		Fatality: "0",
 4906		Homicide: "0",
 4907		"Rape and Attempted Rape": "7",
 4908		Robbery: "16",
 4909		"Aggravated Assault": "53",
 4910		"Burglary (Residential)": "67",
 4911		"Burglary (Non-Residential)": "27",
 4912		"Auto Theft": "43",
 4913		"All Thefts": "619",
 4914		"Stolen Bikes": "5",
 4915		"Theft From Vehicles": "193",
 4916		Shoplifting: "103",
 4917		Vandalism: "298",
 4918		Fraud: "84",
 4919		Forgery: "62",
 4920		Arson: "0",
 4921	},
 4922	{
 4923		Date: "Mar-04",
 4924		Population: "239417",
 4925		Felony: "227",
 4926		Misdemeanor: "2154",
 4927		DWI: "147",
 4928		"Traffic Tickets": "4713",
 4929		"Traffic Warnings": "3561",
 4930		"All Reportable": "588",
 4931		"Property Damage": "460",
 4932		Injury: "128",
 4933		Fatality: "0",
 4934		Homicide: "0",
 4935		"Rape and Attempted Rape": "15",
 4936		Robbery: "16",
 4937		"Aggravated Assault": "67",
 4938		"Burglary (Residential)": "107",
 4939		"Burglary (Non-Residential)": "43",
 4940		"Auto Theft": "42",
 4941		"All Thefts": "804",
 4942		"Stolen Bikes": "35",
 4943		"Theft From Vehicles": "281",
 4944		Shoplifting: "129",
 4945		Vandalism: "452",
 4946		Fraud: "81",
 4947		Forgery: "127",
 4948		Arson: "0",
 4949	},
 4950	{
 4951		Date: "Apr-04",
 4952		Population: "239417",
 4953		Felony: "232",
 4954		Misdemeanor: "1807",
 4955		DWI: "119",
 4956		"Traffic Tickets": "5334",
 4957		"Traffic Warnings": "4078",
 4958		"All Reportable": "635",
 4959		"Property Damage": "455",
 4960		Injury: "179",
 4961		Fatality: "1",
 4962		Homicide: "1",
 4963		"Rape and Attempted Rape": "16",
 4964		Robbery: "10",
 4965		"Aggravated Assault": "70",
 4966		"Burglary (Residential)": "111",
 4967		"Burglary (Non-Residential)": "33",
 4968		"Auto Theft": "24",
 4969		"All Thefts": "805",
 4970		"Stolen Bikes": "34",
 4971		"Theft From Vehicles": "317",
 4972		Shoplifting: "105",
 4973		Vandalism: "410",
 4974		Fraud: "91",
 4975		Forgery: "87",
 4976		Arson: "0",
 4977	},
 4978	{
 4979		Date: "May-04",
 4980		Population: "239417",
 4981		Felony: "160",
 4982		Misdemeanor: "1891",
 4983		DWI: "139",
 4984		"Traffic Tickets": "5408",
 4985		"Traffic Warnings": "4199",
 4986		"All Reportable": "650",
 4987		"Property Damage": "483",
 4988		Injury: "167",
 4989		Fatality: "0",
 4990		Homicide: "0",
 4991		"Rape and Attempted Rape": "11",
 4992		Robbery: "11",
 4993		"Aggravated Assault": "73",
 4994		"Burglary (Residential)": "87",
 4995		"Burglary (Non-Residential)": "55",
 4996		"Auto Theft": "28",
 4997		"All Thefts": "888",
 4998		"Stolen Bikes": "54",
 4999		"Theft From Vehicles": "318",
 5000		Shoplifting: "121",
 5001		Vandalism: "508",
 5002		Fraud: "92",
 5003		Forgery: "91",
 5004		Arson: "0",
 5005	},
 5006	{
 5007		Date: "Jun-04",
 5008		Population: "239417",
 5009		Felony: "191",
 5010		Misdemeanor: "2035",
 5011		DWI: "127",
 5012		"Traffic Tickets": "4983",
 5013		"Traffic Warnings": "4406",
 5014		"All Reportable": "717",
 5015		"Property Damage": "526",
 5016		Injury: "190",
 5017		Fatality: "1",
 5018		Homicide: "1",
 5019		"Rape and Attempted Rape": "9",
 5020		Robbery: "17",
 5021		"Aggravated Assault": "92",
 5022		"Burglary (Residential)": "113",
 5023		"Burglary (Non-Residential)": "62",
 5024		"Auto Theft": "46",
 5025		"All Thefts": "1034",
 5026		"Stolen Bikes": "86",
 5027		"Theft From Vehicles": "396",
 5028		Shoplifting: "127",
 5029		Vandalism: "475",
 5030		Fraud: "82",
 5031		Forgery: "140",
 5032		Arson: "0",
 5033	},
 5034	{
 5035		Date: "Jul-04",
 5036		Population: "239417",
 5037		Felony: "195",
 5038		Misdemeanor: "1939",
 5039		DWI: "110",
 5040		"Traffic Tickets": "4369",
 5041		"Traffic Warnings": "3615",
 5042		"All Reportable": "734",
 5043		"Property Damage": "533",
 5044		Injury: "201",
 5045		Fatality: "0",
 5046		Homicide: "2",
 5047		"Rape and Attempted Rape": "9",
 5048		Robbery: "8",
 5049		"Aggravated Assault": "82",
 5050		"Burglary (Residential)": "146",
 5051		"Burglary (Non-Residential)": "45",
 5052		"Auto Theft": "39",
 5053		"All Thefts": "1062",
 5054		"Stolen Bikes": "90",
 5055		"Theft From Vehicles": "441",
 5056		Shoplifting: "124",
 5057		Vandalism: "457",
 5058		Fraud: "113",
 5059		Forgery: "169",
 5060		Arson: "0",
 5061	},
 5062	{
 5063		Date: "Aug-04",
 5064		Population: "239417",
 5065		Felony: "196",
 5066		Misdemeanor: "2167",
 5067		DWI: "134",
 5068		"Traffic Tickets": "4180",
 5069		"Traffic Warnings": "4621",
 5070		"All Reportable": "654",
 5071		"Property Damage": "477",
 5072		Injury: "176",
 5073		Fatality: "1",
 5074		Homicide: "1",
 5075		"Rape and Attempted Rape": "6",
 5076		Robbery: "23",
 5077		"Aggravated Assault": "85",
 5078		"Burglary (Residential)": "142",
 5079		"Burglary (Non-Residential)": "55",
 5080		"Auto Theft": "33",
 5081		"All Thefts": "952",
 5082		"Stolen Bikes": "83",
 5083		"Theft From Vehicles": "363",
 5084		Shoplifting: "126",
 5085		Vandalism: "528",
 5086		Fraud: "120",
 5087		Forgery: "182",
 5088		Arson: "0",
 5089	},
 5090	{
 5091		Date: "Sep-04",
 5092		Population: "239417",
 5093		Felony: "164",
 5094		Misdemeanor: "2092",
 5095		DWI: "106",
 5096		"Traffic Tickets": "4454",
 5097		"Traffic Warnings": "4168",
 5098		"All Reportable": "688",
 5099		"Property Damage": "497",
 5100		Injury: "191",
 5101		Fatality: "0",
 5102		Homicide: "1",
 5103		"Rape and Attempted Rape": "11",
 5104		Robbery: "17",
 5105		"Aggravated Assault": "68",
 5106		"Burglary (Residential)": "114",
 5107		"Burglary (Non-Residential)": "28",
 5108		"Auto Theft": "25",
 5109		"All Thefts": "954",
 5110		"Stolen Bikes": "84",
 5111		"Theft From Vehicles": "363",
 5112		Shoplifting: "119",
 5113		Vandalism: "367",
 5114		Fraud: "102",
 5115		Forgery: "78",
 5116		Arson: "0",
 5117	},
 5118	{
 5119		Date: "Oct-04",
 5120		Population: "239417",
 5121		Felony: "155",
 5122		Misdemeanor: "2109",
 5123		DWI: "126",
 5124		"Traffic Tickets": "3883",
 5125		"Traffic Warnings": "3214",
 5126		"All Reportable": "675",
 5127		"Property Damage": "485",
 5128		Injury: "189",
 5129		Fatality: "1",
 5130		Homicide: "0",
 5131		"Rape and Attempted Rape": "13",
 5132		Robbery: "23",
 5133		"Aggravated Assault": "83",
 5134		"Burglary (Residential)": "121",
 5135		"Burglary (Non-Residential)": "66",
 5136		"Auto Theft": "38",
 5137		"All Thefts": "997",
 5138		"Stolen Bikes": "53",
 5139		"Theft From Vehicles": "348",
 5140		Shoplifting: "154",
 5141		Vandalism: "548",
 5142		Fraud: "89",
 5143		Forgery: "133",
 5144		Arson: "0",
 5145	},
 5146	{
 5147		Date: "Nov-04",
 5148		Population: "239417",
 5149		Felony: "181",
 5150		Misdemeanor: "1588",
 5151		DWI: "143",
 5152		"Traffic Tickets": "3475",
 5153		"Traffic Warnings": "3234",
 5154		"All Reportable": "661",
 5155		"Property Damage": "496",
 5156		Injury: "164",
 5157		Fatality: "1",
 5158		Homicide: "1",
 5159		"Rape and Attempted Rape": "7",
 5160		Robbery: "23",
 5161		"Aggravated Assault": "58",
 5162		"Burglary (Residential)": "115",
 5163		"Burglary (Non-Residential)": "57",
 5164		"Auto Theft": "20",
 5165		"All Thefts": "831",
 5166		"Stolen Bikes": "14",
 5167		"Theft From Vehicles": "332",
 5168		Shoplifting: "129",
 5169		Vandalism: "438",
 5170		Fraud: "104",
 5171		Forgery: "167",
 5172		Arson: "0",
 5173	},
 5174	{
 5175		Date: "Dec-04",
 5176		Population: "239417",
 5177		Felony: "204",
 5178		Misdemeanor: "1774",
 5179		DWI: "213",
 5180		"Traffic Tickets": "4159",
 5181		"Traffic Warnings": "4219",
 5182		"All Reportable": "668",
 5183		"Property Damage": "512",
 5184		Injury: "155",
 5185		Fatality: "1",
 5186		Homicide: "0",
 5187		"Rape and Attempted Rape": "13",
 5188		Robbery: "10",
 5189		"Aggravated Assault": "77",
 5190		"Burglary (Residential)": "126",
 5191		"Burglary (Non-Residential)": "48",
 5192		"Auto Theft": "38",
 5193		"All Thefts": "879",
 5194		"Stolen Bikes": "21",
 5195		"Theft From Vehicles": "264",
 5196		Shoplifting: "143",
 5197		Vandalism: "475",
 5198		Fraud: "101",
 5199		Forgery: "113",
 5200		Arson: "0",
 5201	},
 5202	{
 5203		Date: "Jan-05",
 5204		Population: "242009",
 5205		Felony: "126",
 5206		Misdemeanor: "1511",
 5207		DWI: "131",
 5208		"Traffic Tickets": "3729",
 5209		"Traffic Warnings": "4545",
 5210		"All Reportable": "1006",
 5211		"Property Damage": "840",
 5212		Injury: "165",
 5213		Fatality: "1",
 5214		Homicide: "0",
 5215		"Rape and Attempted Rape": "9",
 5216		Robbery: "11",
 5217		"Aggravated Assault": "57",
 5218		"Burglary (Residential)": "63",
 5219		"Burglary (Non-Residential)": "47",
 5220		"Auto Theft": "20",
 5221		"All Thefts": "731",
 5222		"Stolen Bikes": "8",
 5223		"Theft From Vehicles": "300",
 5224		Shoplifting: "122",
 5225		Vandalism: "414",
 5226		Fraud: "55",
 5227		Forgery: "55",
 5228		Arson: "0",
 5229	},
 5230	{
 5231		Date: "Feb-05",
 5232		Population: "242009",
 5233		Felony: "163",
 5234		Misdemeanor: "1727",
 5235		DWI: "113",
 5236		"Traffic Tickets": "4354",
 5237		"Traffic Warnings": "4692",
 5238		"All Reportable": "794",
 5239		"Property Damage": "658",
 5240		Injury: "134",
 5241		Fatality: "2",
 5242		Homicide: "0",
 5243		"Rape and Attempted Rape": "9",
 5244		Robbery: "10",
 5245		"Aggravated Assault": "65",
 5246		"Burglary (Residential)": "75",
 5247		"Burglary (Non-Residential)": "64",
 5248		"Auto Theft": "22",
 5249		"All Thefts": "695",
 5250		"Stolen Bikes": "12",
 5251		"Theft From Vehicles": "280",
 5252		Shoplifting: "133",
 5253		Vandalism: "365",
 5254		Fraud: "70",
 5255		Forgery: "99",
 5256		Arson: "0",
 5257	},
 5258	{
 5259		Date: "Mar-05",
 5260		Population: "242009",
 5261		Felony: "202",
 5262		Misdemeanor: "2069",
 5263		DWI: "111",
 5264		"Traffic Tickets": "5564",
 5265		"Traffic Warnings": "5036",
 5266		"All Reportable": "665",
 5267		"Property Damage": "517",
 5268		Injury: "148",
 5269		Fatality: "0",
 5270		Homicide: "0",
 5271		"Rape and Attempted Rape": "9",
 5272		Robbery: "15",
 5273		"Aggravated Assault": "83",
 5274		"Burglary (Residential)": "103",
 5275		"Burglary (Non-Residential)": "48",
 5276		"Auto Theft": "50",
 5277		"All Thefts": "870",
 5278		"Stolen Bikes": "32",
 5279		"Theft From Vehicles": "310",
 5280		Shoplifting: "133",
 5281		Vandalism: "524",
 5282		Fraud: "69",
 5283		Forgery: "196",
 5284		Arson: "0",
 5285	},
 5286	{
 5287		Date: "Apr-05",
 5288		Population: "242009",
 5289		Felony: "244",
 5290		Misdemeanor: "2054",
 5291		DWI: "118",
 5292		"Traffic Tickets": "4506",
 5293		"Traffic Warnings": "3589",
 5294		"All Reportable": "799",
 5295		"Property Damage": "637",
 5296		Injury: "162",
 5297		Fatality: "0",
 5298		Homicide: "1",
 5299		"Rape and Attempted Rape": "14",
 5300		Robbery: "17",
 5301		"Aggravated Assault": "106",
 5302		"Burglary (Residential)": "108",
 5303		"Burglary (Non-Residential)": "40",
 5304		"Auto Theft": "44",
 5305		"All Thefts": "928",
 5306		"Stolen Bikes": "39",
 5307		"Theft From Vehicles": "371",
 5308		Shoplifting: "113",
 5309		Vandalism: "375",
 5310		Fraud: "103",
 5311		Forgery: "86",
 5312		Arson: "0",
 5313	},
 5314	{
 5315		Date: "May-05",
 5316		Population: "242009",
 5317		Felony: "231",
 5318		Misdemeanor: "2453",
 5319		DWI: "138",
 5320		"Traffic Tickets": "5513",
 5321		"Traffic Warnings": "4696",
 5322		"All Reportable": "770",
 5323		"Property Damage": "607",
 5324		Injury: "161",
 5325		Fatality: "2",
 5326		Homicide: "1",
 5327		"Rape and Attempted Rape": "6",
 5328		Robbery: "22",
 5329		"Aggravated Assault": "101",
 5330		"Burglary (Residential)": "115",
 5331		"Burglary (Non-Residential)": "60",
 5332		"Auto Theft": "55",
 5333		"All Thefts": "969",
 5334		"Stolen Bikes": "60",
 5335		"Theft From Vehicles": "324",
 5336		Shoplifting: "129",
 5337		Vandalism: "538",
 5338		Fraud: "101",
 5339		Forgery: "169",
 5340		Arson: "0",
 5341	},
 5342	{
 5343		Date: "Jun-05",
 5344		Population: "242009",
 5345		Felony: "198",
 5346		Misdemeanor: "2094",
 5347		DWI: "124",
 5348		"Traffic Tickets": "5648",
 5349		"Traffic Warnings": "4968",
 5350		"All Reportable": "807",
 5351		"Property Damage": "638",
 5352		Injury: "169",
 5353		Fatality: "0",
 5354		Homicide: "0",
 5355		"Rape and Attempted Rape": "9",
 5356		Robbery: "12",
 5357		"Aggravated Assault": "80",
 5358		"Burglary (Residential)": "113",
 5359		"Burglary (Non-Residential)": "38",
 5360		"Auto Theft": "35",
 5361		"All Thefts": "885",
 5362		"Stolen Bikes": "85",
 5363		"Theft From Vehicles": "350",
 5364		Shoplifting: "95",
 5365		Vandalism: "503",
 5366		Fraud: "76",
 5367		Forgery: "106",
 5368		Arson: "0",
 5369	},
 5370	{
 5371		Date: "Jul-05",
 5372		Population: "242009",
 5373		Felony: "259",
 5374		Misdemeanor: "2212",
 5375		DWI: "154",
 5376		"Traffic Tickets": "5415",
 5377		"Traffic Warnings": "5415",
 5378		"All Reportable": "702",
 5379		"Property Damage": "554",
 5380		Injury: "148",
 5381		Fatality: "0",
 5382		Homicide: "0",
 5383		"Rape and Attempted Rape": "6",
 5384		Robbery: "22",
 5385		"Aggravated Assault": "72",
 5386		"Burglary (Residential)": "120",
 5387		"Burglary (Non-Residential)": "47",
 5388		"Auto Theft": "26",
 5389		"All Thefts": "807",
 5390		"Stolen Bikes": "79",
 5391		"Theft From Vehicles": "258",
 5392		Shoplifting: "106",
 5393		Vandalism: "495",
 5394		Fraud: "93",
 5395		Forgery: "115",
 5396		Arson: "0",
 5397	},
 5398	{
 5399		Date: "Aug-05",
 5400		Population: "242009",
 5401		Felony: "211",
 5402		Misdemeanor: "2320",
 5403		DWI: "142",
 5404		"Traffic Tickets": "5330",
 5405		"Traffic Warnings": "5922",
 5406		"All Reportable": "786",
 5407		"Property Damage": "633",
 5408		Injury: "151",
 5409		Fatality: "2",
 5410		Homicide: "1",
 5411		"Rape and Attempted Rape": "8",
 5412		Robbery: "21",
 5413		"Aggravated Assault": "78",
 5414		"Burglary (Residential)": "127",
 5415		"Burglary (Non-Residential)": "51",
 5416		"Auto Theft": "41",
 5417		"All Thefts": "925",
 5418		"Stolen Bikes": "85",
 5419		"Theft From Vehicles": "306",
 5420		Shoplifting: "138",
 5421		Vandalism: "484",
 5422		Fraud: "97",
 5423		Forgery: "138",
 5424		Arson: "0",
 5425	},
 5426	{
 5427		Date: "Sep-05",
 5428		Population: "242009",
 5429		Felony: "182",
 5430		Misdemeanor: "2086",
 5431		DWI: "115",
 5432		"Traffic Tickets": "4213",
 5433		"Traffic Warnings": "3675",
 5434		"All Reportable": "699",
 5435		"Property Damage": "549",
 5436		Injury: "150",
 5437		Fatality: "0",
 5438		Homicide: "0",
 5439		"Rape and Attempted Rape": "12",
 5440		Robbery: "19",
 5441		"Aggravated Assault": "90",
 5442		"Burglary (Residential)": "112",
 5443		"Burglary (Non-Residential)": "33",
 5444		"Auto Theft": "27",
 5445		"All Thefts": "892",
 5446		"Stolen Bikes": "78",
 5447		"Theft From Vehicles": "304",
 5448		Shoplifting: "124",
 5449		Vandalism: "398",
 5450		Fraud: "78",
 5451		Forgery: "99",
 5452		Arson: "0",
 5453	},
 5454	{
 5455		Date: "Oct-05",
 5456		Population: "242009",
 5457		Felony: "249",
 5458		Misdemeanor: "2094",
 5459		DWI: "145",
 5460		"Traffic Tickets": "4500",
 5461		"Traffic Warnings": "4265",
 5462		"All Reportable": "769",
 5463		"Property Damage": "604",
 5464		Injury: "163",
 5465		Fatality: "2",
 5466		Homicide: "0",
 5467		"Rape and Attempted Rape": "7",
 5468		Robbery: "31",
 5469		"Aggravated Assault": "92",
 5470		"Burglary (Residential)": "139",
 5471		"Burglary (Non-Residential)": "42",
 5472		"Auto Theft": "32",
 5473		"All Thefts": "941",
 5474		"Stolen Bikes": "78",
 5475		"Theft From Vehicles": "278",
 5476		Shoplifting: "144",
 5477		Vandalism: "656",
 5478		Fraud: "75",
 5479		Forgery: "171",
 5480		Arson: "0",
 5481	},
 5482	{
 5483		Date: "Nov-05",
 5484		Population: "242009",
 5485		Felony: "192",
 5486		Misdemeanor: "1778",
 5487		DWI: "111",
 5488		"Traffic Tickets": "4689",
 5489		"Traffic Warnings": "4091",
 5490		"All Reportable": "745",
 5491		"Property Damage": "602",
 5492		Injury: "143",
 5493		Fatality: "0",
 5494		Homicide: "0",
 5495		"Rape and Attempted Rape": "12",
 5496		Robbery: "25",
 5497		"Aggravated Assault": "97",
 5498		"Burglary (Residential)": "102",
 5499		"Burglary (Non-Residential)": "61",
 5500		"Auto Theft": "26",
 5501		"All Thefts": "739",
 5502		"Stolen Bikes": "24",
 5503		"Theft From Vehicles": "208",
 5504		Shoplifting: "133",
 5505		Vandalism: "663",
 5506		Fraud: "87",
 5507		Forgery: "253",
 5508		Arson: "0",
 5509	},
 5510	{
 5511		Date: "Dec-05",
 5512		Population: "242009",
 5513		Felony: "171",
 5514		Misdemeanor: "1685",
 5515		DWI: "198",
 5516		"Traffic Tickets": "4271",
 5517		"Traffic Warnings": "5002",
 5518		"All Reportable": "1043",
 5519		"Property Damage": "880",
 5520		Injury: "163",
 5521		Fatality: "0",
 5522		Homicide: "1",
 5523		"Rape and Attempted Rape": "9",
 5524		Robbery: "20",
 5525		"Aggravated Assault": "68",
 5526		"Burglary (Residential)": "95",
 5527		"Burglary (Non-Residential)": "28",
 5528		"Auto Theft": "26",
 5529		"All Thefts": "726",
 5530		"Stolen Bikes": "15",
 5531		"Theft From Vehicles": "231",
 5532		Shoplifting: "121",
 5533		Vandalism: "329",
 5534		Fraud: "96",
 5535		Forgery: "101",
 5536		Arson: "0",
 5537	},
 5538	{
 5539		Date: "Jan-06",
 5540		Population: "244653",
 5541		Felony: "192",
 5542		Misdemeanor: "2183",
 5543		DWI: "156",
 5544		"Traffic Tickets": "5575",
 5545		"Traffic Warnings": "5962",
 5546		"All Reportable": "586",
 5547		"Property Damage": "462",
 5548		Injury: "124",
 5549		Fatality: "0",
 5550		Homicide: "0",
 5551		"Rape and Attempted Rape": "5",
 5552		Robbery: "9",
 5553		"Aggravated Assault": "69",
 5554		"Burglary (Residential)": "109",
 5555		"Burglary (Non-Residential)": "29",
 5556		"Auto Theft": "33",
 5557		"All Thefts": "715",
 5558		"Stolen Bikes": "24",
 5559		"Theft From Vehicles": "180",
 5560		Shoplifting: "122",
 5561		Vandalism: "472",
 5562		Fraud: "89",
 5563		Forgery: "141",
 5564		Arson: "0",
 5565	},
 5566	{
 5567		Date: "Feb-06",
 5568		Population: "244653",
 5569		Felony: "219",
 5570		Misdemeanor: "1976",
 5571		DWI: "134",
 5572		"Traffic Tickets": "4219",
 5573		"Traffic Warnings": "4400",
 5574		"All Reportable": "662",
 5575		"Property Damage": "534",
 5576		Injury: "128",
 5577		Fatality: "0",
 5578		Homicide: "1",
 5579		"Rape and Attempted Rape": "10",
 5580		Robbery: "14",
 5581		"Aggravated Assault": "78",
 5582		"Burglary (Residential)": "75",
 5583		"Burglary (Non-Residential)": "18",
 5584		"Auto Theft": "24",
 5585		"All Thefts": "556",
 5586		"Stolen Bikes": "19",
 5587		"Theft From Vehicles": "127",
 5588		Shoplifting: "99",
 5589		Vandalism: "396",
 5590		Fraud: "93",
 5591		Forgery: "190",
 5592		Arson: "0",
 5593	},
 5594	{
 5595		Date: "Mar-06",
 5596		Population: "244653",
 5597		Felony: "239",
 5598		Misdemeanor: "2237",
 5599		DWI: "178",
 5600		"Traffic Tickets": "4436",
 5601		"Traffic Warnings": "5160",
 5602		"All Reportable": "697",
 5603		"Property Damage": "556",
 5604		Injury: "140",
 5605		Fatality: "1",
 5606		Homicide: "0",
 5607		"Rape and Attempted Rape": "9",
 5608		Robbery: "16",
 5609		"Aggravated Assault": "63",
 5610		"Burglary (Residential)": "87",
 5611		"Burglary (Non-Residential)": "56",
 5612		"Auto Theft": "25",
 5613		"All Thefts": "703",
 5614		"Stolen Bikes": "23",
 5615		"Theft From Vehicles": "226",
 5616		Shoplifting: "125",
 5617		Vandalism: "441",
 5618		Fraud: "76",
 5619		Forgery: "146",
 5620		Arson: "0",
 5621	},
 5622	{
 5623		Date: "Apr-06",
 5624		Population: "244653",
 5625		Felony: "195",
 5626		Misdemeanor: "2318",
 5627		DWI: "149",
 5628		"Traffic Tickets": "4114",
 5629		"Traffic Warnings": "4159",
 5630		"All Reportable": "726",
 5631		"Property Damage": "545",
 5632		Injury: "180",
 5633		Fatality: "1",
 5634		Homicide: "0",
 5635		"Rape and Attempted Rape": "5",
 5636		Robbery: "10",
 5637		"Aggravated Assault": "98",
 5638		"Burglary (Residential)": "119",
 5639		"Burglary (Non-Residential)": "32",
 5640		"Auto Theft": "27",
 5641		"All Thefts": "692",
 5642		"Stolen Bikes": "41",
 5643		"Theft From Vehicles": "225",
 5644		Shoplifting: "97",
 5645		Vandalism: "461",
 5646		Fraud: "73",
 5647		Forgery: "100",
 5648		Arson: "0",
 5649	},
 5650	{
 5651		Date: "May-06",
 5652		Population: "244653",
 5653		Felony: "222",
 5654		Misdemeanor: "2265",
 5655		DWI: "163",
 5656		"Traffic Tickets": "5158",
 5657		"Traffic Warnings": "4828",
 5658		"All Reportable": "712",
 5659		"Property Damage": "527",
 5660		Injury: "184",
 5661		Fatality: "1",
 5662		Homicide: "0",
 5663		"Rape and Attempted Rape": "15",
 5664		Robbery: "13",
 5665		"Aggravated Assault": "69",
 5666		"Burglary (Residential)": "121",
 5667		"Burglary (Non-Residential)": "23",
 5668		"Auto Theft": "31",
 5669		"All Thefts": "827",
 5670		"Stolen Bikes": "62",
 5671		"Theft From Vehicles": "227",
 5672		Shoplifting: "100",
 5673		Vandalism: "488",
 5674		Fraud: "99",
 5675		Forgery: "243",
 5676		Arson: "0",
 5677	},
 5678	{
 5679		Date: "Jun-06",
 5680		Population: "244653",
 5681		Felony: "176",
 5682		Misdemeanor: "1905",
 5683		DWI: "119",
 5684		"Traffic Tickets": "4682",
 5685		"Traffic Warnings": "4071",
 5686		"All Reportable": "733",
 5687		"Property Damage": "564",
 5688		Injury: "168",
 5689		Fatality: "1",
 5690		Homicide: "0",
 5691		"Rape and Attempted Rape": "10",
 5692		Robbery: "13",
 5693		"Aggravated Assault": "73",
 5694		"Burglary (Residential)": "134",
 5695		"Burglary (Non-Residential)": "72",
 5696		"Auto Theft": "39",
 5697		"All Thefts": "873",
 5698		"Stolen Bikes": "95",
 5699		"Theft From Vehicles": "300",
 5700		Shoplifting: "121",
 5701		Vandalism: "549",
 5702		Fraud: "112",
 5703		Forgery: "100",
 5704		Arson: "0",
 5705	},
 5706	{
 5707		Date: "Jul-06",
 5708		Population: "244653",
 5709		Felony: "235",
 5710		Misdemeanor: "2198",
 5711		DWI: "141",
 5712		"Traffic Tickets": "4134",
 5713		"Traffic Warnings": "3778",
 5714		"All Reportable": "675",
 5715		"Property Damage": "519",
 5716		Injury: "156",
 5717		Fatality: "0",
 5718		Homicide: "1",
 5719		"Rape and Attempted Rape": "9",
 5720		Robbery: "15",
 5721		"Aggravated Assault": "98",
 5722		"Burglary (Residential)": "143",
 5723		"Burglary (Non-Residential)": "70",
 5724		"Auto Theft": "46",
 5725		"All Thefts": "1047",
 5726		"Stolen Bikes": "119",
 5727		"Theft From Vehicles": "404",
 5728		Shoplifting: "123",
 5729		Vandalism: "578",
 5730		Fraud: "85",
 5731		Forgery: "115",
 5732		Arson: "0",
 5733	},
 5734	{
 5735		Date: "Aug-06",
 5736		Population: "244653",
 5737		Felony: "227",
 5738		Misdemeanor: "2502",
 5739		DWI: "169",
 5740		"Traffic Tickets": "4529",
 5741		"Traffic Warnings": "4161",
 5742		"All Reportable": "723",
 5743		"Property Damage": "557",
 5744		Injury: "165",
 5745		Fatality: "1",
 5746		Homicide: "2",
 5747		"Rape and Attempted Rape": "9",
 5748		Robbery: "15",
 5749		"Aggravated Assault": "70",
 5750		"Burglary (Residential)": "142",
 5751		"Burglary (Non-Residential)": "50",
 5752		"Auto Theft": "45",
 5753		"All Thefts": "990",
 5754		"Stolen Bikes": "84",
 5755		"Theft From Vehicles": "392",
 5756		Shoplifting: "119",
 5757		Vandalism: "557",
 5758		Fraud: "85",
 5759		Forgery: "111",
 5760		Arson: "0",
 5761	},
 5762	{
 5763		Date: "Sep-06",
 5764		Population: "244653",
 5765		Felony: "202",
 5766		Misdemeanor: "2190",
 5767		DWI: "153",
 5768		"Traffic Tickets": "4125",
 5769		"Traffic Warnings": "3852",
 5770		"All Reportable": "738",
 5771		"Property Damage": "575",
 5772		Injury: "161",
 5773		Fatality: "2",
 5774		Homicide: "0",
 5775		"Rape and Attempted Rape": "15",
 5776		Robbery: "9",
 5777		"Aggravated Assault": "85",
 5778		"Burglary (Residential)": "92",
 5779		"Burglary (Non-Residential)": "72",
 5780		"Auto Theft": "43",
 5781		"All Thefts": "839",
 5782		"Stolen Bikes": "67",
 5783		"Theft From Vehicles": "296",
 5784		Shoplifting: "103",
 5785		Vandalism: "549",
 5786		Fraud: "95",
 5787		Forgery: "181",
 5788		Arson: "0",
 5789	},
 5790	{
 5791		Date: "Oct-06",
 5792		Population: "244653",
 5793		Felony: "209",
 5794		Misdemeanor: "2376",
 5795		DWI: "176",
 5796		"Traffic Tickets": "4290",
 5797		"Traffic Warnings": "3577",
 5798		"All Reportable": "767",
 5799		"Property Damage": "596",
 5800		Injury: "171",
 5801		Fatality: "0",
 5802		Homicide: "0",
 5803		"Rape and Attempted Rape": "4",
 5804		Robbery: "14",
 5805		"Aggravated Assault": "93",
 5806		"Burglary (Residential)": "117",
 5807		"Burglary (Non-Residential)": "51",
 5808		"Auto Theft": "33",
 5809		"All Thefts": "843",
 5810		"Stolen Bikes": "58",
 5811		"Theft From Vehicles": "283",
 5812		Shoplifting: "141",
 5813		Vandalism: "565",
 5814		Fraud: "97",
 5815		Forgery: "107",
 5816		Arson: "0",
 5817	},
 5818	{
 5819		Date: "Nov-06",
 5820		Population: "244653",
 5821		Felony: "177",
 5822		Misdemeanor: "1831",
 5823		DWI: "114",
 5824		"Traffic Tickets": "4786",
 5825		"Traffic Warnings": "3557",
 5826		"All Reportable": "691",
 5827		"Property Damage": "549",
 5828		Injury: "141",
 5829		Fatality: "1",
 5830		Homicide: "1",
 5831		"Rape and Attempted Rape": "7",
 5832		Robbery: "12",
 5833		"Aggravated Assault": "68",
 5834		"Burglary (Residential)": "97",
 5835		"Burglary (Non-Residential)": "41",
 5836		"Auto Theft": "21",
 5837		"All Thefts": "739",
 5838		"Stolen Bikes": "32",
 5839		"Theft From Vehicles": "193",
 5840		Shoplifting: "136",
 5841		Vandalism: "656",
 5842		Fraud: "101",
 5843		Forgery: "159",
 5844		Arson: "0",
 5845	},
 5846	{
 5847		Date: "Dec-06",
 5848		Population: "244653",
 5849		Felony: "242",
 5850		Misdemeanor: "2007",
 5851		DWI: "212",
 5852		"Traffic Tickets": "4524",
 5853		"Traffic Warnings": "3566",
 5854		"All Reportable": "785",
 5855		"Property Damage": "617",
 5856		Injury: "168",
 5857		Fatality: "0",
 5858		Homicide: "0",
 5859		"Rape and Attempted Rape": "10",
 5860		Robbery: "14",
 5861		"Aggravated Assault": "73",
 5862		"Burglary (Residential)": "74",
 5863		"Burglary (Non-Residential)": "45",
 5864		"Auto Theft": "37",
 5865		"All Thefts": "825",
 5866		"Stolen Bikes": "18",
 5867		"Theft From Vehicles": "211",
 5868		Shoplifting: "169",
 5869		Vandalism: "469",
 5870		Fraud: "77",
 5871		Forgery: "98",
 5872		Arson: "0",
 5873	},
 5874	{
 5875		Date: "Jan-07",
 5876		Population: "247789",
 5877		Felony: "178",
 5878		Misdemeanor: "2181",
 5879		DWI: "163",
 5880		"Traffic Tickets": "4093",
 5881		"Traffic Warnings": "3694",
 5882		"All Reportable": "1018",
 5883		"Property Damage": "862",
 5884		Injury: "154",
 5885		Fatality: "2",
 5886		Homicide: "0",
 5887		"Rape and Attempted Rape": "5",
 5888		Robbery: "16",
 5889		"Aggravated Assault": "75",
 5890		"Burglary (Residential)": "119",
 5891		"Burglary (Non-Residential)": "32",
 5892		"Auto Theft": "21",
 5893		"All Thefts": "663",
 5894		"Stolen Bikes": "8",
 5895		"Theft From Vehicles": "166",
 5896		Shoplifting: "141",
 5897		Vandalism: "610",
 5898		Fraud: "95",
 5899		Forgery: "147",
 5900		Arson: "0",
 5901	},
 5902	{
 5903		Date: "Feb-07",
 5904		Population: "247789",
 5905		Felony: "167",
 5906		Misdemeanor: "1897",
 5907		DWI: "143",
 5908		"Traffic Tickets": "3938",
 5909		"Traffic Warnings": "3308",
 5910		"All Reportable": "875",
 5911		"Property Damage": "754",
 5912		Injury: "121",
 5913		Fatality: "0",
 5914		Homicide: "0",
 5915		"Rape and Attempted Rape": "7",
 5916		Robbery: "7",
 5917		"Aggravated Assault": "59",
 5918		"Burglary (Residential)": "70",
 5919		"Burglary (Non-Residential)": "34",
 5920		"Auto Theft": "32",
 5921		"All Thefts": "599",
 5922		"Stolen Bikes": "5",
 5923		"Theft From Vehicles": "200",
 5924		Shoplifting: "120",
 5925		Vandalism: "342",
 5926		Fraud: "99",
 5927		Forgery: "69",
 5928		Arson: "0",
 5929	},
 5930	{
 5931		Date: "Mar-07",
 5932		Population: "247789",
 5933		Felony: "188",
 5934		Misdemeanor: "2470",
 5935		DWI: "163",
 5936		"Traffic Tickets": "4786",
 5937		"Traffic Warnings": "4181",
 5938		"All Reportable": "776",
 5939		"Property Damage": "647",
 5940		Injury: "129",
 5941		Fatality: "1",
 5942		Homicide: "1",
 5943		"Rape and Attempted Rape": "9",
 5944		Robbery: "17",
 5945		"Aggravated Assault": "76",
 5946		"Burglary (Residential)": "98",
 5947		"Burglary (Non-Residential)": "42",
 5948		"Auto Theft": "33",
 5949		"All Thefts": "836",
 5950		"Stolen Bikes": "28",
 5951		"Theft From Vehicles": "289",
 5952		Shoplifting: "171",
 5953		Vandalism: "431",
 5954		Fraud: "117",
 5955		Forgery: "71",
 5956		Arson: "0",
 5957	},
 5958	{
 5959		Date: "Apr-07",
 5960		Population: "247789",
 5961		Felony: "193",
 5962		Misdemeanor: "2413",
 5963		DWI: "161",
 5964		"Traffic Tickets": "3111",
 5965		"Traffic Warnings": "3031",
 5966		"All Reportable": "672",
 5967		"Property Damage": "522",
 5968		Injury: "148",
 5969		Fatality: "2",
 5970		Homicide: "0",
 5971		"Rape and Attempted Rape": "12",
 5972		Robbery: "17",
 5973		"Aggravated Assault": "83",
 5974		"Burglary (Residential)": "76",
 5975		"Burglary (Non-Residential)": "27",
 5976		"Auto Theft": "42",
 5977		"All Thefts": "874",
 5978		"Stolen Bikes": "40",
 5979		"Theft From Vehicles": "305",
 5980		Shoplifting: "119",
 5981		Vandalism: "459",
 5982		Fraud: "105",
 5983		Forgery: "61",
 5984		Arson: "0",
 5985	},
 5986	{
 5987		Date: "May-07",
 5988		Population: "247789",
 5989		Felony: "283",
 5990		Misdemeanor: "2594",
 5991		DWI: "129",
 5992		"Traffic Tickets": "4350",
 5993		"Traffic Warnings": "3272",
 5994		"All Reportable": "764",
 5995		"Property Damage": "577",
 5996		Injury: "186",
 5997		Fatality: "0",
 5998		Homicide: "0",
 5999		"Rape and Attempted Rape": "7",
 6000		Robbery: "11",
 6001		"Aggravated Assault": "126",
 6002		"Burglary (Residential)": "135",
 6003		"Burglary (Non-Residential)": "52",
 6004		"Auto Theft": "16",
 6005		"All Thefts": "1045",
 6006		"Stolen Bikes": "62",
 6007		"Theft From Vehicles": "372",
 6008		Shoplifting: "147",
 6009		Vandalism: "431",
 6010		Fraud: "119",
 6011		Forgery: "118",
 6012		Arson: "0",
 6013	},
 6014	{
 6015		Date: "Jun-07",
 6016		Population: "247789",
 6017		Felony: "265",
 6018		Misdemeanor: "2305",
 6019		DWI: "109",
 6020		"Traffic Tickets": "3500",
 6021		"Traffic Warnings": "3697",
 6022		"All Reportable": "700",
 6023		"Property Damage": "536",
 6024		Injury: "161",
 6025		Fatality: "3",
 6026		Homicide: "0",
 6027		"Rape and Attempted Rape": "8",
 6028		Robbery: "12",
 6029		"Aggravated Assault": "88",
 6030		"Burglary (Residential)": "116",
 6031		"Burglary (Non-Residential)": "49",
 6032		"Auto Theft": "38",
 6033		"All Thefts": "945",
 6034		"Stolen Bikes": "91",
 6035		"Theft From Vehicles": "338",
 6036		Shoplifting: "155",
 6037		Vandalism: "487",
 6038		Fraud: "99",
 6039		Forgery: "68",
 6040		Arson: "0",
 6041	},
 6042	{
 6043		Date: "Jul-07",
 6044		Population: "247789",
 6045		Felony: "239",
 6046		Misdemeanor: "2364",
 6047		DWI: "131",
 6048		"Traffic Tickets": "3613",
 6049		"Traffic Warnings": "4051",
 6050		"All Reportable": "697",
 6051		"Property Damage": "540",
 6052		Injury: "157",
 6053		Fatality: "0",
 6054		Homicide: "0",
 6055		"Rape and Attempted Rape": "11",
 6056		Robbery: "13",
 6057		"Aggravated Assault": "99",
 6058		"Burglary (Residential)": "178",
 6059		"Burglary (Non-Residential)": "43",
 6060		"Auto Theft": "57",
 6061		"All Thefts": "851",
 6062		"Stolen Bikes": "107",
 6063		"Theft From Vehicles": "284",
 6064		Shoplifting: "133",
 6065		Vandalism: "507",
 6066		Fraud: "115",
 6067		Forgery: "74",
 6068		Arson: "0",
 6069	},
 6070	{
 6071		Date: "Aug-07",
 6072		Population: "247789",
 6073		Felony: "269",
 6074		Misdemeanor: "2326",
 6075		DWI: "103",
 6076		"Traffic Tickets": "4147",
 6077		"Traffic Warnings": "3345",
 6078		"All Reportable": "765",
 6079		"Property Damage": "588",
 6080		Injury: "177",
 6081		Fatality: "0",
 6082		Homicide: "0",
 6083		"Rape and Attempted Rape": "9",
 6084		Robbery: "17",
 6085		"Aggravated Assault": "91",
 6086		"Burglary (Residential)": "138",
 6087		"Burglary (Non-Residential)": "25",
 6088		"Auto Theft": "39",
 6089		"All Thefts": "817",
 6090		"Stolen Bikes": "83",
 6091		"Theft From Vehicles": "311",
 6092		Shoplifting: "146",
 6093		Vandalism: "391",
 6094		Fraud: "105",
 6095		Forgery: "85",
 6096		Arson: "0",
 6097	},
 6098	{
 6099		Date: "Sep-07",
 6100		Population: "247789",
 6101		Felony: "210",
 6102		Misdemeanor: "2408",
 6103		DWI: "143",
 6104		"Traffic Tickets": "3957",
 6105		"Traffic Warnings": "3151",
 6106		"All Reportable": "784",
 6107		"Property Damage": "620",
 6108		Injury: "164",
 6109		Fatality: "0",
 6110		Homicide: "2",
 6111		"Rape and Attempted Rape": "11",
 6112		Robbery: "15",
 6113		"Aggravated Assault": "95",
 6114		"Burglary (Residential)": "124",
 6115		"Burglary (Non-Residential)": "32",
 6116		"Auto Theft": "41",
 6117		"All Thefts": "808",
 6118		"Stolen Bikes": "73",
 6119		"Theft From Vehicles": "330",
 6120		Shoplifting: "121",
 6121		Vandalism: "418",
 6122		Fraud: "89",
 6123		Forgery: "84",
 6124		Arson: "0",
 6125	},
 6126	{
 6127		Date: "Oct-07",
 6128		Population: "247789",
 6129		Felony: "270",
 6130		Misdemeanor: "2163",
 6131		DWI: "150",
 6132		"Traffic Tickets": "4282",
 6133		"Traffic Warnings": "4092",
 6134		"All Reportable": "859",
 6135		"Property Damage": "662",
 6136		Injury: "196",
 6137		Fatality: "3",
 6138		Homicide: "2",
 6139		"Rape and Attempted Rape": "20",
 6140		Robbery: "10",
 6141		"Aggravated Assault": "83",
 6142		"Burglary (Residential)": "150",
 6143		"Burglary (Non-Residential)": "51",
 6144		"Auto Theft": "36",
 6145		"All Thefts": "751",
 6146		"Stolen Bikes": "70",
 6147		"Theft From Vehicles": "218",
 6148		Shoplifting: "155",
 6149		Vandalism: "464",
 6150		Fraud: "99",
 6151		Forgery: "82",
 6152		Arson: "0",
 6153	},
 6154	{
 6155		Date: "Nov-07",
 6156		Population: "247789",
 6157		Felony: "213",
 6158		Misdemeanor: "1836",
 6159		DWI: "159",
 6160		"Traffic Tickets": "4731",
 6161		"Traffic Warnings": "5286",
 6162		"All Reportable": "710",
 6163		"Property Damage": "572",
 6164		Injury: "138",
 6165		Fatality: "0",
 6166		Homicide: "0",
 6167		"Rape and Attempted Rape": "4",
 6168		Robbery: "11",
 6169		"Aggravated Assault": "84",
 6170		"Burglary (Residential)": "143",
 6171		"Burglary (Non-Residential)": "40",
 6172		"Auto Theft": "29",
 6173		"All Thefts": "675",
 6174		"Stolen Bikes": "23",
 6175		"Theft From Vehicles": "212",
 6176		Shoplifting: "131",
 6177		Vandalism: "447",
 6178		Fraud: "74",
 6179		Forgery: "82",
 6180		Arson: "0",
 6181	},
 6182	{
 6183		Date: "Dec-07",
 6184		Population: "247789",
 6185		Felony: "212",
 6186		Misdemeanor: "1760",
 6187		DWI: "196",
 6188		"Traffic Tickets": "3489",
 6189		"Traffic Warnings": "2981",
 6190		"All Reportable": "1093",
 6191		"Property Damage": "925",
 6192		Injury: "167",
 6193		Fatality: "1",
 6194		Homicide: "1",
 6195		"Rape and Attempted Rape": "11",
 6196		Robbery: "21",
 6197		"Aggravated Assault": "70",
 6198		"Burglary (Residential)": "109",
 6199		"Burglary (Non-Residential)": "33",
 6200		"Auto Theft": "26",
 6201		"All Thefts": "557",
 6202		"Stolen Bikes": "8",
 6203		"Theft From Vehicles": "162",
 6204		Shoplifting: "135",
 6205		Vandalism: "254",
 6206		Fraud: "83",
 6207		Forgery: "47",
 6208		Arson: "0",
 6209	},
 6210	{
 6211		Date: "Jan-08",
 6212		Population: "250939",
 6213		Felony: "158",
 6214		Misdemeanor: "2015",
 6215		DWI: "174",
 6216		"Traffic Tickets": "4310",
 6217		"Traffic Warnings": "4183",
 6218		"All Reportable": "776",
 6219		"Property Damage": "642",
 6220		Injury: "134",
 6221		Fatality: "1",
 6222		Homicide: "1",
 6223		"Rape and Attempted Rape": "8",
 6224		Robbery: "26",
 6225		"Aggravated Assault": "67",
 6226		"Burglary (Residential)": "121",
 6227		"Burglary (Non-Residential)": "28",
 6228		"Auto Theft": "32",
 6229		"All Thefts": "544",
 6230		"Stolen Bikes": "8",
 6231		"Theft From Vehicles": "173",
 6232		Shoplifting: "131",
 6233		Vandalism: "284",
 6234		Fraud: "107",
 6235		Forgery: "43",
 6236		Arson: "0",
 6237	},
 6238	{
 6239		Date: "Feb-08",
 6240		Population: "250939",
 6241		Felony: "159",
 6242		Misdemeanor: "2024",
 6243		DWI: "172",
 6244		"Traffic Tickets": "4186",
 6245		"Traffic Warnings": "3757",
 6246		"All Reportable": "880",
 6247		"Property Damage": "731",
 6248		Injury: "149",
 6249		Fatality: "1",
 6250		Homicide: "0",
 6251		"Rape and Attempted Rape": "2",
 6252		Robbery: "10",
 6253		"Aggravated Assault": "70",
 6254		"Burglary (Residential)": "66",
 6255		"Burglary (Non-Residential)": "20",
 6256		"Auto Theft": "28",
 6257		"All Thefts": "526",
 6258		"Stolen Bikes": "4",
 6259		"Theft From Vehicles": "201",
 6260		Shoplifting: "110",
 6261		Vandalism: "273",
 6262		Fraud: "101",
 6263		Forgery: "24",
 6264		Arson: "0",
 6265	},
 6266	{
 6267		Date: "Mar-08",
 6268		Population: "250939",
 6269		Felony: "228",
 6270		Misdemeanor: "2411",
 6271		DWI: "213",
 6272		"Traffic Tickets": "4775",
 6273		"Traffic Warnings": "4421",
 6274		"All Reportable": "665",
 6275		"Property Damage": "534",
 6276		Injury: "131",
 6277		Fatality: "0",
 6278		Homicide: "0",
 6279		"Rape and Attempted Rape": "12",
 6280		Robbery: "13",
 6281		"Aggravated Assault": "62",
 6282		"Burglary (Residential)": "89",
 6283		"Burglary (Non-Residential)": "20",
 6284		"Auto Theft": "37",
 6285		"All Thefts": "665",
 6286		"Stolen Bikes": "24",
 6287		"Theft From Vehicles": "204",
 6288		Shoplifting: "150",
 6289		Vandalism: "466",
 6290		Fraud: "94",
 6291		Forgery: "57",
 6292		Arson: "0",
 6293	},
 6294	{
 6295		Date: "Apr-08",
 6296		Population: "250939",
 6297		Felony: "209",
 6298		Misdemeanor: "2312",
 6299		DWI: "182",
 6300		"Traffic Tickets": "4306",
 6301		"Traffic Warnings": "3795",
 6302		"All Reportable": "729",
 6303		"Property Damage": "581",
 6304		Injury: "148",
 6305		Fatality: "0",
 6306		Homicide: "0",
 6307		"Rape and Attempted Rape": "8",
 6308		Robbery: "13",
 6309		"Aggravated Assault": "74",
 6310		"Burglary (Residential)": "93",
 6311		"Burglary (Non-Residential)": "29",
 6312		"Auto Theft": "25",
 6313		"All Thefts": "723",
 6314		"Stolen Bikes": "23",
 6315		"Theft From Vehicles": "264",
 6316		Shoplifting: "149",
 6317		Vandalism: "435",
 6318		Fraud: "119",
 6319		Forgery: "70",
 6320		Arson: "0",
 6321	},
 6322	{
 6323		Date: "May-08",
 6324		Population: "250939",
 6325		Felony: "235",
 6326		Misdemeanor: "2429",
 6327		DWI: "198",
 6328		"Traffic Tickets": "5109",
 6329		"Traffic Warnings": "3964",
 6330		"All Reportable": "673",
 6331		"Property Damage": "528",
 6332		Injury: "144",
 6333		Fatality: "1",
 6334		Homicide: "0",
 6335		"Rape and Attempted Rape": "3",
 6336		Robbery: "22",
 6337		"Aggravated Assault": "79",
 6338		"Burglary (Residential)": "93",
 6339		"Burglary (Non-Residential)": "17",
 6340		"Auto Theft": "27",
 6341		"All Thefts": "740",
 6342		"Stolen Bikes": "43",
 6343		"Theft From Vehicles": "281",
 6344		Shoplifting: "128",
 6345		Vandalism: "449",
 6346		Fraud: "89",
 6347		Forgery: "94",
 6348		Arson: "0",
 6349	},
 6350	{
 6351		Date: "Jun-08",
 6352		Population: "250939",
 6353		Felony: "241",
 6354		Misdemeanor: "2542",
 6355		DWI: "200",
 6356		"Traffic Tickets": "4572",
 6357		"Traffic Warnings": "4365",
 6358		"All Reportable": "645",
 6359		"Property Damage": "492",
 6360		Injury: "153",
 6361		Fatality: "1",
 6362		Homicide: "0",
 6363		"Rape and Attempted Rape": "17",
 6364		Robbery: "19",
 6365		"Aggravated Assault": "96",
 6366		"Burglary (Residential)": "104",
 6367		"Burglary (Non-Residential)": "25",
 6368		"Auto Theft": "29",
 6369		"All Thefts": "661",
 6370		"Stolen Bikes": "51",
 6371		"Theft From Vehicles": "245",
 6372		Shoplifting: "132",
 6373		Vandalism: "442",
 6374		Fraud: "94",
 6375		Forgery: "47",
 6376		Arson: "0",
 6377	},
 6378	{
 6379		Date: "Jul-08",
 6380		Population: "250939",
 6381		Felony: "217",
 6382		Misdemeanor: "2602",
 6383		DWI: "182",
 6384		"Traffic Tickets": "4810",
 6385		"Traffic Warnings": "4318",
 6386		"All Reportable": "579",
 6387		"Property Damage": "442",
 6388		Injury: "135",
 6389		Fatality: "1",
 6390		Homicide: "0",
 6391		"Rape and Attempted Rape": "11",
 6392		Robbery: "22",
 6393		"Aggravated Assault": "108",
 6394		"Burglary (Residential)": "97",
 6395		"Burglary (Non-Residential)": "36",
 6396		"Auto Theft": "35",
 6397		"All Thefts": "800",
 6398		"Stolen Bikes": "109",
 6399		"Theft From Vehicles": "266",
 6400		Shoplifting: "136",
 6401		Vandalism: "542",
 6402		Fraud: "96",
 6403		Forgery: "34",
 6404		Arson: "0",
 6405	},
 6406	{
 6407		Date: "Aug-08",
 6408		Population: "250939",
 6409		Felony: "251",
 6410		Misdemeanor: "2941",
 6411		DWI: "172",
 6412		"Traffic Tickets": "5136",
 6413		"Traffic Warnings": "3917",
 6414		"All Reportable": "699",
 6415		"Property Damage": "545",
 6416		Injury: "154",
 6417		Fatality: "0",
 6418		Homicide: "0",
 6419		"Rape and Attempted Rape": "16",
 6420		Robbery: "23",
 6421		"Aggravated Assault": "95",
 6422		"Burglary (Residential)": "135",
 6423		"Burglary (Non-Residential)": "26",
 6424		"Auto Theft": "16",
 6425		"All Thefts": "846",
 6426		"Stolen Bikes": "110",
 6427		"Theft From Vehicles": "286",
 6428		Shoplifting: "138",
 6429		Vandalism: "425",
 6430		Fraud: "103",
 6431		Forgery: "92",
 6432		Arson: "0",
 6433	},
 6434	{
 6435		Date: "Sep-08",
 6436		Population: "250939",
 6437		Felony: "212",
 6438		Misdemeanor: "2616",
 6439		DWI: "182",
 6440		"Traffic Tickets": "4399",
 6441		"Traffic Warnings": "3597",
 6442		"All Reportable": "742",
 6443		"Property Damage": "582",
 6444		Injury: "160",
 6445		Fatality: "0",
 6446		Homicide: "0",
 6447		"Rape and Attempted Rape": "12",
 6448		Robbery: "22",
 6449		"Aggravated Assault": "92",
 6450		"Burglary (Residential)": "115",
 6451		"Burglary (Non-Residential)": "22",
 6452		"Auto Theft": "37",
 6453		"All Thefts": "788",
 6454		"Stolen Bikes": "75",
 6455		"Theft From Vehicles": "275",
 6456		Shoplifting: "138",
 6457		Vandalism: "392",
 6458		Fraud: "78",
 6459		Forgery: "49",
 6460		Arson: "0",
 6461	},
 6462	{
 6463		Date: "Oct-08",
 6464		Population: "250939",
 6465		Felony: "233",
 6466		Misdemeanor: "2536",
 6467		DWI: "185",
 6468		"Traffic Tickets": "4433",
 6469		"Traffic Warnings": "3773",
 6470		"All Reportable": "764",
 6471		"Property Damage": "579",
 6472		Injury: "184",
 6473		Fatality: "1",
 6474		Homicide: "2",
 6475		"Rape and Attempted Rape": "7",
 6476		Robbery: "22",
 6477		"Aggravated Assault": "59",
 6478		"Burglary (Residential)": "127",
 6479		"Burglary (Non-Residential)": "37",
 6480		"Auto Theft": "25",
 6481		"All Thefts": "770",
 6482		"Stolen Bikes": "68",
 6483		"Theft From Vehicles": "255",
 6484		Shoplifting: "165",
 6485		Vandalism: "511",
 6486		Fraud: "110",
 6487		Forgery: "46",
 6488		Arson: "0",
 6489	},
 6490	{
 6491		Date: "Nov-08",
 6492		Population: "250939",
 6493		Felony: "227",
 6494		Misdemeanor: "2199",
 6495		DWI: "187",
 6496		"Traffic Tickets": "4318",
 6497		"Traffic Warnings": "4261",
 6498		"All Reportable": "716",
 6499		"Property Damage": "574",
 6500		Injury: "141",
 6501		Fatality: "0",
 6502		Homicide: "0",
 6503		"Rape and Attempted Rape": "7",
 6504		Robbery: "16",
 6505		"Aggravated Assault": "88",
 6506		"Burglary (Residential)": "87",
 6507		"Burglary (Non-Residential)": "38",
 6508		"Auto Theft": "41",
 6509		"All Thefts": "609",
 6510		"Stolen Bikes": "29",
 6511		"Theft From Vehicles": "216",
 6512		Shoplifting: "113",
 6513		Vandalism: "441",
 6514		Fraud: "98",
 6515		Forgery: "72",
 6516		Arson: "0",
 6517	},
 6518	{
 6519		Date: "Dec-08",
 6520		Population: "250939",
 6521		Felony: "173",
 6522		Misdemeanor: "1856",
 6523		DWI: "206",
 6524		"Traffic Tickets": "3508",
 6525		"Traffic Warnings": "3264",
 6526		"All Reportable": "1050",
 6527		"Property Damage": "884",
 6528		Injury: "165",
 6529		Fatality: "0",
 6530		Homicide: "1",
 6531		"Rape and Attempted Rape": "8",
 6532		Robbery: "9",
 6533		"Aggravated Assault": "56",
 6534		"Burglary (Residential)": "91",
 6535		"Burglary (Non-Residential)": "33",
 6536		"Auto Theft": "19",
 6537		"All Thefts": "531",
 6538		"Stolen Bikes": "12",
 6539		"Theft From Vehicles": "128",
 6540		Shoplifting: "145",
 6541		Vandalism: "310",
 6542		Fraud: "93",
 6543		Forgery: "91",
 6544		Arson: "0",
 6545	},
 6546	{
 6547		Date: "Jan-09",
 6548		Population: "254001",
 6549		Felony: "192",
 6550		Misdemeanor: "2203",
 6551		DWI: "212",
 6552		"Traffic Tickets": "4503",
 6553		"Traffic Warnings": "4425",
 6554		"All Reportable": "844",
 6555		"Property Damage": "700",
 6556		Injury: "143",
 6557		Fatality: "1",
 6558		Homicide: "1",
 6559		"Rape and Attempted Rape": "12",
 6560		Robbery: "15",
 6561		"Aggravated Assault": "56",
 6562		"Burglary (Residential)": "83",
 6563		"Burglary (Non-Residential)": "12",
 6564		"Auto Theft": "24",
 6565		"All Thefts": "576",
 6566		"Stolen Bikes": "9",
 6567		"Theft From Vehicles": "196",
 6568		Shoplifting: "148",
 6569		Vandalism: "332",
 6570		Fraud: "100",
 6571		Forgery: "43",
 6572		Arson: "0",
 6573	},
 6574	{
 6575		Date: "Feb-09",
 6576		Population: "254001",
 6577		Felony: "186",
 6578		Misdemeanor: "2003",
 6579		DWI: "214",
 6580		"Traffic Tickets": "4377",
 6581		"Traffic Warnings": "4235",
 6582		"All Reportable": "727",
 6583		"Property Damage": "593",
 6584		Injury: "134",
 6585		Fatality: "0",
 6586		Homicide: "0",
 6587		"Rape and Attempted Rape": "10",
 6588		Robbery: "16",
 6589		"Aggravated Assault": "56",
 6590		"Burglary (Residential)": "79",
 6591		"Burglary (Non-Residential)": "11",
 6592		"Auto Theft": "18",
 6593		"All Thefts": "458",
 6594		"Stolen Bikes": "13",
 6595		"Theft From Vehicles": "140",
 6596		Shoplifting: "106",
 6597		Vandalism: "299",
 6598		Fraud: "81",
 6599		Forgery: "61",
 6600		Arson: "0",
 6601	},
 6602	{
 6603		Date: "Mar-09",
 6604		Population: "254001",
 6605		Felony: "253",
 6606		Misdemeanor: "2329",
 6607		DWI: "235",
 6608		"Traffic Tickets": "4766",
 6609		"Traffic Warnings": "4721",
 6610		"All Reportable": "637",
 6611		"Property Damage": "524",
 6612		Injury: "113",
 6613		Fatality: "0",
 6614		Homicide: "1",
 6615		"Rape and Attempted Rape": "17",
 6616		Robbery: "15",
 6617		"Aggravated Assault": "66",
 6618		"Burglary (Residential)": "155",
 6619		"Burglary (Non-Residential)": "40",
 6620		"Auto Theft": "21",
 6621		"All Thefts": "591",
 6622		"Stolen Bikes": "17",
 6623		"Theft From Vehicles": "193",
 6624		Shoplifting: "155",
 6625		Vandalism: "380",
 6626		Fraud: "94",
 6627		Forgery: "105",
 6628		Arson: "0",
 6629	},
 6630	{
 6631		Date: "Apr-09",
 6632		Population: "254001",
 6633		Felony: "202",
 6634		Misdemeanor: "2155",
 6635		DWI: "214",
 6636		"Traffic Tickets": "3732",
 6637		"Traffic Warnings": "3164",
 6638		"All Reportable": "643",
 6639		"Property Damage": "506",
 6640		Injury: "135",
 6641		Fatality: "2",
 6642		Homicide: "0",
 6643		"Rape and Attempted Rape": "12",
 6644		Robbery: "10",
 6645		"Aggravated Assault": "75",
 6646		"Burglary (Residential)": "108",
 6647		"Burglary (Non-Residential)": "47",
 6648		"Auto Theft": "17",
 6649		"All Thefts": "623",
 6650		"Stolen Bikes": "22",
 6651		"Theft From Vehicles": "229",
 6652		Shoplifting: "150",
 6653		Vandalism: "399",
 6654		Fraud: "99",
 6655		Forgery: "31",
 6656		Arson: "0",
 6657	},
 6658	{
 6659		Date: "May-09",
 6660		Population: "254001",
 6661		Felony: "241",
 6662		Misdemeanor: "2234",
 6663		DWI: "218",
 6664		"Traffic Tickets": "4887",
 6665		"Traffic Warnings": "3178",
 6666		"All Reportable": "696",
 6667		"Property Damage": "532",
 6668		Injury: "164",
 6669		Fatality: "0",
 6670		Homicide: "0",
 6671		"Rape and Attempted Rape": "11",
 6672		Robbery: "12",
 6673		"Aggravated Assault": "90",
 6674		"Burglary (Residential)": "103",
 6675		"Burglary (Non-Residential)": "42",
 6676		"Auto Theft": "15",
 6677		"All Thefts": "762",
 6678		"Stolen Bikes": "42",
 6679		"Theft From Vehicles": "292",
 6680		Shoplifting: "155",
 6681		Vandalism: "428",
 6682		Fraud: "95",
 6683		Forgery: "35",
 6684		Arson: "0",
 6685	},
 6686	{
 6687		Date: "Jun-09",
 6688		Population: "254001",
 6689		Felony: "169",
 6690		Misdemeanor: "2100",
 6691		DWI: "162",
 6692		"Traffic Tickets": "3846",
 6693		"Traffic Warnings": "3807",
 6694		"All Reportable": "640",
 6695		"Property Damage": "487",
 6696		Injury: "153",
 6697		Fatality: "0",
 6698		Homicide: "0",
 6699		"Rape and Attempted Rape": "13",
 6700		Robbery: "16",
 6701		"Aggravated Assault": "69",
 6702		"Burglary (Residential)": "115",
 6703		"Burglary (Non-Residential)": "34",
 6704		"Auto Theft": "26",
 6705		"All Thefts": "672",
 6706		"Stolen Bikes": "70",
 6707		"Theft From Vehicles": "216",
 6708		Shoplifting: "152",
 6709		Vandalism: "382",
 6710		Fraud: "95",
 6711		Forgery: "52",
 6712		Arson: "0",
 6713	},
 6714	{
 6715		Date: "Jul-09",
 6716		Population: "254001",
 6717		Felony: "204",
 6718		Misdemeanor: "2466",
 6719		DWI: "166",
 6720		"Traffic Tickets": "3782",
 6721		"Traffic Warnings": "3529",
 6722		"All Reportable": "672",
 6723		"Property Damage": "508",
 6724		Injury: "163",
 6725		Fatality: "1",
 6726		Homicide: "0",
 6727		"Rape and Attempted Rape": "13",
 6728		Robbery: "15",
 6729		"Aggravated Assault": "78",
 6730		"Burglary (Residential)": "96",
 6731		"Burglary (Non-Residential)": "59",
 6732		"Auto Theft": "30",
 6733		"All Thefts": "810",
 6734		"Stolen Bikes": "88",
 6735		"Theft From Vehicles": "332",
 6736		Shoplifting: "148",
 6737		Vandalism: "521",
 6738		Fraud: "127",
 6739		Forgery: "20",
 6740		Arson: "0",
 6741	},
 6742	{
 6743		Date: "Aug-09",
 6744		Population: "254001",
 6745		Felony: "221",
 6746		Misdemeanor: "2297",
 6747		DWI: "185",
 6748		"Traffic Tickets": "4134",
 6749		"Traffic Warnings": "3186",
 6750		"All Reportable": "693",
 6751		"Property Damage": "555",
 6752		Injury: "137",
 6753		Fatality: "1",
 6754		Homicide: "0",
 6755		"Rape and Attempted Rape": "3",
 6756		Robbery: "23",
 6757		"Aggravated Assault": "75",
 6758		"Burglary (Residential)": "136",
 6759		"Burglary (Non-Residential)": "24",
 6760		"Auto Theft": "31",
 6761		"All Thefts": "791",
 6762		"Stolen Bikes": "97",
 6763		"Theft From Vehicles": "284",
 6764		Shoplifting: "141",
 6765		Vandalism: "392",
 6766		Fraud: "129",
 6767		Forgery: "37",
 6768		Arson: "0",
 6769	},
 6770	{
 6771		Date: "Sep-09",
 6772		Population: "254001",
 6773		Felony: "193",
 6774		Misdemeanor: "2409",
 6775		DWI: "156",
 6776		"Traffic Tickets": "4047",
 6777		"Traffic Warnings": "3108",
 6778		"All Reportable": "714",
 6779		"Property Damage": "565",
 6780		Injury: "149",
 6781		Fatality: "0",
 6782		Homicide: "2",
 6783		"Rape and Attempted Rape": "13",
 6784		Robbery: "24",
 6785		"Aggravated Assault": "93",
 6786		"Burglary (Residential)": "98",
 6787		"Burglary (Non-Residential)": "16",
 6788		"Auto Theft": "11",
 6789		"All Thefts": "669",
 6790		"Stolen Bikes": "59",
 6791		"Theft From Vehicles": "233",
 6792		Shoplifting: "143",
 6793		Vandalism: "338",
 6794		Fraud: "133",
 6795		Forgery: "31",
 6796		Arson: "0",
 6797	},
 6798	{
 6799		Date: "Oct-09",
 6800		Population: "254001",
 6801		Felony: "187",
 6802		Misdemeanor: "2040",
 6803		DWI: "194",
 6804		"Traffic Tickets": "3570",
 6805		"Traffic Warnings": "3161",
 6806		"All Reportable": "789",
 6807		"Property Damage": "615",
 6808		Injury: "174",
 6809		Fatality: "0",
 6810		Homicide: "1",
 6811		"Rape and Attempted Rape": "7",
 6812		Robbery: "18",
 6813		"Aggravated Assault": "69",
 6814		"Burglary (Residential)": "91",
 6815		"Burglary (Non-Residential)": "20",
 6816		"Auto Theft": "26",
 6817		"All Thefts": "705",
 6818		"Stolen Bikes": "34",
 6819		"Theft From Vehicles": "285",
 6820		Shoplifting: "140",
 6821		Vandalism: "435",
 6822		Fraud: "99",
 6823		Forgery: "53",
 6824		Arson: "0",
 6825	},
 6826	{
 6827		Date: "Nov-09",
 6828		Population: "254001",
 6829		Felony: "180",
 6830		Misdemeanor: "1979",
 6831		DWI: "204",
 6832		"Traffic Tickets": "4103",
 6833		"Traffic Warnings": "3647",
 6834		"All Reportable": "627",
 6835		"Property Damage": "514",
 6836		Injury: "112",
 6837		Fatality: "1",
 6838		Homicide: "1",
 6839		"Rape and Attempted Rape": "10",
 6840		Robbery: "15",
 6841		"Aggravated Assault": "64",
 6842		"Burglary (Residential)": "96",
 6843		"Burglary (Non-Residential)": "23",
 6844		"Auto Theft": "37",
 6845		"All Thefts": "687",
 6846		"Stolen Bikes": "28",
 6847		"Theft From Vehicles": "267",
 6848		Shoplifting: "164",
 6849		Vandalism: "360",
 6850		Fraud: "95",
 6851		Forgery: "77",
 6852		Arson: "0",
 6853	},
 6854	{
 6855		Date: "Dec-09",
 6856		Population: "254001",
 6857		Felony: "166",
 6858		Misdemeanor: "1574",
 6859		DWI: "170",
 6860		"Traffic Tickets": "2543",
 6861		"Traffic Warnings": "2363",
 6862		"All Reportable": "1095",
 6863		"Property Damage": "932",
 6864		Injury: "163",
 6865		Fatality: "0",
 6866		Homicide: "0",
 6867		"Rape and Attempted Rape": "5",
 6868		Robbery: "11",
 6869		"Aggravated Assault": "45",
 6870		"Burglary (Residential)": "71",
 6871		"Burglary (Non-Residential)": "27",
 6872		"Auto Theft": "15",
 6873		"All Thefts": "568",
 6874		"Stolen Bikes": "6",
 6875		"Theft From Vehicles": "144",
 6876		Shoplifting: "171",
 6877		Vandalism: "222",
 6878		Fraud: "106",
 6879		Forgery: "46",
 6880		Arson: "0",
 6881	},
 6882	{
 6883		Date: "Jan-10",
 6884		Population: "259261",
 6885		Felony: "173",
 6886		Misdemeanor: "1736",
 6887		DWI: "183",
 6888		"Traffic Tickets": "3549",
 6889		"Traffic Warnings": "3826",
 6890		"All Reportable": "1045",
 6891		"Property Damage": "906",
 6892		Injury: "139",
 6893		Fatality: "0",
 6894		Homicide: "0",
 6895		"Rape and Attempted Rape": "8",
 6896		Robbery: "19",
 6897		"Aggravated Assault": "66",
 6898		"Burglary (Residential)": "73",
 6899		"Burglary (Non-Residential)": "24",
 6900		"Auto Theft": "19",
 6901		"All Thefts": "506",
 6902		"Stolen Bikes": "1",
 6903		"Theft From Vehicles": "175",
 6904		Shoplifting: "111",
 6905		Vandalism: "242",
 6906		Fraud: "138",
 6907		Forgery: "96",
 6908		Arson: "0",
 6909	},
 6910	{
 6911		Date: "Feb-10",
 6912		Population: "259261",
 6913		Felony: "133",
 6914		Misdemeanor: "1693",
 6915		DWI: "170",
 6916		"Traffic Tickets": "3192",
 6917		"Traffic Warnings": "3247",
 6918		"All Reportable": "799",
 6919		"Property Damage": "669",
 6920		Injury: "129",
 6921		Fatality: "1",
 6922		Homicide: "0",
 6923		"Rape and Attempted Rape": "10",
 6924		Robbery: "5",
 6925		"Aggravated Assault": "46",
 6926		"Burglary (Residential)": "61",
 6927		"Burglary (Non-Residential)": "11",
 6928		"Auto Theft": "18",
 6929		"All Thefts": "477",
 6930		"Stolen Bikes": "5",
 6931		"Theft From Vehicles": "147",
 6932		Shoplifting: "127",
 6933		Vandalism: "303",
 6934		Fraud: "86",
 6935		Forgery: "22",
 6936		Arson: "0",
 6937	},
 6938	{
 6939		Date: "Mar-10",
 6940		Population: "259261",
 6941		Felony: "194",
 6942		Misdemeanor: "1937",
 6943		DWI: "159",
 6944		"Traffic Tickets": "4048",
 6945		"Traffic Warnings": "4936",
 6946		"All Reportable": "585",
 6947		"Property Damage": "465",
 6948		Injury: "120",
 6949		Fatality: "0",
 6950		Homicide: "2",
 6951		"Rape and Attempted Rape": "9",
 6952		Robbery: "12",
 6953		"Aggravated Assault": "89",
 6954		"Burglary (Residential)": "68",
 6955		"Burglary (Non-Residential)": "27",
 6956		"Auto Theft": "22",
 6957		"All Thefts": "631",
 6958		"Stolen Bikes": "11",
 6959		"Theft From Vehicles": "194",
 6960		Shoplifting: "144",
 6961		Vandalism: "415",
 6962		Fraud: "127",
 6963		Forgery: "19",
 6964		Arson: "0",
 6965	},
 6966	{
 6967		Date: "Apr-10",
 6968		Population: "259261",
 6969		Felony: "251",
 6970		Misdemeanor: "2089",
 6971		DWI: "146",
 6972		"Traffic Tickets": "3791",
 6973		"Traffic Warnings": "3541",
 6974		"All Reportable": "682",
 6975		"Property Damage": "524",
 6976		Injury: "157",
 6977		Fatality: "1",
 6978		Homicide: "0",
 6979		"Rape and Attempted Rape": "13",
 6980		Robbery: "9",
 6981		"Aggravated Assault": "98",
 6982		"Burglary (Residential)": "89",
 6983		"Burglary (Non-Residential)": "19",
 6984		"Auto Theft": "36",
 6985		"All Thefts": "682",
 6986		"Stolen Bikes": "47",
 6987		"Theft From Vehicles": "151",
 6988		Shoplifting: "158",
 6989		Vandalism: "279",
 6990		Fraud: "114",
 6991		Forgery: "119",
 6992		Arson: "0",
 6993	},
 6994	{
 6995		Date: "May-10",
 6996		Population: "259261",
 6997		Felony: "197",
 6998		Misdemeanor: "2098",
 6999		DWI: "163",
 7000		"Traffic Tickets": "4941",
 7001		"Traffic Warnings": "3557",
 7002		"All Reportable": "661",
 7003		"Property Damage": "522",
 7004		Injury: "139",
 7005		Fatality: "0",
 7006		Homicide: "0",
 7007		"Rape and Attempted Rape": "11",
 7008		Robbery: "14",
 7009		"Aggravated Assault": "67",
 7010		"Burglary (Residential)": "74",
 7011		"Burglary (Non-Residential)": "30",
 7012		"Auto Theft": "23",
 7013		"All Thefts": "646",
 7014		"Stolen Bikes": "46",
 7015		"Theft From Vehicles": "210",
 7016		Shoplifting: "120",
 7017		Vandalism: "337",
 7018		Fraud: "89",
 7019		Forgery: "53",
 7020		Arson: "0",
 7021	},
 7022	{
 7023		Date: "Jun-10",
 7024		Population: "259261",
 7025		Felony: "238",
 7026		Misdemeanor: "2459",
 7027		DWI: "154",
 7028		"Traffic Tickets": "4745",
 7029		"Traffic Warnings": "4553",
 7030		"All Reportable": "674",
 7031		"Property Damage": "512",
 7032		Injury: "160",
 7033		Fatality: "2",
 7034		Homicide: "0",
 7035		"Rape and Attempted Rape": "10",
 7036		Robbery: "16",
 7037		"Aggravated Assault": "82",
 7038		"Burglary (Residential)": "114",
 7039		"Burglary (Non-Residential)": "23",
 7040		"Auto Theft": "23",
 7041		"All Thefts": "634",
 7042		"Stolen Bikes": "69",
 7043		"Theft From Vehicles": "178",
 7044		Shoplifting: "133",
 7045		Vandalism: "372",
 7046		Fraud: "120",
 7047		Forgery: "43",
 7048		Arson: "0",
 7049	},
 7050	{
 7051		Date: "Jul-10",
 7052		Population: "259261",
 7053		Felony: "223",
 7054		Misdemeanor: "2252",
 7055		DWI: "118",
 7056		"Traffic Tickets": "3667",
 7057		"Traffic Warnings": "3813",
 7058		"All Reportable": "632",
 7059		"Property Damage": "491",
 7060		Injury: "140",
 7061		Fatality: "1",
 7062		Homicide: "0",
 7063		"Rape and Attempted Rape": "15",
 7064		Robbery: "17",
 7065		"Aggravated Assault": "79",
 7066		"Burglary (Residential)": "90",
 7067		"Burglary (Non-Residential)": "24",
 7068		"Auto Theft": "36",
 7069		"All Thefts": "768",
 7070		"Stolen Bikes": "77",
 7071		"Theft From Vehicles": "310",
 7072		Shoplifting: "126",
 7073		Vandalism: "448",
 7074		Fraud: "105",
 7075		Forgery: "33",
 7076		Arson: "0",
 7077	},
 7078	{
 7079		Date: "Aug-10",
 7080		Population: "259261",
 7081		Felony: "211",
 7082		Misdemeanor: "2438",
 7083		DWI: "180",
 7084		"Traffic Tickets": "4703",
 7085		"Traffic Warnings": "3855",
 7086		"All Reportable": "709",
 7087		"Property Damage": "537",
 7088		Injury: "172",
 7089		Fatality: "0",
 7090		Homicide: "0",
 7091		"Rape and Attempted Rape": "13",
 7092		Robbery: "20",
 7093		"Aggravated Assault": "100",
 7094		"Burglary (Residential)": "133",
 7095		"Burglary (Non-Residential)": "29",
 7096		"Auto Theft": "33",
 7097		"All Thefts": "865",
 7098		"Stolen Bikes": "94",
 7099		"Theft From Vehicles": "348",
 7100		Shoplifting: "155",
 7101		Vandalism: "385",
 7102		Fraud: "121",
 7103		Forgery: "49",
 7104		Arson: "0",
 7105	},
 7106	{
 7107		Date: "Sep-10",
 7108		Population: "259261",
 7109		Felony: "169",
 7110		Misdemeanor: "2226",
 7111		DWI: "168",
 7112		"Traffic Tickets": "4435",
 7113		"Traffic Warnings": "3600",
 7114		"All Reportable": "754",
 7115		"Property Damage": "573",
 7116		Injury: "181",
 7117		Fatality: "0",
 7118		Homicide: "0",
 7119		"Rape and Attempted Rape": "15",
 7120		Robbery: "18",
 7121		"Aggravated Assault": "99",
 7122		"Burglary (Residential)": "84",
 7123		"Burglary (Non-Residential)": "40",
 7124		"Auto Theft": "33",
 7125		"All Thefts": "863",
 7126		"Stolen Bikes": "70",
 7127		"Theft From Vehicles": "341",
 7128		Shoplifting: "149",
 7129		Vandalism: "461",
 7130		Fraud: "612",
 7131		Forgery: "13",
 7132		Arson: "0",
 7133	},
 7134	{
 7135		Date: "Oct-10",
 7136		Population: "259261",
 7137		Felony: "180",
 7138		Misdemeanor: "2171",
 7139		DWI: "186",
 7140		"Traffic Tickets": "4145",
 7141		"Traffic Warnings": "3841",
 7142		"All Reportable": "766",
 7143		"Property Damage": "589",
 7144		Injury: "177",
 7145		Fatality: "0",
 7146		Homicide: "0",
 7147		"Rape and Attempted Rape": "10",
 7148		Robbery: "17",
 7149		"Aggravated Assault": "70",
 7150		"Burglary (Residential)": "143",
 7151		"Burglary (Non-Residential)": "31",
 7152		"Auto Theft": "25",
 7153		"All Thefts": "820",
 7154		"Stolen Bikes": "66",
 7155		"Theft From Vehicles": "314",
 7156		Shoplifting: "154",
 7157		Vandalism: "409",
 7158		Fraud: "226",
 7159		Forgery: "33",
 7160		Arson: "0",
 7161	},
 7162	{
 7163		Date: "Nov-10",
 7164		Population: "259261",
 7165		Felony: "205",
 7166		Misdemeanor: "1913",
 7167		DWI: "164",
 7168		"Traffic Tickets": "4085",
 7169		"Traffic Warnings": "3915",
 7170		"All Reportable": "665",
 7171		"Property Damage": "519",
 7172		Injury: "144",
 7173		Fatality: "2",
 7174		Homicide: "0",
 7175		"Rape and Attempted Rape": "17",
 7176		Robbery: "18",
 7177		"Aggravated Assault": "69",
 7178		"Burglary (Residential)": "115",
 7179		"Burglary (Non-Residential)": "30",
 7180		"Auto Theft": "50",
 7181		"All Thefts": "776",
 7182		"Stolen Bikes": "29",
 7183		"Theft From Vehicles": "333",
 7184		Shoplifting: "173",
 7185		Vandalism: "378",
 7186		Fraud: "125",
 7187		Forgery: "49",
 7188		Arson: "0",
 7189	},
 7190	{
 7191		Date: "Dec-10",
 7192		Population: "259261",
 7193		Felony: "189",
 7194		Misdemeanor: "1597",
 7195		DWI: "199",
 7196		"Traffic Tickets": "3279",
 7197		"Traffic Warnings": "3261",
 7198		"All Reportable": "750",
 7199		"Property Damage": "618",
 7200		Injury: "132",
 7201		Fatality: "0",
 7202		Homicide: "1",
 7203		"Rape and Attempted Rape": "13",
 7204		Robbery: "13",
 7205		"Aggravated Assault": "62",
 7206		"Burglary (Residential)": "72",
 7207		"Burglary (Non-Residential)": "27",
 7208		"Auto Theft": "22",
 7209		"All Thefts": "699",
 7210		"Stolen Bikes": "20",
 7211		"Theft From Vehicles": "236",
 7212		Shoplifting: "188",
 7213		Vandalism: "340",
 7214		Fraud: "110",
 7215		Forgery: "20",
 7216		Arson: "0",
 7217	},
 7218	{
 7219		Date: "Jan-11",
 7220		Population: "262466",
 7221		Felony: "173",
 7222		Misdemeanor: "1914",
 7223		DWI: "175",
 7224		"Traffic Tickets": "4134",
 7225		"Traffic Warnings": "4329",
 7226		"All Reportable": "1000",
 7227		"Property Damage": "840",
 7228		Injury: "159",
 7229		Fatality: "1",
 7230		Homicide: "0",
 7231		"Rape and Attempted Rape": "16",
 7232		Robbery: "9",
 7233		"Aggravated Assault": "42",
 7234		"Burglary (Residential)": "75",
 7235		"Burglary (Non-Residential)": "24",
 7236		"Auto Theft": "24",
 7237		"All Thefts": "597",
 7238		"Stolen Bikes": "7",
 7239		"Theft From Vehicles": "238",
 7240		Shoplifting: "138",
 7241		Vandalism: "291",
 7242		Fraud: "111",
 7243		Forgery: "32",
 7244		Arson: "0",
 7245	},
 7246	{
 7247		Date: "Feb-11",
 7248		Population: "262466",
 7249		Felony: "141",
 7250		Misdemeanor: "1725",
 7251		DWI: "149",
 7252		"Traffic Tickets": "3820",
 7253		"Traffic Warnings": "3591",
 7254		"All Reportable": "738",
 7255		"Property Damage": "612",
 7256		Injury: "124",
 7257		Fatality: "2",
 7258		Homicide: "0",
 7259		"Rape and Attempted Rape": "11",
 7260		Robbery: "10",
 7261		"Aggravated Assault": "34",
 7262		"Burglary (Residential)": "48",
 7263		"Burglary (Non-Residential)": "17",
 7264		"Auto Theft": "18",
 7265		"All Thefts": "452",
 7266		"Stolen Bikes": "8",
 7267		"Theft From Vehicles": "97",
 7268		Shoplifting: "132",
 7269		Vandalism: "331",
 7270		Fraud: "104",
 7271		Forgery: "49",
 7272		Arson: "0",
 7273	},
 7274	{
 7275		Date: "Mar-11",
 7276		Population: "262466",
 7277		Felony: "182",
 7278		Misdemeanor: "2165",
 7279		DWI: "190",
 7280		"Traffic Tickets": "5215",
 7281		"Traffic Warnings": "6717",
 7282		"All Reportable": "483",
 7283		"Property Damage": "389",
 7284		Injury: "94",
 7285		Fatality: "0",
 7286		Homicide: "0",
 7287		"Rape and Attempted Rape": "6",
 7288		Robbery: "16",
 7289		"Aggravated Assault": "49",
 7290		"Burglary (Residential)": "90",
 7291		"Burglary (Non-Residential)": "13",
 7292		"Auto Theft": "26",
 7293		"All Thefts": "649",
 7294		"Stolen Bikes": "29",
 7295		"Theft From Vehicles": "216",
 7296		Shoplifting: "177",
 7297		Vandalism: "395",
 7298		Fraud: "111",
 7299		Forgery: "11",
 7300		Arson: "0",
 7301	},
 7302	{
 7303		Date: "Apr-11",
 7304		Population: "262466",
 7305		Felony: "214",
 7306		Misdemeanor: "1879",
 7307		DWI: "151",
 7308		"Traffic Tickets": "3168",
 7309		"Traffic Warnings": "3053",
 7310		"All Reportable": "622",
 7311		"Property Damage": "482",
 7312		Injury: "140",
 7313		Fatality: "0",
 7314		Homicide: "0",
 7315		"Rape and Attempted Rape": "16",
 7316		Robbery: "11",
 7317		"Aggravated Assault": "58",
 7318		"Burglary (Residential)": "94",
 7319		"Burglary (Non-Residential)": "24",
 7320		"Auto Theft": "31",
 7321		"All Thefts": "775",
 7322		"Stolen Bikes": "31",
 7323		"Theft From Vehicles": "271",
 7324		Shoplifting: "175",
 7325		Vandalism: "341",
 7326		Fraud: "126",
 7327		Forgery: "17",
 7328		Arson: "0",
 7329	},
 7330	{
 7331		Date: "May-11",
 7332		Population: "262466",
 7333		Felony: "198",
 7334		Misdemeanor: "1779",
 7335		DWI: "152",
 7336		"Traffic Tickets": "4683",
 7337		"Traffic Warnings": "3947",
 7338		"All Reportable": "668",
 7339		"Property Damage": "513",
 7340		Injury: "155",
 7341		Fatality: "0",
 7342		Homicide: "1",
 7343		"Rape and Attempted Rape": "17",
 7344		Robbery: "15",
 7345		"Aggravated Assault": "67",
 7346		"Burglary (Residential)": "113",
 7347		"Burglary (Non-Residential)": "32",
 7348		"Auto Theft": "40",
 7349		"All Thefts": "780",
 7350		"Stolen Bikes": "63",
 7351		"Theft From Vehicles": "255",
 7352		Shoplifting: "152",
 7353		Vandalism: "363",
 7354		Fraud: "177",
 7355		Forgery: "19",
 7356		Arson: "0",
 7357	},
 7358	{
 7359		Date: "Jun-11",
 7360		Population: "262466",
 7361		Felony: "293",
 7362		Misdemeanor: "1974",
 7363		DWI: "127",
 7364		"Traffic Tickets": "4110",
 7365		"Traffic Warnings": "3957",
 7366		"All Reportable": "597",
 7367		"Property Damage": "480",
 7368		Injury: "116",
 7369		Fatality: "1",
 7370		Homicide: "0",
 7371		"Rape and Attempted Rape": "20",
 7372		Robbery: "19",
 7373		"Aggravated Assault": "55",
 7374		"Burglary (Residential)": "80",
 7375		"Burglary (Non-Residential)": "18",
 7376		"Auto Theft": "26",
 7377		"All Thefts": "822",
 7378		"Stolen Bikes": "79",
 7379		"Theft From Vehicles": "296",
 7380		Shoplifting: "164",
 7381		Vandalism: "400",
 7382		Fraud: "157",
 7383		Forgery: "26",
 7384		Arson: "0",
 7385	},
 7386	{
 7387		Date: "Jul-11",
 7388		Population: "262466",
 7389		Felony: "206",
 7390		Misdemeanor: "2173",
 7391		DWI: "161",
 7392		"Traffic Tickets": "4205",
 7393		"Traffic Warnings": "4130",
 7394		"All Reportable": "654",
 7395		"Property Damage": "489",
 7396		Injury: "165",
 7397		Fatality: "0",
 7398		Homicide: "1",
 7399		"Rape and Attempted Rape": "22",
 7400		Robbery: "17",
 7401		"Aggravated Assault": "66",
 7402		"Burglary (Residential)": "132",
 7403		"Burglary (Non-Residential)": "46",
 7404		"Auto Theft": "35",
 7405		"All Thefts": "797",
 7406		"Stolen Bikes": "71",
 7407		"Theft From Vehicles": "281",
 7408		Shoplifting: "172",
 7409		Vandalism: "401",
 7410		Fraud: "120",
 7411		Forgery: "80",
 7412		Arson: "0",
 7413	},
 7414	{
 7415		Date: "Aug-11",
 7416		Population: "262466",
 7417		Felony: "238",
 7418		Misdemeanor: "2138",
 7419		DWI: "143",
 7420		"Traffic Tickets": "4914",
 7421		"Traffic Warnings": "5087",
 7422		"All Reportable": "722",
 7423		"Property Damage": "538",
 7424		Injury: "184",
 7425		Fatality: "0",
 7426		Homicide: "1",
 7427		"Rape and Attempted Rape": "14",
 7428		Robbery: "21",
 7429		"Aggravated Assault": "49",
 7430		"Burglary (Residential)": "123",
 7431		"Burglary (Non-Residential)": "24",
 7432		"Auto Theft": "37",
 7433		"All Thefts": "809",
 7434		"Stolen Bikes": "79",
 7435		"Theft From Vehicles": "283",
 7436		Shoplifting: "176",
 7437		Vandalism: "366",
 7438		Fraud: "145",
 7439		Forgery: "26",
 7440		Arson: "0",
 7441	},
 7442	{
 7443		Date: "Sep-11",
 7444		Population: "262466",
 7445		Felony: "145",
 7446		Misdemeanor: "2129",
 7447		DWI: "167",
 7448		"Traffic Tickets": "4597",
 7449		"Traffic Warnings": "4378",
 7450		"All Reportable": "741",
 7451		"Property Damage": "553",
 7452		Injury: "186",
 7453		Fatality: "2",
 7454		Homicide: "1",
 7455		"Rape and Attempted Rape": "7",
 7456		Robbery: "11",
 7457		"Aggravated Assault": "40",
 7458		"Burglary (Residential)": "84",
 7459		"Burglary (Non-Residential)": "24",
 7460		"Auto Theft": "26",
 7461		"All Thefts": "708",
 7462		"Stolen Bikes": "51",
 7463		"Theft From Vehicles": "220",
 7464		Shoplifting: "161",
 7465		Vandalism: "296",
 7466		Fraud: "123",
 7467		Forgery: "18",
 7468		Arson: "0",
 7469	},
 7470	{
 7471		Date: "Oct-11",
 7472		Population: "262466",
 7473		Felony: "184",
 7474		Misdemeanor: "2037",
 7475		DWI: "166",
 7476		"Traffic Tickets": "4212",
 7477		"Traffic Warnings": "3715",
 7478		"All Reportable": "752",
 7479		"Property Damage": "587",
 7480		Injury: "164",
 7481		Fatality: "1",
 7482		Homicide: "0",
 7483		"Rape and Attempted Rape": "14",
 7484		Robbery: "14",
 7485		"Aggravated Assault": "63",
 7486		"Burglary (Residential)": "83",
 7487		"Burglary (Non-Residential)": "39",
 7488		"Auto Theft": "26",
 7489		"All Thefts": "753",
 7490		"Stolen Bikes": "47",
 7491		"Theft From Vehicles": "271",
 7492		Shoplifting: "201",
 7493		Vandalism: "321",
 7494		Fraud: "120",
 7495		Forgery: "22",
 7496		Arson: "0",
 7497	},
 7498	{
 7499		Date: "Nov-11",
 7500		Population: "262466",
 7501		Felony: "239",
 7502		Misdemeanor: "1780",
 7503		DWI: "129",
 7504		"Traffic Tickets": "4122",
 7505		"Traffic Warnings": "3564",
 7506		"All Reportable": "737",
 7507		"Property Damage": "571",
 7508		Injury: "166",
 7509		Fatality: "0",
 7510		Homicide: "0",
 7511		"Rape and Attempted Rape": "16",
 7512		Robbery: "16",
 7513		"Aggravated Assault": "39",
 7514		"Burglary (Residential)": "67",
 7515		"Burglary (Non-Residential)": "25",
 7516		"Auto Theft": "27",
 7517		"All Thefts": "597",
 7518		"Stolen Bikes": "26",
 7519		"Theft From Vehicles": "167",
 7520		Shoplifting: "171",
 7521		Vandalism: "292",
 7522		Fraud: "99",
 7523		Forgery: "20",
 7524		Arson: "0",
 7525	},
 7526	{
 7527		Date: "Dec-11",
 7528		Population: "262466",
 7529		Felony: "175",
 7530		Misdemeanor: "1556",
 7531		DWI: "196",
 7532		"Traffic Tickets": "3692",
 7533		"Traffic Warnings": "3648",
 7534		"All Reportable": "883",
 7535		"Property Damage": "729",
 7536		Injury: "154",
 7537		Fatality: "0",
 7538		Homicide: "0",
 7539		"Rape and Attempted Rape": "11",
 7540		Robbery: "17",
 7541		"Aggravated Assault": "41",
 7542		"Burglary (Residential)": "80",
 7543		"Burglary (Non-Residential)": "19",
 7544		"Auto Theft": "30",
 7545		"All Thefts": "626",
 7546		"Stolen Bikes": "14",
 7547		"Theft From Vehicles": "166",
 7548		Shoplifting: "175",
 7549		Vandalism: "253",
 7550		Fraud: "118",
 7551		Forgery: "49",
 7552		Arson: "0",
 7553	},
 7554	{
 7555		Date: "Jan-12",
 7556		Population: "265663",
 7557		Felony: "194",
 7558		Misdemeanor: "1579",
 7559		DWI: "184",
 7560		"Traffic Tickets": "4204",
 7561		"Traffic Warnings": "5127",
 7562		"All Reportable": "639",
 7563		"Property Damage": "501",
 7564		Injury: "137",
 7565		Fatality: "1",
 7566		Homicide: "1",
 7567		"Rape and Attempted Rape": "16",
 7568		Robbery: "8",
 7569		"Aggravated Assault": "56",
 7570		"Burglary (Residential)": "81",
 7571		"Burglary (Non-Residential)": "23",
 7572		"Auto Theft": "30",
 7573		"All Thefts": "665",
 7574		"Stolen Bikes": "13",
 7575		"Theft From Vehicles": "256",
 7576		Shoplifting: "159",
 7577		Vandalism: "306",
 7578		Fraud: "137",
 7579		Forgery: "38",
 7580		Arson: "0",
 7581	},
 7582	{
 7583		Date: "Feb-12",
 7584		Population: "265663",
 7585		Felony: "181",
 7586		Misdemeanor: "1604",
 7587		DWI: "145",
 7588		"Traffic Tickets": "3912",
 7589		"Traffic Warnings": "3993",
 7590		"All Reportable": "728",
 7591		"Property Damage": "575",
 7592		Injury: "153",
 7593		Fatality: "0",
 7594		Homicide: "0",
 7595		"Rape and Attempted Rape": "10",
 7596		Robbery: "10",
 7597		"Aggravated Assault": "35",
 7598		"Burglary (Residential)": "58",
 7599		"Burglary (Non-Residential)": "11",
 7600		"Auto Theft": "19",
 7601		"All Thefts": "456",
 7602		"Stolen Bikes": "6",
 7603		"Theft From Vehicles": "113",
 7604		Shoplifting: "107",
 7605		Vandalism: "221",
 7606		Fraud: "136",
 7607		Forgery: "24",
 7608		Arson: "0",
 7609	},
 7610	{
 7611		Date: "Mar-12",
 7612		Population: "265663",
 7613		Felony: "225",
 7614		Misdemeanor: "1922",
 7615		DWI: "129",
 7616		"Traffic Tickets": "4741",
 7617		"Traffic Warnings": "6058",
 7618		"All Reportable": "642",
 7619		"Property Damage": "504",
 7620		Injury: "137",
 7621		Fatality: "1",
 7622		Homicide: "0",
 7623		"Rape and Attempted Rape": "21",
 7624		Robbery: "18",
 7625		"Aggravated Assault": "50",
 7626		"Burglary (Residential)": "85",
 7627		"Burglary (Non-Residential)": "33",
 7628		"Auto Theft": "18",
 7629		"All Thefts": "679",
 7630		"Stolen Bikes": "24",
 7631		"Theft From Vehicles": "261",
 7632		Shoplifting: "149",
 7633		Vandalism: "352",
 7634		Fraud: "134",
 7635		Forgery: "23",
 7636		Arson: "0",
 7637	},
 7638	{
 7639		Date: "Apr-12",
 7640		Population: "265663",
 7641		Felony: "268",
 7642		Misdemeanor: "1969",
 7643		DWI: "148",
 7644		"Traffic Tickets": "3705",
 7645		"Traffic Warnings": "3752",
 7646		"All Reportable": "685",
 7647		"Property Damage": "529",
 7648		Injury: "156",
 7649		Fatality: "0",
 7650		Homicide: "0",
 7651		"Rape and Attempted Rape": "23",
 7652		Robbery: "15",
 7653		"Aggravated Assault": "48",
 7654		"Burglary (Residential)": "119",
 7655		"Burglary (Non-Residential)": "15",
 7656		"Auto Theft": "22",
 7657		"All Thefts": "641",
 7658		"Stolen Bikes": "39",
 7659		"Theft From Vehicles": "209",
 7660		Shoplifting: "149",
 7661		Vandalism: "324",
 7662		Fraud: "139",
 7663		Forgery: "53",
 7664		Arson: "0",
 7665	},
 7666	{
 7667		Date: "May-12",
 7668		Population: "265663",
 7669		Felony: "279",
 7670		Misdemeanor: "1922",
 7671		DWI: "113",
 7672		"Traffic Tickets": "5265",
 7673		"Traffic Warnings": "5038",
 7674		"All Reportable": "673",
 7675		"Property Damage": "497",
 7676		Injury: "176",
 7677		Fatality: "0",
 7678		Homicide: "0",
 7679		"Rape and Attempted Rape": "13",
 7680		Robbery: "18",
 7681		"Aggravated Assault": "60",
 7682		"Burglary (Residential)": "111",
 7683		"Burglary (Non-Residential)": "28",
 7684		"Auto Theft": "23",
 7685		"All Thefts": "742",
 7686		"Stolen Bikes": "66",
 7687		"Theft From Vehicles": "231",
 7688		Shoplifting: "182",
 7689		Vandalism: "293",
 7690		Fraud: "144",
 7691		Forgery: "48",
 7692		Arson: "0",
 7693	},
 7694	{
 7695		Date: "Jun-12",
 7696		Population: "265663",
 7697		Felony: "212",
 7698		Misdemeanor: "1843",
 7699		DWI: "97",
 7700		"Traffic Tickets": "4483",
 7701		"Traffic Warnings": "4281",
 7702		"All Reportable": "599",
 7703		"Property Damage": "462",
 7704		Injury: "136",
 7705		Fatality: "1",
 7706		Homicide: "0",
 7707		"Rape and Attempted Rape": "13",
 7708		Robbery: "21",
 7709		"Aggravated Assault": "58",
 7710		"Burglary (Residential)": "91",
 7711		"Burglary (Non-Residential)": "34",
 7712		"Auto Theft": "13",
 7713		"All Thefts": "640",
 7714		"Stolen Bikes": "70",
 7715		"Theft From Vehicles": "187",
 7716		Shoplifting: "150",
 7717		Vandalism: "325",
 7718		Fraud: "112",
 7719		Forgery: "29",
 7720		Arson: "0",
 7721	},
 7722	{
 7723		Date: "Jul-12",
 7724		Population: "265663",
 7725		Felony: "305",
 7726		Misdemeanor: "1920",
 7727		DWI: "123",
 7728		"Traffic Tickets": "3841",
 7729		"Traffic Warnings": "4046",
 7730		"All Reportable": "557",
 7731		"Property Damage": "443",
 7732		Injury: "113",
 7733		Fatality: "1",
 7734		Homicide: "2",
 7735		"Rape and Attempted Rape": "16",
 7736		Robbery: "22",
 7737		"Aggravated Assault": "74",
 7738		"Burglary (Residential)": "143",
 7739		"Burglary (Non-Residential)": "35",
 7740		"Auto Theft": "24",
 7741		"All Thefts": "738",
 7742		"Stolen Bikes": "68",
 7743		"Theft From Vehicles": "261",
 7744		Shoplifting: "125",
 7745		Vandalism: "363",
 7746		Fraud: "169",
 7747		Forgery: "68",
 7748		Arson: "0",
 7749	},
 7750	{
 7751		Date: "Aug-12",
 7752		Population: "265663",
 7753		Felony: "285",
 7754		Misdemeanor: "2232",
 7755		DWI: "130",
 7756		"Traffic Tickets": "4363",
 7757		"Traffic Warnings": "4159",
 7758		"All Reportable": "731",
 7759		"Property Damage": "546",
 7760		Injury: "185",
 7761		Fatality: "0",
 7762		Homicide: "1",
 7763		"Rape and Attempted Rape": "19",
 7764		Robbery: "9",
 7765		"Aggravated Assault": "64",
 7766		"Burglary (Residential)": "146",
 7767		"Burglary (Non-Residential)": "44",
 7768		"Auto Theft": "30",
 7769		"All Thefts": "825",
 7770		"Stolen Bikes": "76",
 7771		"Theft From Vehicles": "320",
 7772		Shoplifting: "137",
 7773		Vandalism: "352",
 7774		Fraud: "173",
 7775		Forgery: "19",
 7776		Arson: "0",
 7777	},
 7778	{
 7779		Date: "Sep-12",
 7780		Population: "265663",
 7781		Felony: "150",
 7782		Misdemeanor: "2023",
 7783		DWI: "146",
 7784		"Traffic Tickets": "4173",
 7785		"Traffic Warnings": "3609",
 7786		"All Reportable": "724",
 7787		"Property Damage": "555",
 7788		Injury: "169",
 7789		Fatality: "0",
 7790		Homicide: "0",
 7791		"Rape and Attempted Rape": "16",
 7792		Robbery: "12",
 7793		"Aggravated Assault": "69",
 7794		"Burglary (Residential)": "94",
 7795		"Burglary (Non-Residential)": "34",
 7796		"Auto Theft": "26",
 7797		"All Thefts": "683",
 7798		"Stolen Bikes": "71",
 7799		"Theft From Vehicles": "184",
 7800		Shoplifting: "148",
 7801		Vandalism: "328",
 7802		Fraud: "130",
 7803		Forgery: "18",
 7804		Arson: "0",
 7805	},
 7806	{
 7807		Date: "Oct-12",
 7808		Population: "265663",
 7809		Felony: "180",
 7810		Misdemeanor: "1724",
 7811		DWI: "113",
 7812		"Traffic Tickets": "3719",
 7813		"Traffic Warnings": "3657",
 7814		"All Reportable": "680",
 7815		"Property Damage": "526",
 7816		Injury: "154",
 7817		Fatality: "0",
 7818		Homicide: "0",
 7819		"Rape and Attempted Rape": "15",
 7820		Robbery: "18",
 7821		"Aggravated Assault": "43",
 7822		"Burglary (Residential)": "131",
 7823		"Burglary (Non-Residential)": "39",
 7824		"Auto Theft": "35",
 7825		"All Thefts": "774",
 7826		"Stolen Bikes": "40",
 7827		"Theft From Vehicles": "257",
 7828		Shoplifting: "171",
 7829		Vandalism: "322",
 7830		Fraud: "158",
 7831		Forgery: "33",
 7832		Arson: "0",
 7833	},
 7834	{
 7835		Date: "Nov-12",
 7836		Population: "265663",
 7837		Felony: "214",
 7838		Misdemeanor: "1841",
 7839		DWI: "123",
 7840		"Traffic Tickets": "4062",
 7841		"Traffic Warnings": "3576",
 7842		"All Reportable": "647",
 7843		"Property Damage": "502",
 7844		Injury: "145",
 7845		Fatality: "0",
 7846		Homicide: "0",
 7847		"Rape and Attempted Rape": "11",
 7848		Robbery: "25",
 7849		"Aggravated Assault": "48",
 7850		"Burglary (Residential)": "104",
 7851		"Burglary (Non-Residential)": "25",
 7852		"Auto Theft": "27",
 7853		"All Thefts": "734",
 7854		"Stolen Bikes": "23",
 7855		"Theft From Vehicles": "278",
 7856		Shoplifting: "162",
 7857		Vandalism: "269",
 7858		Fraud: "126",
 7859		Forgery: "173",
 7860		Arson: "0",
 7861	},
 7862	{
 7863		Date: "Dec-12",
 7864		Population: "265663",
 7865		Felony: "178",
 7866		Misdemeanor: "1618",
 7867		DWI: "189",
 7868		"Traffic Tickets": "3591",
 7869		"Traffic Warnings": "3227",
 7870		"All Reportable": "780",
 7871		"Property Damage": "637",
 7872		Injury: "141",
 7873		Fatality: "2",
 7874		Homicide: "0",
 7875		"Rape and Attempted Rape": "7",
 7876		Robbery: "22",
 7877		"Aggravated Assault": "37",
 7878		"Burglary (Residential)": "88",
 7879		"Burglary (Non-Residential)": "21",
 7880		"Auto Theft": "24",
 7881		"All Thefts": "625",
 7882		"Stolen Bikes": "14",
 7883		"Theft From Vehicles": "212",
 7884		Shoplifting: "174",
 7885		Vandalism: "370",
 7886		Fraud: "132",
 7887		Forgery: "86",
 7888		Arson: "0",
 7889	},
 7890	{
 7891		Date: "Jan-13",
 7892		Population: "268937",
 7893		Felony: "244",
 7894		Misdemeanor: "1807",
 7895		DWI: "129",
 7896		"Traffic Tickets": "4701",
 7897		"Traffic Warnings": "5434",
 7898		"All Reportable": "672",
 7899		"Property Damage": "554",
 7900		Injury: "118",
 7901		Fatality: "0",
 7902		Homicide: "0",
 7903		"Rape and Attempted Rape": "14",
 7904		Robbery: "16",
 7905		"Aggravated Assault": "45",
 7906		"Burglary (Residential)": "61",
 7907		"Burglary (Non-Residential)": "13",
 7908		"Auto Theft": "24",
 7909		"All Thefts": "529",
 7910		"Stolen Bikes": "5",
 7911		"Theft From Vehicles": "169",
 7912		Shoplifting: "129",
 7913		Vandalism: "334",
 7914		Fraud: "156",
 7915		Forgery: "31",
 7916		Arson: "3",
 7917	},
 7918	{
 7919		Date: "Feb-13",
 7920		Population: "268937",
 7921		Felony: "170",
 7922		Misdemeanor: "1476",
 7923		DWI: "125",
 7924		"Traffic Tickets": "3830",
 7925		"Traffic Warnings": "4659",
 7926		"All Reportable": "588",
 7927		"Property Damage": "464",
 7928		Injury: "123",
 7929		Fatality: "1",
 7930		Homicide: "0",
 7931		"Rape and Attempted Rape": "11",
 7932		Robbery: "13",
 7933		"Aggravated Assault": "41",
 7934		"Burglary (Residential)": "58",
 7935		"Burglary (Non-Residential)": "12",
 7936		"Auto Theft": "18",
 7937		"All Thefts": "486",
 7938		"Stolen Bikes": "8",
 7939		"Theft From Vehicles": "111",
 7940		Shoplifting: "142",
 7941		Vandalism: "211",
 7942		Fraud: "134",
 7943		Forgery: "8",
 7944		Arson: "4",
 7945	},
 7946	{
 7947		Date: "Mar-13",
 7948		Population: "268937",
 7949		Felony: "183",
 7950		Misdemeanor: "1499",
 7951		DWI: "130",
 7952		"Traffic Tickets": "4531",
 7953		"Traffic Warnings": "5696",
 7954		"All Reportable": "748",
 7955		"Property Damage": "605",
 7956		Injury: "142",
 7957		Fatality: "1",
 7958		Homicide: "0",
 7959		"Rape and Attempted Rape": "10",
 7960		Robbery: "9",
 7961		"Aggravated Assault": "57",
 7962		"Burglary (Residential)": "83",
 7963		"Burglary (Non-Residential)": "49",
 7964		"Auto Theft": "18",
 7965		"All Thefts": "507",
 7966		"Stolen Bikes": "12",
 7967		"Theft From Vehicles": "169",
 7968		Shoplifting: "123",
 7969		Vandalism: "251",
 7970		Fraud: "172",
 7971		Forgery: "48",
 7972		Arson: "6",
 7973	},
 7974	{
 7975		Date: "Apr-13",
 7976		Population: "268937",
 7977		Felony: "238",
 7978		Misdemeanor: "1929",
 7979		DWI: "120",
 7980		"Traffic Tickets": "3862",
 7981		"Traffic Warnings": "3966",
 7982		"All Reportable": "702",
 7983		"Property Damage": "535",
 7984		Injury: "167",
 7985		Fatality: "0",
 7986		Homicide: "0",
 7987		"Rape and Attempted Rape": "13",
 7988		Robbery: "21",
 7989		"Aggravated Assault": "59",
 7990		"Burglary (Residential)": "78",
 7991		"Burglary (Non-Residential)": "18",
 7992		"Auto Theft": "15",
 7993		"All Thefts": "535",
 7994		"Stolen Bikes": "30",
 7995		"Theft From Vehicles": "139",
 7996		Shoplifting: "151",
 7997		Vandalism: "308",
 7998		Fraud: "133",
 7999		Forgery: "15",
 8000		Arson: "5",
 8001	},
 8002	{
 8003		Date: "May-13",
 8004		Population: "268937",
 8005		Felony: "199",
 8006		Misdemeanor: "1939",
 8007		DWI: "99",
 8008		"Traffic Tickets": "4649",
 8009		"Traffic Warnings": "4252",
 8010		"All Reportable": "669",
 8011		"Property Damage": "495",
 8012		Injury: "174",
 8013		Fatality: "0",
 8014		Homicide: "0",
 8015		"Rape and Attempted Rape": "13",
 8016		Robbery: "13",
 8017		"Aggravated Assault": "49",
 8018		"Burglary (Residential)": "85",
 8019		"Burglary (Non-Residential)": "18",
 8020		"Auto Theft": "26",
 8021		"All Thefts": "629",
 8022		"Stolen Bikes": "34",
 8023		"Theft From Vehicles": "173",
 8024		Shoplifting: "159",
 8025		Vandalism: "283",
 8026		Fraud: "119",
 8027		Forgery: "24",
 8028		Arson: "5",
 8029	},
 8030	{
 8031		Date: "Jun-13",
 8032		Population: "268937",
 8033		Felony: "268",
 8034		Misdemeanor: "1797",
 8035		DWI: "108",
 8036		"Traffic Tickets": "4136",
 8037		"Traffic Warnings": "4081",
 8038		"All Reportable": "634",
 8039		"Property Damage": "483",
 8040		Injury: "150",
 8041		Fatality: "1",
 8042		Homicide: "3",
 8043		"Rape and Attempted Rape": "10",
 8044		Robbery: "15",
 8045		"Aggravated Assault": "47",
 8046		"Burglary (Residential)": "86",
 8047		"Burglary (Non-Residential)": "12",
 8048		"Auto Theft": "21",
 8049		"All Thefts": "642",
 8050		"Stolen Bikes": "39",
 8051		"Theft From Vehicles": "184",
 8052		Shoplifting: "141",
 8053		Vandalism: "277",
 8054		Fraud: "134",
 8055		Forgery: "69",
 8056		Arson: "8",
 8057	},
 8058	{
 8059		Date: "Jul-13",
 8060		Population: "268937",
 8061		Felony: "308",
 8062		Misdemeanor: "1773",
 8063		DWI: "90",
 8064		"Traffic Tickets": "4024",
 8065		"Traffic Warnings": "3898",
 8066		"All Reportable": "658",
 8067		"Property Damage": "504",
 8068		Injury: "153",
 8069		Fatality: "1",
 8070		Homicide: "1",
 8071		"Rape and Attempted Rape": "12",
 8072		Robbery: "24",
 8073		"Aggravated Assault": "80",
 8074		"Burglary (Residential)": "129",
 8075		"Burglary (Non-Residential)": "18",
 8076		"Auto Theft": "38",
 8077		"All Thefts": "807",
 8078		"Stolen Bikes": "74",
 8079		"Theft From Vehicles": "298",
 8080		Shoplifting: "158",
 8081		Vandalism: "342",
 8082		Fraud: "170",
 8083		Forgery: "28",
 8084		Arson: "18",
 8085	},
 8086	{
 8087		Date: "Aug-13",
 8088		Population: "268937",
 8089		Felony: "254",
 8090		Misdemeanor: "1938",
 8091		DWI: "122",
 8092		"Traffic Tickets": "4772",
 8093		"Traffic Warnings": "4534",
 8094		"All Reportable": "664",
 8095		"Property Damage": "496",
 8096		Injury: "168",
 8097		Fatality: "0",
 8098		Homicide: "0",
 8099		"Rape and Attempted Rape": "13",
 8100		Robbery: "11",
 8101		"Aggravated Assault": "43",
 8102		"Burglary (Residential)": "136",
 8103		"Burglary (Non-Residential)": "32",
 8104		"Auto Theft": "26",
 8105		"All Thefts": "806",
 8106		"Stolen Bikes": "79",
 8107		"Theft From Vehicles": "285",
 8108		Shoplifting: "167",
 8109		Vandalism: "326",
 8110		Fraud: "178",
 8111		Forgery: "86",
 8112		Arson: "7",
 8113	},
 8114	{
 8115		Date: "Sep-13",
 8116		Population: "268937",
 8117		Felony: "257",
 8118		Misdemeanor: "1955",
 8119		DWI: "116",
 8120		"Traffic Tickets": "3796",
 8121		"Traffic Warnings": "3900",
 8122		"All Reportable": "731",
 8123		"Property Damage": "553",
 8124		Injury: "178",
 8125		Fatality: "0",
 8126		Homicide: "0",
 8127		"Rape and Attempted Rape": "11",
 8128		Robbery: "23",
 8129		"Aggravated Assault": "55",
 8130		"Burglary (Residential)": "93",
 8131		"Burglary (Non-Residential)": "41",
 8132		"Auto Theft": "29",
 8133		"All Thefts": "754",
 8134		"Stolen Bikes": "64",
 8135		"Theft From Vehicles": "257",
 8136		Shoplifting: "150",
 8137		Vandalism: "339",
 8138		Fraud: "149",
 8139		Forgery: "16",
 8140		Arson: "5",
 8141	},
 8142	{
 8143		Date: "Oct-13",
 8144		Population: "268937",
 8145		Felony: "245",
 8146		Misdemeanor: "1651",
 8147		DWI: "105",
 8148		"Traffic Tickets": "3470",
 8149		"Traffic Warnings": "3158",
 8150		"All Reportable": "726",
 8151		"Property Damage": "552",
 8152		Injury: "174",
 8153		Fatality: "0",
 8154		Homicide: "0",
 8155		"Rape and Attempted Rape": "11",
 8156		Robbery: "30",
 8157		"Aggravated Assault": "48",
 8158		"Burglary (Residential)": "114",
 8159		"Burglary (Non-Residential)": "35",
 8160		"Auto Theft": "21",
 8161		"All Thefts": "730",
 8162		"Stolen Bikes": "63",
 8163		"Theft From Vehicles": "240",
 8164		Shoplifting: "137",
 8165		Vandalism: "191",
 8166		Fraud: "178",
 8167		Forgery: "49",
 8168		Arson: "2",
 8169	},
 8170	{
 8171		Date: "Nov-13",
 8172		Population: "268937",
 8173		Felony: "286",
 8174		Misdemeanor: "1704",
 8175		DWI: "103",
 8176		"Traffic Tickets": "3776",
 8177		"Traffic Warnings": "3280",
 8178		"All Reportable": "708",
 8179		"Property Damage": "552",
 8180		Injury: "155",
 8181		Fatality: "1",
 8182		Homicide: "0",
 8183		"Rape and Attempted Rape": "10",
 8184		Robbery: "17",
 8185		"Aggravated Assault": "58",
 8186		"Burglary (Residential)": "101",
 8187		"Burglary (Non-Residential)": "15",
 8188		"Auto Theft": "28",
 8189		"All Thefts": "620",
 8190		"Stolen Bikes": "23",
 8191		"Theft From Vehicles": "224",
 8192		Shoplifting: "148",
 8193		Vandalism: "286",
 8194		Fraud: "147",
 8195		Forgery: "56",
 8196		Arson: "6",
 8197	},
 8198	{
 8199		Date: "Dec-13",
 8200		Population: "268937",
 8201		Felony: "325",
 8202		Misdemeanor: "1590",
 8203		DWI: "132",
 8204		"Traffic Tickets": "3968",
 8205		"Traffic Warnings": "3339",
 8206		"All Reportable": "807",
 8207		"Property Damage": "664",
 8208		Injury: "143",
 8209		Fatality: "0",
 8210		Homicide: "1",
 8211		"Rape and Attempted Rape": "20",
 8212		Robbery: "16",
 8213		"Aggravated Assault": "31",
 8214		"Burglary (Residential)": "92",
 8215		"Burglary (Non-Residential)": "24",
 8216		"Auto Theft": "24",
 8217		"All Thefts": "532",
 8218		"Stolen Bikes": "16",
 8219		"Theft From Vehicles": "154",
 8220		Shoplifting: "152",
 8221		Vandalism: "238",
 8222		Fraud: "113",
 8223		Forgery: "92",
 8224		Arson: "1",
 8225	},
 8226	{
 8227		Date: "Jan-14",
 8228		Population: "273945",
 8229		Felony: "309",
 8230		Misdemeanor: "1769",
 8231		DWI: "101",
 8232		"Traffic Tickets": "5180",
 8233		"Traffic Warnings": "4610",
 8234		"All Reportable": "723",
 8235		"Property Damage": "587",
 8236		Injury: "134",
 8237		Fatality: "2",
 8238		Homicide: "1",
 8239		"Rape and Attempted Rape": "17",
 8240		Robbery: "17",
 8241		"Aggravated Assault": "33",
 8242		"Burglary (Residential)": "70",
 8243		"Burglary (Non-Residential)": "8",
 8244		"Auto Theft": "33",
 8245		"All Thefts": "517",
 8246		"Stolen Bikes": "9",
 8247		"Theft From Vehicles": "133",
 8248		Shoplifting: "129",
 8249		Vandalism: "275",
 8250		Fraud: "183",
 8251		Forgery: "31",
 8252		Arson: "2",
 8253	},
 8254	{
 8255		Date: "Feb-14",
 8256		Population: "273945",
 8257		Felony: "246",
 8258		Misdemeanor: "1517",
 8259		DWI: "117",
 8260		"Traffic Tickets": "3952",
 8261		"Traffic Warnings": "3744",
 8262		"All Reportable": "682",
 8263		"Property Damage": "571",
 8264		Injury: "111",
 8265		Fatality: "0",
 8266		Homicide: "0",
 8267		"Rape and Attempted Rape": "5",
 8268		Robbery: "15",
 8269		"Aggravated Assault": "38",
 8270		"Burglary (Residential)": "51",
 8271		"Burglary (Non-Residential)": "26",
 8272		"Auto Theft": "24",
 8273		"All Thefts": "450",
 8274		"Stolen Bikes": "9",
 8275		"Theft From Vehicles": "144",
 8276		Shoplifting: "104",
 8277		Vandalism: "199",
 8278		Fraud: "137",
 8279		Forgery: "36",
 8280		Arson: "3",
 8281	},
 8282	{
 8283		Date: "Mar-14",
 8284		Population: "273945",
 8285		Felony: "273",
 8286		Misdemeanor: "1881",
 8287		DWI: "141",
 8288		"Traffic Tickets": "5200",
 8289		"Traffic Warnings": "5249",
 8290		"All Reportable": "568",
 8291		"Property Damage": "423",
 8292		Injury: "143",
 8293		Fatality: "2",
 8294		Homicide: "1",
 8295		"Rape and Attempted Rape": "9",
 8296		Robbery: "13",
 8297		"Aggravated Assault": "46",
 8298		"Burglary (Residential)": "79",
 8299		"Burglary (Non-Residential)": "14",
 8300		"Auto Theft": "19",
 8301		"All Thefts": "535",
 8302		"Stolen Bikes": "18",
 8303		"Theft From Vehicles": "174",
 8304		Shoplifting: "118",
 8305		Vandalism: "314",
 8306		Fraud: "173",
 8307		Forgery: "36",
 8308		Arson: "8",
 8309	},
 8310	{
 8311		Date: "Apr-14",
 8312		Population: "273945",
 8313		Felony: "270",
 8314		Misdemeanor: "1799",
 8315		DWI: "106",
 8316		"Traffic Tickets": "4099",
 8317		"Traffic Warnings": "4055",
 8318		"All Reportable": "657",
 8319		"Property Damage": "498",
 8320		Injury: "159",
 8321		Fatality: "0",
 8322		Homicide: "1",
 8323		"Rape and Attempted Rape": "5",
 8324		Robbery: "17",
 8325		"Aggravated Assault": "57",
 8326		"Burglary (Residential)": "101",
 8327		"Burglary (Non-Residential)": "16",
 8328		"Auto Theft": "23",
 8329		"All Thefts": "645",
 8330		"Stolen Bikes": "33",
 8331		"Theft From Vehicles": "184",
 8332		Shoplifting: "153",
 8333		Vandalism: "294",
 8334		Fraud: "151",
 8335		Forgery: "20",
 8336		Arson: "10",
 8337	},
 8338	{
 8339		Date: "May-14",
 8340		Population: "273945",
 8341		Felony: "308",
 8342		Misdemeanor: "1870",
 8343		DWI: "119",
 8344		"Traffic Tickets": "5613",
 8345		"Traffic Warnings": "4676",
 8346		"All Reportable": "738",
 8347		"Property Damage": "564",
 8348		Injury: "174",
 8349		Fatality: "0",
 8350		Homicide: "0",
 8351		"Rape and Attempted Rape": "13",
 8352		Robbery: "17",
 8353		"Aggravated Assault": "46",
 8354		"Burglary (Residential)": "92",
 8355		"Burglary (Non-Residential)": "23",
 8356		"Auto Theft": "15",
 8357		"All Thefts": "665",
 8358		"Stolen Bikes": "45",
 8359		"Theft From Vehicles": "196",
 8360		Shoplifting: "151",
 8361		Vandalism: "322",
 8362		Fraud: "149",
 8363		Forgery: "31",
 8364		Arson: "5",
 8365	},
 8366	{
 8367		Date: "Jun-14",
 8368		Population: "273945",
 8369		Felony: "254",
 8370		Misdemeanor: "1846",
 8371		DWI: "106",
 8372		"Traffic Tickets": "4332",
 8373		"Traffic Warnings": "3901",
 8374		"All Reportable": "652",
 8375		"Property Damage": "526",
 8376		Injury: "124",
 8377		Fatality: "2",
 8378		Homicide: "1",
 8379		"Rape and Attempted Rape": "26",
 8380		Robbery: "20",
 8381		"Aggravated Assault": "53",
 8382		"Burglary (Residential)": "102",
 8383		"Burglary (Non-Residential)": "34",
 8384		"Auto Theft": "24",
 8385		"All Thefts": "623",
 8386		"Stolen Bikes": "45",
 8387		"Theft From Vehicles": "186",
 8388		Shoplifting: "148",
 8389		Vandalism: "264",
 8390		Fraud: "161",
 8391		Forgery: "69",
 8392		Arson: "5",
 8393	},
 8394	{
 8395		Date: "Jul-14",
 8396		Population: "273945",
 8397		Felony: "264",
 8398		Misdemeanor: "1797",
 8399		DWI: "87",
 8400		"Traffic Tickets": "4408",
 8401		"Traffic Warnings": "4373",
 8402		"All Reportable": "621",
 8403		"Property Damage": "483",
 8404		Injury: "137",
 8405		Fatality: "1",
 8406		Homicide: "0",
 8407		"Rape and Attempted Rape": "15",
 8408		Robbery: "12",
 8409		"Aggravated Assault": "48",
 8410		"Burglary (Residential)": "99",
 8411		"Burglary (Non-Residential)": "37",
 8412		"Auto Theft": "25",
 8413		"All Thefts": "641",
 8414		"Stolen Bikes": "65",
 8415		"Theft From Vehicles": "211",
 8416		Shoplifting: "154",
 8417		Vandalism: "347",
 8418		Fraud: "186",
 8419		Forgery: "16",
 8420		Arson: "10",
 8421	},
 8422	{
 8423		Date: "Aug-14",
 8424		Population: "273945",
 8425		Felony: "214",
 8426		Misdemeanor: "1874",
 8427		DWI: "125",
 8428		"Traffic Tickets": "4279",
 8429		"Traffic Warnings": "3652",
 8430		"All Reportable": "694",
 8431		"Property Damage": "499",
 8432		Injury: "191",
 8433		Fatality: "4",
 8434		Homicide: "2",
 8435		"Rape and Attempted Rape": "14",
 8436		Robbery: "19",
 8437		"Aggravated Assault": "37",
 8438		"Burglary (Residential)": "92",
 8439		"Burglary (Non-Residential)": "20",
 8440		"Auto Theft": "35",
 8441		"All Thefts": "707",
 8442		"Stolen Bikes": "99",
 8443		"Theft From Vehicles": "215",
 8444		Shoplifting: "160",
 8445		Vandalism: "264",
 8446		Fraud: "142",
 8447		Forgery: "15",
 8448		Arson: "4",
 8449	},
 8450	{
 8451		Date: "Sep-14",
 8452		Population: "273945",
 8453		Felony: "246",
 8454		Misdemeanor: "1817",
 8455		DWI: "108",
 8456		"Traffic Tickets": "4018",
 8457		"Traffic Warnings": "3736",
 8458		"All Reportable": "698",
 8459		"Property Damage": "535",
 8460		Injury: "161",
 8461		Fatality: "2",
 8462		Homicide: "0",
 8463		"Rape and Attempted Rape": "14",
 8464		Robbery: "19",
 8465		"Aggravated Assault": "50",
 8466		"Burglary (Residential)": "70",
 8467		"Burglary (Non-Residential)": "18",
 8468		"Auto Theft": "24",
 8469		"All Thefts": "615",
 8470		"Stolen Bikes": "65",
 8471		"Theft From Vehicles": "176",
 8472		Shoplifting: "137",
 8473		Vandalism: "328",
 8474		Fraud: "140",
 8475		Forgery: "22",
 8476		Arson: "6",
 8477	},
 8478	{
 8479		Date: "Oct-14",
 8480		Population: "273945",
 8481		Felony: "270",
 8482		Misdemeanor: "1667",
 8483		DWI: "102",
 8484		"Traffic Tickets": "4128",
 8485		"Traffic Warnings": "3343",
 8486		"All Reportable": "709",
 8487		"Property Damage": "521",
 8488		Injury: "188",
 8489		Fatality: "0",
 8490		Homicide: "0",
 8491		"Rape and Attempted Rape": "10",
 8492		Robbery: "24",
 8493		"Aggravated Assault": "57",
 8494		"Burglary (Residential)": "113",
 8495		"Burglary (Non-Residential)": "25",
 8496		"Auto Theft": "28",
 8497		"All Thefts": "702",
 8498		"Stolen Bikes": "44",
 8499		"Theft From Vehicles": "245",
 8500		Shoplifting: "180",
 8501		Vandalism: "245",
 8502		Fraud: "160",
 8503		Forgery: "47",
 8504		Arson: "6",
 8505	},
 8506	{
 8507		Date: "Nov-14",
 8508		Population: "273945",
 8509		Felony: "265",
 8510		Misdemeanor: "1570",
 8511		DWI: "118",
 8512		"Traffic Tickets": "3702",
 8513		"Traffic Warnings": "2989",
 8514		"All Reportable": "823",
 8515		"Property Damage": "673",
 8516		Injury: "149",
 8517		Fatality: "1",
 8518		Homicide: "0",
 8519		"Rape and Attempted Rape": "14",
 8520		Robbery: "13",
 8521		"Aggravated Assault": "39",
 8522		"Burglary (Residential)": "75",
 8523		"Burglary (Non-Residential)": "11",
 8524		"Auto Theft": "30",
 8525		"All Thefts": "645",
 8526		"Stolen Bikes": "23",
 8527		"Theft From Vehicles": "229",
 8528		Shoplifting: "176",
 8529		Vandalism: "222",
 8530		Fraud: "120",
 8531		Forgery: "34",
 8532		Arson: "2",
 8533	},
 8534	{
 8535		Date: "Dec-14",
 8536		Population: "273945",
 8537		Felony: "248",
 8538		Misdemeanor: "1481",
 8539		DWI: "139",
 8540		"Traffic Tickets": "2943",
 8541		"Traffic Warnings": "2884",
 8542		"All Reportable": "732",
 8543		"Property Damage": "588",
 8544		Injury: "143",
 8545		Fatality: "1",
 8546		Homicide: "1",
 8547		"Rape and Attempted Rape": "10",
 8548		Robbery: "19",
 8549		"Aggravated Assault": "53",
 8550		"Burglary (Residential)": "93",
 8551		"Burglary (Non-Residential)": "17",
 8552		"Auto Theft": "28",
 8553		"All Thefts": "679",
 8554		"Stolen Bikes": "15",
 8555		"Theft From Vehicles": "295",
 8556		Shoplifting: "173",
 8557		Vandalism: "258",
 8558		Fraud: "138",
 8559		Forgery: "43",
 8560		Arson: "4",
 8561	},
 8562	{
 8563		Date: "Jan-15",
 8564		Population: "277178",
 8565		Felony: "232",
 8566		Misdemeanor: "1506",
 8567		DWI: "117",
 8568		"Traffic Tickets": "3960",
 8569		"Traffic Warnings": "3734",
 8570		"All Reportable": "672",
 8571		"Property Damage": "536",
 8572		Injury: "134",
 8573		Fatality: "2",
 8574		Homicide: "0",
 8575		"Rape and Attempted Rape": "12",
 8576		Robbery: "22",
 8577		"Aggravated Assault": "39",
 8578		"Burglary (Residential)": "79",
 8579		"Burglary (Non-Residential)": "20",
 8580		"Auto Theft": "27",
 8581		"All Thefts": "590",
 8582		"Stolen Bikes": "12",
 8583		"Theft From Vehicles": "218",
 8584		Shoplifting: "162",
 8585		Vandalism: "223",
 8586		Fraud: "142",
 8587		Forgery: "39",
 8588		Arson: "5",
 8589	},
 8590	{
 8591		Date: "Feb-15",
 8592		Population: "277178",
 8593		Felony: "256",
 8594		Misdemeanor: "1403",
 8595		DWI: "98",
 8596		"Traffic Tickets": "3474",
 8597		"Traffic Warnings": "3047",
 8598		"All Reportable": "767",
 8599		"Property Damage": "626",
 8600		Injury: "140",
 8601		Fatality: "1",
 8602		Homicide: "0",
 8603		"Rape and Attempted Rape": "12",
 8604		Robbery: "11",
 8605		"Aggravated Assault": "40",
 8606		"Burglary (Residential)": "57",
 8607		"Burglary (Non-Residential)": "5",
 8608		"Auto Theft": "20",
 8609		"All Thefts": "368",
 8610		"Stolen Bikes": "9",
 8611		"Theft From Vehicles": "106",
 8612		Shoplifting: "100",
 8613		Vandalism: "160",
 8614		Fraud: "161",
 8615		Forgery: "50",
 8616		Arson: "3",
 8617	},
 8618	{
 8619		Date: "Mar-15",
 8620		Population: "277178",
 8621		Felony: "272",
 8622		Misdemeanor: "1777",
 8623		DWI: "113",
 8624		"Traffic Tickets": "4024",
 8625		"Traffic Warnings": "4022",
 8626		"All Reportable": "645",
 8627		"Property Damage": "486",
 8628		Injury: "158",
 8629		Fatality: "1",
 8630		Homicide: "0",
 8631		"Rape and Attempted Rape": "18",
 8632		Robbery: "10",
 8633		"Aggravated Assault": "62",
 8634		"Burglary (Residential)": "88",
 8635		"Burglary (Non-Residential)": "12",
 8636		"Auto Theft": "27",
 8637		"All Thefts": "630",
 8638		"Stolen Bikes": "23",
 8639		"Theft From Vehicles": "274",
 8640		Shoplifting: "143",
 8641		Vandalism: "246",
 8642		Fraud: "217",
 8643		Forgery: "37",
 8644		Arson: "11",
 8645	},
 8646	{
 8647		Date: "Apr-15",
 8648		Population: "277178",
 8649		Felony: "329",
 8650		Misdemeanor: "1656",
 8651		DWI: "107",
 8652		"Traffic Tickets": "3607",
 8653		"Traffic Warnings": "2929",
 8654		"All Reportable": "692",
 8655		"Property Damage": "565",
 8656		Injury: "126",
 8657		Fatality: "1",
 8658		Homicide: "0",
 8659		"Rape and Attempted Rape": "19",
 8660		Robbery: "19",
 8661		"Aggravated Assault": "52",
 8662		"Burglary (Residential)": "102",
 8663		"Burglary (Non-Residential)": "20",
 8664		"Auto Theft": "25",
 8665		"All Thefts": "593",
 8666		"Stolen Bikes": "42",
 8667		"Theft From Vehicles": "230",
 8668		Shoplifting: "111",
 8669		Vandalism: "294",
 8670		Fraud: "226",
 8671		Forgery: "53",
 8672		Arson: "8",
 8673	},
 8674	{
 8675		Date: "May-15",
 8676		Population: "277178",
 8677		Felony: "273",
 8678		Misdemeanor: "1410",
 8679		DWI: "82",
 8680		"Traffic Tickets": "3656",
 8681		"Traffic Warnings": "2765",
 8682		"All Reportable": "736",
 8683		"Property Damage": "569",
 8684		Injury: "165",
 8685		Fatality: "2",
 8686		Homicide: "0",
 8687		"Rape and Attempted Rape": "11",
 8688		Robbery: "20",
 8689		"Aggravated Assault": "47",
 8690		"Burglary (Residential)": "132",
 8691		"Burglary (Non-Residential)": "15",
 8692		"Auto Theft": "28",
 8693		"All Thefts": "634",
 8694		"Stolen Bikes": "47",
 8695		"Theft From Vehicles": "229",
 8696		Shoplifting: "147",
 8697		Vandalism: "342",
 8698		Fraud: "149",
 8699		Forgery: "57",
 8700		Arson: "3",
 8701	},
 8702	{
 8703		Date: "Jun-15",
 8704		Population: "277178",
 8705		Felony: "262",
 8706		Misdemeanor: "1529",
 8707		DWI: "70",
 8708		"Traffic Tickets": "3643",
 8709		"Traffic Warnings": "2997",
 8710		"All Reportable": "722",
 8711		"Property Damage": "557",
 8712		Injury: "165",
 8713		Fatality: "0",
 8714		Homicide: "0",
 8715		"Rape and Attempted Rape": "12",
 8716		Robbery: "22",
 8717		"Aggravated Assault": "49",
 8718		"Burglary (Residential)": "70",
 8719		"Burglary (Non-Residential)": "22",
 8720		"Auto Theft": "35",
 8721		"All Thefts": "603",
 8722		"Stolen Bikes": "42",
 8723		"Theft From Vehicles": "215",
 8724		Shoplifting: "151",
 8725		Vandalism: "261",
 8726		Fraud: "200",
 8727		Forgery: "23",
 8728		Arson: "12",
 8729	},
 8730	{
 8731		Date: "Jul-15",
 8732		Population: "277178",
 8733		Felony: "287",
 8734		Misdemeanor: "1471",
 8735		DWI: "86",
 8736		"Traffic Tickets": "3521",
 8737		"Traffic Warnings": "3515",
 8738		"All Reportable": "711",
 8739		"Property Damage": "557",
 8740		Injury: "153",
 8741		Fatality: "1",
 8742		Homicide: "0",
 8743		"Rape and Attempted Rape": "20",
 8744		Robbery: "15",
 8745		"Aggravated Assault": "53",
 8746		"Burglary (Residential)": "95",
 8747		"Burglary (Non-Residential)": "15",
 8748		"Auto Theft": "25",
 8749		"All Thefts": "723",
 8750		"Stolen Bikes": "52",
 8751		"Theft From Vehicles": "286",
 8752		Shoplifting: "177",
 8753		Vandalism: "278",
 8754		Fraud: "159",
 8755		Forgery: "22",
 8756		Arson: "20",
 8757	},
 8758	{
 8759		Date: "Aug-15",
 8760		Population: "277178",
 8761		Felony: "264",
 8762		Misdemeanor: "1592",
 8763		DWI: "91",
 8764		"Traffic Tickets": "3797",
 8765		"Traffic Warnings": "3950",
 8766		"All Reportable": "763",
 8767		"Property Damage": "592",
 8768		Injury: "170",
 8769		Fatality: "1",
 8770		Homicide: "0",
 8771		"Rape and Attempted Rape": "18",
 8772		Robbery: "20",
 8773		"Aggravated Assault": "54",
 8774		"Burglary (Residential)": "99",
 8775		"Burglary (Non-Residential)": "15",
 8776		"Auto Theft": "37",
 8777		"All Thefts": "663",
 8778		"Stolen Bikes": "57",
 8779		"Theft From Vehicles": "246",
 8780		Shoplifting: "155",
 8781		Vandalism: "328",
 8782		Fraud: "155",
 8783		Forgery: "46",
 8784		Arson: "3",
 8785	},
 8786	{
 8787		Date: "Sep-15",
 8788		Population: "277178",
 8789		Felony: "385",
 8790		Misdemeanor: "1687",
 8791		DWI: "127",
 8792		"Traffic Tickets": "4068",
 8793		"Traffic Warnings": "3458",
 8794		"All Reportable": "776",
 8795		"Property Damage": "598",
 8796		Injury: "174",
 8797		Fatality: "4",
 8798		Homicide: "0",
 8799		"Rape and Attempted Rape": "24",
 8800		Robbery: "23",
 8801		"Aggravated Assault": "71",
 8802		"Burglary (Residential)": "107",
 8803		"Burglary (Non-Residential)": "34",
 8804		"Auto Theft": "38",
 8805		"All Thefts": "651",
 8806		"Stolen Bikes": "62",
 8807		"Theft From Vehicles": "208",
 8808		Shoplifting: "155",
 8809		Vandalism: "303",
 8810		Fraud: "150",
 8811		Forgery: "72",
 8812		Arson: "7",
 8813	},
 8814	{
 8815		Date: "Oct-15",
 8816		Population: "277178",
 8817		Felony: "349",
 8818		Misdemeanor: "1729",
 8819		DWI: "124",
 8820		"Traffic Tickets": "3812",
 8821		"Traffic Warnings": "3145",
 8822		"All Reportable": "790",
 8823		"Property Damage": "612",
 8824		Injury: "178",
 8825		Fatality: "0",
 8826		Homicide: "0",
 8827		"Rape and Attempted Rape": "21",
 8828		Robbery: "17",
 8829		"Aggravated Assault": "62",
 8830		"Burglary (Residential)": "97",
 8831		"Burglary (Non-Residential)": "25",
 8832		"Auto Theft": "25",
 8833		"All Thefts": "632",
 8834		"Stolen Bikes": "48",
 8835		"Theft From Vehicles": "205",
 8836		Shoplifting: "167",
 8837		Vandalism: "264",
 8838		Fraud: "177",
 8839		Forgery: "19",
 8840		Arson: "12",
 8841	},
 8842	{
 8843		Date: "Nov-15",
 8844		Population: "277178",
 8845		Felony: "289",
 8846		Misdemeanor: "1564",
 8847		DWI: "88",
 8848		"Traffic Tickets": "3376",
 8849		"Traffic Warnings": "2932",
 8850		"All Reportable": "801",
 8851		"Property Damage": "659",
 8852		Injury: "141",
 8853		Fatality: "1",
 8854		Homicide: "1",
 8855		"Rape and Attempted Rape": "21",
 8856		Robbery: "17",
 8857		"Aggravated Assault": "50",
 8858		"Burglary (Residential)": "79",
 8859		"Burglary (Non-Residential)": "14",
 8860		"Auto Theft": "27",
 8861		"All Thefts": "589",
 8862		"Stolen Bikes": "39",
 8863		"Theft From Vehicles": "202",
 8864		Shoplifting: "154",
 8865		Vandalism: "267",
 8866		Fraud: "137",
 8867		Forgery: "17",
 8868		Arson: "6",
 8869	},
 8870	{
 8871		Date: "Dec-15",
 8872		Population: "277178",
 8873		Felony: "273",
 8874		Misdemeanor: "1542",
 8875		DWI: "103",
 8876		"Traffic Tickets": "3126",
 8877		"Traffic Warnings": "2592",
 8878		"All Reportable": "765",
 8879		"Property Damage": "601",
 8880		Injury: "164",
 8881		Fatality: "0",
 8882		Homicide: "0",
 8883		"Rape and Attempted Rape": "8",
 8884		Robbery: "17",
 8885		"Aggravated Assault": "37",
 8886		"Burglary (Residential)": "80",
 8887		"Burglary (Non-Residential)": "38",
 8888		"Auto Theft": "25",
 8889		"All Thefts": "637",
 8890		"Stolen Bikes": "17",
 8891		"Theft From Vehicles": "194",
 8892		Shoplifting: "199",
 8893		Vandalism: "310",
 8894		Fraud: "141",
 8895		Forgery: "16",
 8896		Arson: "7",
 8897	},
 8898	{
 8899		Date: "Jan-16",
 8900		Population: "281254",
 8901		Felony: "277",
 8902		Misdemeanor: "1500",
 8903		DWI: "84",
 8904		"Traffic Tickets": "3909",
 8905		"Traffic Warnings": "3324",
 8906		"All Reportable": "840",
 8907		"Property Damage": "718",
 8908		Injury: "121",
 8909		Fatality: "1",
 8910		Homicide: "2",
 8911		"Rape and Attempted Rape": "11",
 8912		Robbery: "19",
 8913		"Aggravated Assault": "35",
 8914		"Burglary (Residential)": "55",
 8915		"Burglary (Non-Residential)": "17",
 8916		"Auto Theft": "45",
 8917		"All Thefts": "518",
 8918		"Stolen Bikes": "11",
 8919		"Theft From Vehicles": "152",
 8920		Shoplifting: "190",
 8921		Vandalism: "226",
 8922		Fraud: "161",
 8923		Forgery: "12",
 8924		Arson: "4",
 8925	},
 8926	{
 8927		Date: "Feb-16",
 8928		Population: "281254",
 8929		Felony: "283",
 8930		Misdemeanor: "1489",
 8931		DWI: "90",
 8932		"Traffic Tickets": "4030",
 8933		"Traffic Warnings": "3713",
 8934		"All Reportable": "646",
 8935		"Property Damage": "525",
 8936		Injury: "121",
 8937		Fatality: "0",
 8938		Homicide: "0",
 8939		"Rape and Attempted Rape": "4",
 8940		Robbery: "18",
 8941		"Aggravated Assault": "47",
 8942		"Burglary (Residential)": "72",
 8943		"Burglary (Non-Residential)": "20",
 8944		"Auto Theft": "21",
 8945		"All Thefts": "419",
 8946		"Stolen Bikes": "11",
 8947		"Theft From Vehicles": "131",
 8948		Shoplifting: "146",
 8949		Vandalism: "171",
 8950		Fraud: "166",
 8951		Forgery: "8",
 8952		Arson: "3",
 8953	},
 8954	{
 8955		Date: "Mar-16",
 8956		Population: "281254",
 8957		Felony: "347",
 8958		Misdemeanor: "1563",
 8959		DWI: "98",
 8960		"Traffic Tickets": "3863",
 8961		"Traffic Warnings": "3588",
 8962		"All Reportable": "629",
 8963		"Property Damage": "490",
 8964		Injury: "139",
 8965		Fatality: "0",
 8966		Homicide: "0",
 8967		"Rape and Attempted Rape": "17",
 8968		Robbery: "11",
 8969		"Aggravated Assault": "47",
 8970		"Burglary (Residential)": "78",
 8971		"Burglary (Non-Residential)": "13",
 8972		"Auto Theft": "22",
 8973		"All Thefts": "525",
 8974		"Stolen Bikes": "30",
 8975		"Theft From Vehicles": "170",
 8976		Shoplifting: "177",
 8977		Vandalism: "252",
 8978		Fraud: "186",
 8979		Forgery: "18",
 8980		Arson: "4",
 8981	},
 8982	{
 8983		Date: "Apr-16",
 8984		Population: "281254",
 8985		Felony: "398",
 8986		Misdemeanor: "1482",
 8987		DWI: "73",
 8988		"Traffic Tickets": "3379",
 8989		"Traffic Warnings": "3278",
 8990		"All Reportable": "751",
 8991		"Property Damage": "588",
 8992		Injury: "161",
 8993		Fatality: "2",
 8994		Homicide: "2",
 8995		"Rape and Attempted Rape": "24",
 8996		Robbery: "6",
 8997		"Aggravated Assault": "46",
 8998		"Burglary (Residential)": "105",
 8999		"Burglary (Non-Residential)": "25",
 9000		"Auto Theft": "32",
 9001		"All Thefts": "547",
 9002		"Stolen Bikes": "33",
 9003		"Theft From Vehicles": "148",
 9004		Shoplifting: "190",
 9005		Vandalism: "261",
 9006		Fraud: "166",
 9007		Forgery: "80",
 9008		Arson: "7",
 9009	},
 9010	{
 9011		Date: "May-16",
 9012		Population: "281254",
 9013		Felony: "311",
 9014		Misdemeanor: "1605",
 9015		DWI: "105",
 9016		"Traffic Tickets": "3488",
 9017		"Traffic Warnings": "3580",
 9018		"All Reportable": "821",
 9019		"Property Damage": "629",
 9020		Injury: "192",
 9021		Fatality: "0",
 9022		Homicide: "3",
 9023		"Rape and Attempted Rape": "15",
 9024		Robbery: "21",
 9025		"Aggravated Assault": "57",
 9026		"Burglary (Residential)": "80",
 9027		"Burglary (Non-Residential)": "22",
 9028		"Auto Theft": "23",
 9029		"All Thefts": "654",
 9030		"Stolen Bikes": "39",
 9031		"Theft From Vehicles": "234",
 9032		Shoplifting: "178",
 9033		Vandalism: "281",
 9034		Fraud: "122",
 9035		Forgery: "13",
 9036		Arson: "7",
 9037	},
 9038	{
 9039		Date: "Jun-16",
 9040		Population: "281254",
 9041		Felony: "279",
 9042		Misdemeanor: "1452",
 9043		DWI: "81",
 9044		"Traffic Tickets": "3780",
 9045		"Traffic Warnings": "3609",
 9046		"All Reportable": "732",
 9047		"Property Damage": "558",
 9048		Injury: "174",
 9049		Fatality: "0",
 9050		Homicide: "1",
 9051		"Rape and Attempted Rape": "31",
 9052		Robbery: "15",
 9053		"Aggravated Assault": "42",
 9054		"Burglary (Residential)": "92",
 9055		"Burglary (Non-Residential)": "16",
 9056		"Auto Theft": "28",
 9057		"All Thefts": "641",
 9058		"Stolen Bikes": "55",
 9059		"Theft From Vehicles": "222",
 9060		Shoplifting: "164",
 9061		Vandalism: "250",
 9062		Fraud: "175",
 9063		Forgery: "21",
 9064		Arson: "6",
 9065	},
 9066	{
 9067		Date: "Jul-16",
 9068		Population: "281254",
 9069		Felony: "309",
 9070		Misdemeanor: "1486",
 9071		DWI: "75",
 9072		"Traffic Tickets": "3175",
 9073		"Traffic Warnings": "2813",
 9074		"All Reportable": "677",
 9075		"Property Damage": "513",
 9076		Injury: "164",
 9077		Fatality: "0",
 9078		Homicide: "1",
 9079		"Rape and Attempted Rape": "17",
 9080		Robbery: "15",
 9081		"Aggravated Assault": "70",
 9082		"Burglary (Residential)": "92",
 9083		"Burglary (Non-Residential)": "15",
 9084		"Auto Theft": "27",
 9085		"All Thefts": "622",
 9086		"Stolen Bikes": "58",
 9087		"Theft From Vehicles": "214",
 9088		Shoplifting: "137",
 9089		Vandalism: "277",
 9090		Fraud: "216",
 9091		Forgery: "10",
 9092		Arson: "1",
 9093	},
 9094	{
 9095		Date: "Aug-16",
 9096		Population: "281254",
 9097		Felony: "318",
 9098		Misdemeanor: "1609",
 9099		DWI: "108",
 9100		"Traffic Tickets": "4347",
 9101		"Traffic Warnings": "4041",
 9102		"All Reportable": "763",
 9103		"Property Damage": "607",
 9104		Injury: "155",
 9105		Fatality: "1",
 9106		Homicide: "0",
 9107		"Rape and Attempted Rape": "28",
 9108		Robbery: "14",
 9109		"Aggravated Assault": "59",
 9110		"Burglary (Residential)": "105",
 9111		"Burglary (Non-Residential)": "21",
 9112		"Auto Theft": "18",
 9113		"All Thefts": "626",
 9114		"Stolen Bikes": "51",
 9115		"Theft From Vehicles": "234",
 9116		Shoplifting: "147",
 9117		Vandalism: "283",
 9118		Fraud: "219",
 9119		Forgery: "12",
 9120		Arson: "10",
 9121	},
 9122	{
 9123		Date: "Sep-16",
 9124		Population: "281254",
 9125		Felony: "306",
 9126		Misdemeanor: "1802",
 9127		DWI: "77",
 9128		"Traffic Tickets": "3766",
 9129		"Traffic Warnings": "3223",
 9130		"All Reportable": "843",
 9131		"Property Damage": "653",
 9132		Injury: "190",
 9133		Fatality: "0",
 9134		Homicide: "0",
 9135		"Rape and Attempted Rape": "21",
 9136		Robbery: "21",
 9137		"Aggravated Assault": "51",
 9138		"Burglary (Residential)": "97",
 9139		"Burglary (Non-Residential)": "23",
 9140		"Auto Theft": "31",
 9141		"All Thefts": "639",
 9142		"Stolen Bikes": "39",
 9143		"Theft From Vehicles": "272",
 9144		Shoplifting: "130",
 9145		Vandalism: "262",
 9146		Fraud: "187",
 9147		Forgery: "21",
 9148		Arson: "6",
 9149	},
 9150	{
 9151		Date: "Oct-16",
 9152		Population: "281254",
 9153		Felony: "276",
 9154		Misdemeanor: "1662",
 9155		DWI: "68",
 9156		"Traffic Tickets": "3127",
 9157		"Traffic Warnings": "2387",
 9158		"All Reportable": "773",
 9159		"Property Damage": "600",
 9160		Injury: "173",
 9161		Fatality: "0",
 9162		Homicide: "0",
 9163		"Rape and Attempted Rape": "21",
 9164		Robbery: "9",
 9165		"Aggravated Assault": "47",
 9166		"Burglary (Residential)": "90",
 9167		"Burglary (Non-Residential)": "18",
 9168		"Auto Theft": "34",
 9169		"All Thefts": "756",
 9170		"Stolen Bikes": "37",
 9171		"Theft From Vehicles": "314",
 9172		Shoplifting: "186",
 9173		Vandalism: "269",
 9174		Fraud: "177",
 9175		Forgery: "18",
 9176		Arson: "13",
 9177	},
 9178	{
 9179		Date: "Nov-16",
 9180		Population: "281254",
 9181		Felony: "324",
 9182		Misdemeanor: "1429",
 9183		DWI: "79",
 9184		"Traffic Tickets": "3114",
 9185		"Traffic Warnings": "2468",
 9186		"All Reportable": "726",
 9187		"Property Damage": "552",
 9188		Injury: "173",
 9189		Fatality: "1",
 9190		Homicide: "0",
 9191		"Rape and Attempted Rape": "17",
 9192		Robbery: "17",
 9193		"Aggravated Assault": "44",
 9194		"Burglary (Residential)": "93",
 9195		"Burglary (Non-Residential)": "21",
 9196		"Auto Theft": "30",
 9197		"All Thefts": "652",
 9198		"Stolen Bikes": "38",
 9199		"Theft From Vehicles": "245",
 9200		Shoplifting: "162",
 9201		Vandalism: "319",
 9202		Fraud: "142",
 9203		Forgery: "18",
 9204		Arson: "7",
 9205	},
 9206	{
 9207		Date: "Dec-16",
 9208		Population: "281254",
 9209		Felony: "293",
 9210		Misdemeanor: "1239",
 9211		DWI: "99",
 9212		"Traffic Tickets": "2910",
 9213		"Traffic Warnings": "2595",
 9214		"All Reportable": "771",
 9215		"Property Damage": "624",
 9216		Injury: "146",
 9217		Fatality: "1",
 9218		Homicide: "2",
 9219		"Rape and Attempted Rape": "17",
 9220		Robbery: "25",
 9221		"Aggravated Assault": "42",
 9222		"Burglary (Residential)": "47",
 9223		"Burglary (Non-Residential)": "41",
 9224		"Auto Theft": "19",
 9225		"All Thefts": "471",
 9226		"Stolen Bikes": "11",
 9227		"Theft From Vehicles": "102",
 9228		Shoplifting: "180",
 9229		Vandalism: "172",
 9230		Fraud: "113",
 9231		Forgery: "45",
 9232		Arson: "7",
 9233	},
 9234	{
 9235		Date: "Jan-17",
 9236		Population: "284506",
 9237		Felony: "331",
 9238		Misdemeanor: "1336",
 9239		DWI: "79",
 9240		"Traffic Tickets": "3374",
 9241		"Traffic Warnings": "3194",
 9242		"All Reportable": "803",
 9243		"Property Damage": "667",
 9244		Injury: "135",
 9245		Fatality: "1",
 9246		Homicide: "0",
 9247		"Rape and Attempted Rape": "17",
 9248		Robbery: "21",
 9249		"Aggravated Assault": "49",
 9250		"Burglary (Residential)": "67",
 9251		"Burglary (Non-Residential)": "21",
 9252		"Auto Theft": "23",
 9253		"All Thefts": "518",
 9254		"Stolen Bikes": "12",
 9255		"Theft From Vehicles": "162",
 9256		Shoplifting: "175",
 9257		Vandalism: "193",
 9258		Fraud: "124",
 9259		Forgery: "19",
 9260		Arson: "8",
 9261	},
 9262	{
 9263		Date: "Feb-17",
 9264		Population: "284506",
 9265		Felony: "277",
 9266		Misdemeanor: "1427",
 9267		DWI: "78",
 9268		"Traffic Tickets": "3675",
 9269		"Traffic Warnings": "4017",
 9270		"All Reportable": "579",
 9271		"Property Damage": "469",
 9272		Injury: "110",
 9273		Fatality: "0",
 9274		Homicide: "0",
 9275		"Rape and Attempted Rape": "21",
 9276		Robbery: "19",
 9277		"Aggravated Assault": "39",
 9278		"Burglary (Residential)": "58",
 9279		"Burglary (Non-Residential)": "16",
 9280		"Auto Theft": "21",
 9281		"All Thefts": "426",
 9282		"Stolen Bikes": "14",
 9283		"Theft From Vehicles": "102",
 9284		Shoplifting: "140",
 9285		Vandalism: "191",
 9286		Fraud: "150",
 9287		Forgery: "16",
 9288		Arson: "1",
 9289	},
 9290	{
 9291		Date: "Mar-17",
 9292		Population: "284506",
 9293		Felony: "317",
 9294		Misdemeanor: "1500",
 9295		DWI: "118",
 9296		"Traffic Tickets": "3874",
 9297		"Traffic Warnings": "4367",
 9298		"All Reportable": "685",
 9299		"Property Damage": "550",
 9300		Injury: "135",
 9301		Fatality: "0",
 9302		Homicide: "0",
 9303		"Rape and Attempted Rape": "20",
 9304		Robbery: "10",
 9305		"Aggravated Assault": "33",
 9306		"Burglary (Residential)": "50",
 9307		"Burglary (Non-Residential)": "22",
 9308		"Auto Theft": "22",
 9309		"All Thefts": "451",
 9310		"Stolen Bikes": "17",
 9311		"Theft From Vehicles": "112",
 9312		Shoplifting: "122",
 9313		Vandalism: "207",
 9314		Fraud: "149",
 9315		Forgery: "14",
 9316		Arson: "6",
 9317	},
 9318	{
 9319		Date: "Apr-17",
 9320		Population: "284506",
 9321		Felony: "333",
 9322		Misdemeanor: "1559",
 9323		DWI: "86",
 9324		"Traffic Tickets": "3461",
 9325		"Traffic Warnings": "4305",
 9326		"All Reportable": "686",
 9327		"Property Damage": "520",
 9328		Injury: "165",
 9329		Fatality: "1",
 9330		Homicide: "0",
 9331		"Rape and Attempted Rape": "21",
 9332		Robbery: "13",
 9333		"Aggravated Assault": "55",
 9334		"Burglary (Residential)": "90",
 9335		"Burglary (Non-Residential)": "25",
 9336		"Auto Theft": "19",
 9337		"All Thefts": "496",
 9338		"Stolen Bikes": "35",
 9339		"Theft From Vehicles": "128",
 9340		Shoplifting: "154",
 9341		Vandalism: "234",
 9342		Fraud: "173",
 9343		Forgery: "11",
 9344		Arson: "2",
 9345	},
 9346	{
 9347		Date: "May-17",
 9348		Population: "284506",
 9349		Felony: "318",
 9350		Misdemeanor: "1594",
 9351		DWI: "80",
 9352		"Traffic Tickets": "3702",
 9353		"Traffic Warnings": "4005",
 9354		"All Reportable": "778",
 9355		"Property Damage": "599",
 9356		Injury: "179",
 9357		Fatality: "0",
 9358		Homicide: "0",
 9359		"Rape and Attempted Rape": "16",
 9360		Robbery: "13",
 9361		"Aggravated Assault": "63",
 9362		"Burglary (Residential)": "75",
 9363		"Burglary (Non-Residential)": "24",
 9364		"Auto Theft": "23",
 9365		"All Thefts": "534",
 9366		"Stolen Bikes": "27",
 9367		"Theft From Vehicles": "176",
 9368		Shoplifting: "147",
 9369		Vandalism: "254",
 9370		Fraud: "165",
 9371		Forgery: "8",
 9372		Arson: "7",
 9373	},
 9374	{
 9375		Date: "Jun-17",
 9376		Population: "284506",
 9377		Felony: "310",
 9378		Misdemeanor: "1514",
 9379		DWI: "90",
 9380		"Traffic Tickets": "3568",
 9381		"Traffic Warnings": "3780",
 9382		"All Reportable": "757",
 9383		"Property Damage": "587",
 9384		Injury: "170",
 9385		Fatality: "0",
 9386		Homicide: "0",
 9387		"Rape and Attempted Rape": "18",
 9388		Robbery: "14",
 9389		"Aggravated Assault": "47",
 9390		"Burglary (Residential)": "70",
 9391		"Burglary (Non-Residential)": "15",
 9392		"Auto Theft": "19",
 9393		"All Thefts": "603",
 9394		"Stolen Bikes": "55",
 9395		"Theft From Vehicles": "225",
 9396		Shoplifting: "149",
 9397		Vandalism: "263",
 9398		Fraud: "160",
 9399		Forgery: "9",
 9400		Arson: "4",
 9401	},
 9402	{
 9403		Date: "Jul-17",
 9404		Population: "284506",
 9405		Felony: "368",
 9406		Misdemeanor: "1582",
 9407		DWI: "77",
 9408		"Traffic Tickets": "3416",
 9409		"Traffic Warnings": "3405",
 9410		"All Reportable": "620",
 9411		"Property Damage": "488",
 9412		Injury: "131",
 9413		Fatality: "1",
 9414		Homicide: "0",
 9415		"Rape and Attempted Rape": "21",
 9416		Robbery: "17",
 9417		"Aggravated Assault": "60",
 9418		"Burglary (Residential)": "120",
 9419		"Burglary (Non-Residential)": "18",
 9420		"Auto Theft": "30",
 9421		"All Thefts": "666",
 9422		"Stolen Bikes": "61",
 9423		"Theft From Vehicles": "272",
 9424		Shoplifting: "153",
 9425		Vandalism: "258",
 9426		Fraud: "181",
 9427		Forgery: "44",
 9428		Arson: "5",
 9429	},
 9430	{
 9431		Date: "Aug-17",
 9432		Population: "284506",
 9433		Felony: "297",
 9434		Misdemeanor: "1630",
 9435		DWI: "87",
 9436		"Traffic Tickets": "4180",
 9437		"Traffic Warnings": "3629",
 9438		"All Reportable": "793",
 9439		"Property Damage": "603",
 9440		Injury: "189",
 9441		Fatality: "1",
 9442		Homicide: "0",
 9443		"Rape and Attempted Rape": "33",
 9444		Robbery: "13",
 9445		"Aggravated Assault": "61",
 9446		"Burglary (Residential)": "85",
 9447		"Burglary (Non-Residential)": "17",
 9448		"Auto Theft": "31",
 9449		"All Thefts": "682",
 9450		"Stolen Bikes": "79",
 9451		"Theft From Vehicles": "226",
 9452		Shoplifting: "153",
 9453		Vandalism: "258",
 9454		Fraud: "178",
 9455		Forgery: "12",
 9456		Arson: "5",
 9457	},
 9458	{
 9459		Date: "Sep-17",
 9460		Population: "284506",
 9461		Felony: "339",
 9462		Misdemeanor: "1613",
 9463		DWI: "75",
 9464		"Traffic Tickets": "3412",
 9465		"Traffic Warnings": "3357",
 9466		"All Reportable": "805",
 9467		"Property Damage": "605",
 9468		Injury: "199",
 9469		Fatality: "1",
 9470		Homicide: "0",
 9471		"Rape and Attempted Rape": "17",
 9472		Robbery: "16",
 9473		"Aggravated Assault": "56",
 9474		"Burglary (Residential)": "107",
 9475		"Burglary (Non-Residential)": "23",
 9476		"Auto Theft": "47",
 9477		"All Thefts": "775",
 9478		"Stolen Bikes": "82",
 9479		"Theft From Vehicles": "285",
 9480		Shoplifting: "178",
 9481		Vandalism: "271",
 9482		Fraud: "181",
 9483		Forgery: "15",
 9484		Arson: "7",
 9485	},
 9486	{
 9487		Date: "Oct-17",
 9488		Population: "284506",
 9489		Felony: "290",
 9490		Misdemeanor: "1580",
 9491		DWI: "70",
 9492		"Traffic Tickets": "3076",
 9493		"Traffic Warnings": "2699",
 9494		"All Reportable": "903",
 9495		"Property Damage": "694",
 9496		Injury: "206",
 9497		Fatality: "1",
 9498		Homicide: "0",
 9499		"Rape and Attempted Rape": "30",
 9500		Robbery: "20",
 9501		"Aggravated Assault": "49",
 9502		"Burglary (Residential)": "100",
 9503		"Burglary (Non-Residential)": "48",
 9504		"Auto Theft": "48",
 9505		"All Thefts": "725",
 9506		"Stolen Bikes": "63",
 9507		"Theft From Vehicles": "274",
 9508		Shoplifting: "184",
 9509		Vandalism: "337",
 9510		Fraud: "168",
 9511		Forgery: "12",
 9512		Arson: "5",
 9513	},
 9514	{
 9515		Date: "Nov-17",
 9516		Population: "284506",
 9517		Felony: "235",
 9518		Misdemeanor: "1497",
 9519		DWI: "78",
 9520		"Traffic Tickets": "2931",
 9521		"Traffic Warnings": "2476",
 9522		"All Reportable": "752",
 9523		"Property Damage": "597",
 9524		Injury: "154",
 9525		Fatality: "1",
 9526		Homicide: "0",
 9527		"Rape and Attempted Rape": "24",
 9528		Robbery: "15",
 9529		"Aggravated Assault": "73",
 9530		"Burglary (Residential)": "67",
 9531		"Burglary (Non-Residential)": "21",
 9532		"Auto Theft": "41",
 9533		"All Thefts": "628",
 9534		"Stolen Bikes": "37",
 9535		"Theft From Vehicles": "205",
 9536		Shoplifting: "190",
 9537		Vandalism: "301",
 9538		Fraud: "148",
 9539		Forgery: "22",
 9540		Arson: "4",
 9541	},
 9542	{
 9543		Date: "Dec-17",
 9544		Population: "284506",
 9545		Felony: "292",
 9546		Misdemeanor: "1269",
 9547		DWI: "85",
 9548		"Traffic Tickets": "2545",
 9549		"Traffic Warnings": "2577",
 9550		"All Reportable": "836",
 9551		"Property Damage": "694",
 9552		Injury: "142",
 9553		Fatality: "0",
 9554		Homicide: "0",
 9555		"Rape and Attempted Rape": "22",
 9556		Robbery: "20",
 9557		"Aggravated Assault": "32",
 9558		"Burglary (Residential)": "97",
 9559		"Burglary (Non-Residential)": "17",
 9560		"Auto Theft": "33",
 9561		"All Thefts": "705",
 9562		"Stolen Bikes": "24",
 9563		"Theft From Vehicles": "215",
 9564		Shoplifting: "181",
 9565		Vandalism: "240",
 9566		Fraud: "143",
 9567		Forgery: "12",
 9568		Arson: "2",
 9569	},
 9570	{
 9571		Date: "Jan-18",
 9572		Population: "287401",
 9573		Felony: "290",
 9574		Misdemeanor: "1352",
 9575		DWI: "97",
 9576		"Traffic Tickets": "3070",
 9577		"Traffic Warnings": "3456",
 9578		"All Reportable": "829",
 9579		"Property Damage": "658",
 9580		Injury: "170",
 9581		Fatality: "1",
 9582		Homicide: "1",
 9583		"Rape and Attempted Rape": "30",
 9584		Robbery: "8",
 9585		"Aggravated Assault": "44",
 9586		"Burglary (Residential)": "81",
 9587		"Burglary (Non-Residential)": "17",
 9588		"Auto Theft": "26",
 9589		"All Thefts": "494",
 9590		"Stolen Bikes": "8",
 9591		"Theft From Vehicles": "174",
 9592		Shoplifting: "171",
 9593		Vandalism: "194",
 9594		Fraud: "123",
 9595		Forgery: "6",
 9596		Arson: "2",
 9597	},
 9598	{
 9599		Date: "Feb-18",
 9600		Population: "287401",
 9601		Felony: "292",
 9602		Misdemeanor: "1266",
 9603		DWI: "88",
 9604		"Traffic Tickets": "2839",
 9605		"Traffic Warnings": "3195",
 9606		"All Reportable": "910",
 9607		"Property Damage": "746",
 9608		Injury: "163",
 9609		Fatality: "1",
 9610		Homicide: "0",
 9611		"Rape and Attempted Rape": "23",
 9612		Robbery: "7",
 9613		"Aggravated Assault": "42",
 9614		"Burglary (Residential)": "74",
 9615		"Burglary (Non-Residential)": "14",
 9616		"Auto Theft": "24",
 9617		"All Thefts": "394",
 9618		"Stolen Bikes": "17",
 9619		"Theft From Vehicles": "116",
 9620		Shoplifting: "123",
 9621		Vandalism: "215",
 9622		Fraud: "139",
 9623		Forgery: "6",
 9624		Arson: "4",
 9625	},
 9626	{
 9627		Date: "Mar-18",
 9628		Population: "287401",
 9629		Felony: "252",
 9630		Misdemeanor: "1407",
 9631		DWI: "105",
 9632		"Traffic Tickets": "3040",
 9633		"Traffic Warnings": "3590",
 9634		"All Reportable": "668",
 9635		"Property Damage": "547",
 9636		Injury: "119",
 9637		Fatality: "2",
 9638		Homicide: "1",
 9639		"Rape and Attempted Rape": "20",
 9640		Robbery: "15",
 9641		"Aggravated Assault": "46",
 9642		"Burglary (Residential)": "87",
 9643		"Burglary (Non-Residential)": "15",
 9644		"Auto Theft": "26",
 9645		"All Thefts": "507",
 9646		"Stolen Bikes": "30",
 9647		"Theft From Vehicles": "165",
 9648		Shoplifting: "162",
 9649		Vandalism: "227",
 9650		Fraud: "150",
 9651		Forgery: "5",
 9652		Arson: "3",
 9653	},
 9654	{
 9655		Date: "Apr-18",
 9656		Population: "287401",
 9657		Felony: "327",
 9658		Misdemeanor: "1410",
 9659		DWI: "67",
 9660		"Traffic Tickets": "3043",
 9661		"Traffic Warnings": "3705",
 9662		"All Reportable": "662",
 9663		"Property Damage": "502",
 9664		Injury: "160",
 9665		Fatality: "0",
 9666		Homicide: "0",
 9667		"Rape and Attempted Rape": "20",
 9668		Robbery: "12",
 9669		"Aggravated Assault": "42",
 9670		"Burglary (Residential)": "83",
 9671		"Burglary (Non-Residential)": "18",
 9672		"Auto Theft": "22",
 9673		"All Thefts": "486",
 9674		"Stolen Bikes": "34",
 9675		"Theft From Vehicles": "126",
 9676		Shoplifting: "139",
 9677		Vandalism: "202",
 9678		Fraud: "142",
 9679		Forgery: "7",
 9680		Arson: "2",
 9681	},
 9682	{
 9683		Date: "May-18",
 9684		Population: "287401",
 9685		Felony: "294",
 9686		Misdemeanor: "1479",
 9687		DWI: "102",
 9688		"Traffic Tickets": "3531",
 9689		"Traffic Warnings": "4199",
 9690		"All Reportable": "713",
 9691		"Property Damage": "533",
 9692		Injury: "180",
 9693		Fatality: "0",
 9694		Homicide: "0",
 9695		"Rape and Attempted Rape": "25",
 9696		Robbery: "12",
 9697		"Aggravated Assault": "51",
 9698		"Burglary (Residential)": "74",
 9699		"Burglary (Non-Residential)": "39",
 9700		"Auto Theft": "29",
 9701		"All Thefts": "637",
 9702		"Stolen Bikes": "54",
 9703		"Theft From Vehicles": "233",
 9704		Shoplifting: "153",
 9705		Vandalism: "250",
 9706		Fraud: "259",
 9707		Forgery: "21",
 9708		Arson: "3",
 9709	},
 9710	{
 9711		Date: "Jun-18",
 9712		Population: "287401",
 9713		Felony: "375",
 9714		Misdemeanor: "1394",
 9715		DWI: "65",
 9716		"Traffic Tickets": "3752",
 9717		"Traffic Warnings": "4985",
 9718		"All Reportable": "625",
 9719		"Property Damage": "491",
 9720		Injury: "134",
 9721		Fatality: "0",
 9722		Homicide: "0",
 9723		"Rape and Attempted Rape": "25",
 9724		Robbery: "12",
 9725		"Aggravated Assault": "73",
 9726		"Burglary (Residential)": "72",
 9727		"Burglary (Non-Residential)": "16",
 9728		"Auto Theft": "37",
 9729		"All Thefts": "579",
 9730		"Stolen Bikes": "57",
 9731		"Theft From Vehicles": "150",
 9732		Shoplifting: "184",
 9733		Vandalism: "221",
 9734		Fraud: "137",
 9735		Forgery: "17",
 9736		Arson: "5",
 9737	},
 9738	{
 9739		Date: "Jul-18",
 9740		Population: "287401",
 9741		Felony: "368",
 9742		Misdemeanor: "1534",
 9743		DWI: "73",
 9744		"Traffic Tickets": "3392",
 9745		"Traffic Warnings": "4440",
 9746		"All Reportable": "655",
 9747		"Property Damage": "500",
 9748		Injury: "155",
 9749		Fatality: "0",
 9750		Homicide: "1",
 9751		"Rape and Attempted Rape": "29",
 9752		Robbery: "17",
 9753		"Aggravated Assault": "52",
 9754		"Burglary (Residential)": "94",
 9755		"Burglary (Non-Residential)": "23",
 9756		"Auto Theft": "49",
 9757		"All Thefts": "654",
 9758		"Stolen Bikes": "60",
 9759		"Theft From Vehicles": "206",
 9760		Shoplifting: "178",
 9761		Vandalism: "264",
 9762		Fraud: "181",
 9763		Forgery: "7",
 9764		Arson: "4",
 9765	},
 9766	{
 9767		Date: "Aug-18",
 9768		Population: "287401",
 9769		Felony: "383",
 9770		Misdemeanor: "1554",
 9771		DWI: "102",
 9772		"Traffic Tickets": "3824",
 9773		"Traffic Warnings": "4448",
 9774		"All Reportable": "828",
 9775		"Property Damage": "636",
 9776		Injury: "192",
 9777		Fatality: "0",
 9778		Homicide: "0",
 9779		"Rape and Attempted Rape": "24",
 9780		Robbery: "21",
 9781		"Aggravated Assault": "70",
 9782		"Burglary (Residential)": "77",
 9783		"Burglary (Non-Residential)": "19",
 9784		"Auto Theft": "24",
 9785		"All Thefts": "642",
 9786		"Stolen Bikes": "59",
 9787		"Theft From Vehicles": "199",
 9788		Shoplifting: "158",
 9789		Vandalism: "221",
 9790		Fraud: "183",
 9791		Forgery: "42",
 9792		Arson: "3",
 9793	},
 9794	{
 9795		Date: "Sep-18",
 9796		Population: "287401",
 9797		Felony: "347",
 9798		Misdemeanor: "1661",
 9799		DWI: "102",
 9800		"Traffic Tickets": "3268",
 9801		"Traffic Warnings": "3160",
 9802		"All Reportable": "856",
 9803		"Property Damage": "662",
 9804		Injury: "192",
 9805		Fatality: "2",
 9806		Homicide: "0",
 9807		"Rape and Attempted Rape": "22",
 9808		Robbery: "23",
 9809		"Aggravated Assault": "51",
 9810		"Burglary (Residential)": "77",
 9811		"Burglary (Non-Residential)": "22",
 9812		"Auto Theft": "47",
 9813		"All Thefts": "571",
 9814		"Stolen Bikes": "67",
 9815		"Theft From Vehicles": "168",
 9816		Shoplifting: "160",
 9817		Vandalism: "251",
 9818		Fraud: "151",
 9819		Forgery: "36",
 9820		Arson: "4",
 9821	},
 9822	{
 9823		Date: "Oct-18",
 9824		Population: "287401",
 9825		Felony: "341",
 9826		Misdemeanor: "1664",
 9827		DWI: "79",
 9828		"Traffic Tickets": "3267",
 9829		"Traffic Warnings": "3245",
 9830		"All Reportable": "877",
 9831		"Property Damage": "693",
 9832		Injury: "181",
 9833		Fatality: "1",
 9834		Homicide: "2",
 9835		"Rape and Attempted Rape": "21",
 9836		Robbery: "15",
 9837		"Aggravated Assault": "47",
 9838		"Burglary (Residential)": "93",
 9839		"Burglary (Non-Residential)": "24",
 9840		"Auto Theft": "56",
 9841		"All Thefts": "667",
 9842		"Stolen Bikes": "43",
 9843		"Theft From Vehicles": "210",
 9844		Shoplifting: "187",
 9845		Vandalism: "227",
 9846		Fraud: "146",
 9847		Forgery: "21",
 9848		Arson: "8",
 9849	},
 9850	{
 9851		Date: "Nov-18",
 9852		Population: "287401",
 9853		Felony: "342",
 9854		Misdemeanor: "1431",
 9855		DWI: "92",
 9856		"Traffic Tickets": "3133",
 9857		"Traffic Warnings": "3596",
 9858		"All Reportable": "830",
 9859		"Property Damage": "659",
 9860		Injury: "169",
 9861		Fatality: "1",
 9862		Homicide: "0",
 9863		"Rape and Attempted Rape": "24",
 9864		Robbery: "11",
 9865		"Aggravated Assault": "35",
 9866		"Burglary (Residential)": "76",
 9867		"Burglary (Non-Residential)": "17",
 9868		"Auto Theft": "30",
 9869		"All Thefts": "520",
 9870		"Stolen Bikes": "19",
 9871		"Theft From Vehicles": "118",
 9872		Shoplifting: "196",
 9873		Vandalism: "190",
 9874		Fraud: "185",
 9875		Forgery: "16",
 9876		Arson: "7",
 9877	},
 9878	{
 9879		Date: "Dec-18",
 9880		Population: "287401",
 9881		Felony: "334",
 9882		Misdemeanor: "1215",
 9883		DWI: "106",
 9884		"Traffic Tickets": "2809",
 9885		"Traffic Warnings": "2962",
 9886		"All Reportable": "759",
 9887		"Property Damage": "632",
 9888		Injury: "127",
 9889		Fatality: "0",
 9890		Homicide: "1",
 9891		"Rape and Attempted Rape": "21",
 9892		Robbery: "7",
 9893		"Aggravated Assault": "37",
 9894		"Burglary (Residential)": "45",
 9895		"Burglary (Non-Residential)": "27",
 9896		"Auto Theft": "38",
 9897		"All Thefts": "522",
 9898		"Stolen Bikes": "16",
 9899		"Theft From Vehicles": "179",
 9900		Shoplifting: "184",
 9901		Vandalism: "184",
 9902		Fraud: "162",
 9903		Forgery: "30",
 9904		Arson: "2",
 9905	},
 9906	{
 9907		Date: "Jan-19",
 9908		Population: "287401",
 9909		Felony: "344",
 9910		Misdemeanor: "1414",
 9911		DWI: "76",
 9912		"Traffic Tickets": "3360",
 9913		"Traffic Warnings": "3770",
 9914		"All Reportable": "750",
 9915		"Property Damage": "621",
 9916		Injury: "128",
 9917		Fatality: "1",
 9918		Homicide: "0",
 9919		"Rape and Attempted Rape": "28",
 9920		Robbery: "11",
 9921		"Aggravated Assault": "43",
 9922		"Burglary (Residential)": "51",
 9923		"Burglary (Non-Residential)": "26",
 9924		"Auto Theft": "43",
 9925		"All Thefts": "467",
 9926		"Stolen Bikes": "17",
 9927		"Theft From Vehicles": "140",
 9928		Shoplifting: "172",
 9929		Vandalism: "137",
 9930		Fraud: "150",
 9931		Forgery: "21",
 9932		Arson: "0",
 9933	},
 9934	{
 9935		Date: "Feb-19",
 9936		Population: "287401",
 9937		Felony: "283",
 9938		Misdemeanor: "1052",
 9939		DWI: "57",
 9940		"Traffic Tickets": "2653",
 9941		"Traffic Warnings": "2858",
 9942		"All Reportable": "949",
 9943		"Property Damage": "799",
 9944		Injury: "149",
 9945		Fatality: "1",
 9946		Homicide: "0",
 9947		"Rape and Attempted Rape": "21",
 9948		Robbery: "14",
 9949		"Aggravated Assault": "46",
 9950		"Burglary (Residential)": "46",
 9951		"Burglary (Non-Residential)": "20",
 9952		"Auto Theft": "37",
 9953		"All Thefts": "433",
 9954		"Stolen Bikes": "11",
 9955		"Theft From Vehicles": "127",
 9956		Shoplifting: "137",
 9957		Vandalism: "124",
 9958		Fraud: "169",
 9959		Forgery: "22",
 9960		Arson: "0",
 9961	},
 9962	{
 9963		Date: "Mar-19",
 9964		Population: "287401",
 9965		Felony: "354",
 9966		Misdemeanor: "1389",
 9967		DWI: "103",
 9968		"Traffic Tickets": "3075",
 9969		"Traffic Warnings": "3779",
 9970		"All Reportable": "725",
 9971		"Property Damage": "610",
 9972		Injury: "113",
 9973		Fatality: "2",
 9974		Homicide: "0",
 9975		"Rape and Attempted Rape": "33",
 9976		Robbery: "17",
 9977		"Aggravated Assault": "34",
 9978		"Burglary (Residential)": "55",
 9979		"Burglary (Non-Residential)": "12",
 9980		"Auto Theft": "32",
 9981		"All Thefts": "434",
 9982		"Stolen Bikes": "16",
 9983		"Theft From Vehicles": "130",
 9984		Shoplifting: "143",
 9985		Vandalism: "165",
 9986		Fraud: "192",
 9987		Forgery: "9",
 9988		Arson: "6",
 9989	},
 9990	{
 9991		Date: "Apr-19",
 9992		Population: "287401",
 9993		Felony: "380",
 9994		Misdemeanor: "1331",
 9995		DWI: "59",
 9996		"Traffic Tickets": "2278",
 9997		"Traffic Warnings": "2958",
 9998		"All Reportable": "617",
 9999		"Property Damage": "481",
10000		Injury: "133",
10001		Fatality: "3",
10002		Homicide: "0",
10003		"Rape and Attempted Rape": "21",
10004		Robbery: "7",
10005		"Aggravated Assault": "59",
10006		"Burglary (Residential)": "82",
10007		"Burglary (Non-Residential)": "16",
10008		"Auto Theft": "30",
10009		"All Thefts": "571",
10010		"Stolen Bikes": "40",
10011		"Theft From Vehicles": "189",
10012		Shoplifting: "152",
10013		Vandalism: "247",
10014		Fraud: "194",
10015		Forgery: "10",
10016		Arson: "9",
10017	},
10018	{
10019		Date: "May-19",
10020		Population: "287401",
10021		Felony: "387",
10022		Misdemeanor: "1266",
10023		DWI: "68",
10024		"Traffic Tickets": "3424",
10025		"Traffic Warnings": "3657",
10026		"All Reportable": "690",
10027		"Property Damage": "541",
10028		Injury: "148",
10029		Fatality: "1",
10030		Homicide: "2",
10031		"Rape and Attempted Rape": "22",
10032		Robbery: "11",
10033		"Aggravated Assault": "53",
10034		"Burglary (Residential)": "66",
10035		"Burglary (Non-Residential)": "24",
10036		"Auto Theft": "46",
10037		"All Thefts": "598",
10038		"Stolen Bikes": "27",
10039		"Theft From Vehicles": "209",
10040		Shoplifting: "162",
10041		Vandalism: "249",
10042		Fraud: "182",
10043		Forgery: "20",
10044		Arson: "5",
10045	},
10046	{
10047		Date: "Jun-19",
10048		Population: "287401",
10049		Felony: "283",
10050		Misdemeanor: "1171",
10051		DWI: "71",
10052		"Traffic Tickets": "2742",
10053		"Traffic Warnings": "3375",
10054		"All Reportable": "630",
10055		"Property Damage": "487",
10056		Injury: "141",
10057		Fatality: "2",
10058		Homicide: "0",
10059		"Rape and Attempted Rape": "31",
10060		Robbery: "12",
10061		"Aggravated Assault": "45",
10062		"Burglary (Residential)": "60",
10063		"Burglary (Non-Residential)": "20",
10064		"Auto Theft": "43",
10065		"All Thefts": "579",
10066		"Stolen Bikes": "55",
10067		"Theft From Vehicles": "212",
10068		Shoplifting: "145",
10069		Vandalism: "308",
10070		Fraud: "174",
10071		Forgery: "6",
10072		Arson: "9",
10073	},
10074	{
10075		Date: "Jul-19",
10076		Population: "287401",
10077		Felony: "263",
10078		Misdemeanor: "1211",
10079		DWI: "60",
10080		"Traffic Tickets": "2739",
10081		"Traffic Warnings": "3102",
10082		"All Reportable": "643",
10083		"Property Damage": "498",
10084		Injury: "143",
10085		Fatality: "2",
10086		Homicide: "2",
10087		"Rape and Attempted Rape": "39",
10088		Robbery: "19",
10089		"Aggravated Assault": "70",
10090		"Burglary (Residential)": "65",
10091		"Burglary (Non-Residential)": "21",
10092		"Auto Theft": "36",
10093		"All Thefts": "687",
10094		"Stolen Bikes": "51",
10095		"Theft From Vehicles": "319",
10096		Shoplifting: "136",
10097		Vandalism: "254",
10098		Fraud: "204",
10099		Forgery: "21",
10100		Arson: "9",
10101	},
10102	{
10103		Date: "Aug-19",
10104		Population: "287401",
10105		Felony: "308",
10106		Misdemeanor: "1308",
10107		DWI: "82",
10108		"Traffic Tickets": "3177",
10109		"Traffic Warnings": "3365",
10110		"All Reportable": "755",
10111		"Property Damage": "571",
10112		Injury: "183",
10113		Fatality: "1",
10114		Homicide: "0",
10115		"Rape and Attempted Rape": "37",
10116		Robbery: "15",
10117		"Aggravated Assault": "66",
10118		"Burglary (Residential)": "61",
10119		"Burglary (Non-Residential)": "32",
10120		"Auto Theft": "24",
10121		"All Thefts": "668",
10122		"Stolen Bikes": "63",
10123		"Theft From Vehicles": "256",
10124		Shoplifting: "141",
10125		Vandalism: "306",
10126		Fraud: "188",
10127		Forgery: "22",
10128		Arson: "3",
10129	},
10130	{
10131		Date: "Sep-19",
10132		Population: "287401",
10133		Felony: "309",
10134		Misdemeanor: "1327",
10135		DWI: "63",
10136		"Traffic Tickets": "2303",
10137		"Traffic Warnings": "2089",
10138		"All Reportable": "765",
10139		"Property Damage": "602",
10140		Injury: "163",
10141		Fatality: "0",
10142		Homicide: "1",
10143		"Rape and Attempted Rape": "28",
10144		Robbery: "12",
10145		"Aggravated Assault": "59",
10146		"Burglary (Residential)": "72",
10147		"Burglary (Non-Residential)": "23",
10148		"Auto Theft": "41",
10149		"All Thefts": "565",
10150		"Stolen Bikes": "42",
10151		"Theft From Vehicles": "224",
10152		Shoplifting: "143",
10153		Vandalism: "244",
10154		Fraud: "158",
10155		Forgery: "46",
10156		Arson: "3",
10157	},
10158	{
10159		Date: "Oct-19",
10160		Population: "287401",
10161		Felony: "287",
10162		Misdemeanor: "1270",
10163		DWI: "59",
10164		"Traffic Tickets": "2601",
10165		"Traffic Warnings": "2388",
10166		"All Reportable": "748",
10167		"Property Damage": "582",
10168		Injury: "164",
10169		Fatality: "2",
10170		Homicide: "0",
10171		"Rape and Attempted Rape": "24",
10172		Robbery: "21",
10173		"Aggravated Assault": "44",
10174		"Burglary (Residential)": "74",
10175		"Burglary (Non-Residential)": "15",
10176		"Auto Theft": "29",
10177		"All Thefts": "557",
10178		"Stolen Bikes": "32",
10179		"Theft From Vehicles": "146",
10180		Shoplifting: "172",
10181		Vandalism: "198",
10182		Fraud: "178",
10183		Forgery: "15",
10184		Arson: "6",
10185	},
10186	{
10187		Date: "Nov-19",
10188		Population: "287401",
10189		Felony: "291",
10190		Misdemeanor: "1225",
10191		DWI: "80",
10192		"Traffic Tickets": "2970",
10193		"Traffic Warnings": "2590",
10194		"All Reportable": "663",
10195		"Property Damage": "513",
10196		Injury: "148",
10197		Fatality: "2",
10198		Homicide: "0",
10199		"Rape and Attempted Rape": "20",
10200		Robbery: "15",
10201		"Aggravated Assault": "59",
10202		"Burglary (Residential)": "40",
10203		"Burglary (Non-Residential)": "48",
10204		"Auto Theft": "43",
10205		"All Thefts": "451",
10206		"Stolen Bikes": "15",
10207		"Theft From Vehicles": "132",
10208		Shoplifting: "132",
10209		Vandalism: "192",
10210		Fraud: "174",
10211		Forgery: "54",
10212		Arson: "1",
10213	},
10214	{
10215		Date: "Dec-19",
10216		Population: "287401",
10217		Felony: "287",
10218		Misdemeanor: "1122",
10219		DWI: "76",
10220		"Traffic Tickets": "2725",
10221		"Traffic Warnings": "2664",
10222		"All Reportable": "734",
10223		"Property Damage": "590",
10224		Injury: "144",
10225		Fatality: "0",
10226		Homicide: "0",
10227		"Rape and Attempted Rape": "20",
10228		Robbery: "9",
10229		"Aggravated Assault": "44",
10230		"Burglary (Residential)": "42",
10231		"Burglary (Non-Residential)": "30",
10232		"Auto Theft": "28",
10233		"All Thefts": "535",
10234		"Stolen Bikes": "9",
10235		"Theft From Vehicles": "198",
10236		Shoplifting: "144",
10237		Vandalism: "179",
10238		Fraud: "158",
10239		Forgery: "24",
10240		Arson: "3",
10241	},
10242	{
10243		Date: "Jan-20",
10244		Population: "289548",
10245		Felony: "312",
10246		Misdemeanor: "1156",
10247		DWI: "53",
10248		"Traffic Tickets": "3114",
10249		"Traffic Warnings": "3467",
10250		"All Reportable": "837",
10251		"Property Damage": "699",
10252		Injury: "138",
10253		Fatality: "0",
10254		Homicide: "-2",
10255		"Rape and Attempted Rape": "29",
10256		Robbery: "17",
10257		"Aggravated Assault": "60",
10258		"Burglary (Residential)": "59",
10259		"Burglary (Non-Residential)": "18",
10260		"Auto Theft": "62",
10261		"All Thefts": "444",
10262		"Stolen Bikes": "7",
10263		"Theft From Vehicles": "144",
10264		Shoplifting: "134",
10265		Vandalism: "137",
10266		Fraud: "173",
10267		Forgery: "17",
10268		Arson: "2",
10269	},
10270	{
10271		Date: "Feb-20",
10272		Population: "289548",
10273		Felony: "307",
10274		Misdemeanor: "1186",
10275		DWI: "83",
10276		"Traffic Tickets": "3224",
10277		"Traffic Warnings": "3123",
10278		"All Reportable": "685",
10279		"Property Damage": "564",
10280		Injury: "120",
10281		Fatality: "1",
10282		Homicide: "0",
10283		"Rape and Attempted Rape": "33",
10284		Robbery: "10",
10285		"Aggravated Assault": "61",
10286		"Burglary (Residential)": "38",
10287		"Burglary (Non-Residential)": "22",
10288		"Auto Theft": "51",
10289		"All Thefts": "496",
10290		"Stolen Bikes": "9",
10291		"Theft From Vehicles": "188",
10292		Shoplifting: "144",
10293		Vandalism: "163",
10294		Fraud: "177",
10295		Forgery: "40",
10296		Arson: "6",
10297	},
10298	{
10299		Date: "Mar-20",
10300		Population: "289548",
10301		Felony: "280",
10302		Misdemeanor: "1111",
10303		DWI: "77",
10304		"Traffic Tickets": "2743",
10305		"Traffic Warnings": "2822",
10306		"All Reportable": "519",
10307		"Property Damage": "416",
10308		Injury: "100",
10309		Fatality: "3",
10310		Homicide: "2",
10311		"Rape and Attempted Rape": "23",
10312		Robbery: "12",
10313		"Aggravated Assault": "45",
10314		"Burglary (Residential)": "71",
10315		"Burglary (Non-Residential)": "32",
10316		"Auto Theft": "46",
10317		"All Thefts": "596",
10318		"Stolen Bikes": "21",
10319		"Theft From Vehicles": "305",
10320		Shoplifting: "116",
10321		Vandalism: "206",
10322		Fraud: "203",
10323		Forgery: "36",
10324		Arson: "2",
10325	},
10326	{
10327		Date: "Apr-20",
10328		Population: "289548",
10329		Felony: "267",
10330		Misdemeanor: "825",
10331		DWI: "38",
10332		"Traffic Tickets": "1369",
10333		"Traffic Warnings": "875",
10334		"All Reportable": "358",
10335		"Property Damage": "286",
10336		Injury: "71",
10337		Fatality: "1",
10338		Homicide: "0",
10339		"Rape and Attempted Rape": "19",
10340		Robbery: "17",
10341		"Aggravated Assault": "68",
10342		"Burglary (Residential)": "57",
10343		"Burglary (Non-Residential)": "28",
10344		"Auto Theft": "55",
10345		"All Thefts": "649",
10346		"Stolen Bikes": "28",
10347		"Theft From Vehicles": "390",
10348		Shoplifting: "95",
10349		Vandalism: "224",
10350		Fraud: "210",
10351		Forgery: "11",
10352		Arson: "5",
10353	},
10354	{
10355		Date: "May-20",
10356		Population: "289548",
10357		Felony: "268",
10358		Misdemeanor: "1024",
10359		DWI: "72",
10360		"Traffic Tickets": "2488",
10361		"Traffic Warnings": "1721",
10362		"All Reportable": "492",
10363		"Property Damage": "392",
10364		Injury: "100",
10365		Fatality: "0",
10366		Homicide: "1",
10367		"Rape and Attempted Rape": "22",
10368		Robbery: "6",
10369		"Aggravated Assault": "93",
10370		"Burglary (Residential)": "43",
10371		"Burglary (Non-Residential)": "28",
10372		"Auto Theft": "33",
10373		"All Thefts": "582",
10374		"Stolen Bikes": "22",
10375		"Theft From Vehicles": "272",
10376		Shoplifting: "126",
10377		Vandalism: "359",
10378		Fraud: "197",
10379		Forgery: "7",
10380		Arson: "8",
10381	},
10382	{
10383		Date: "Jun-20",
10384		Population: "289548",
10385		Felony: "272",
10386		Misdemeanor: "950",
10387		DWI: "70",
10388		"Traffic Tickets": "1559",
10389		"Traffic Warnings": "1576",
10390		"All Reportable": "569",
10391		"Property Damage": "428",
10392		Injury: "141",
10393		Fatality: "0",
10394		Homicide: "0",
10395		"Rape and Attempted Rape": "21",
10396		Robbery: "11",
10397		"Aggravated Assault": "77",
10398		"Burglary (Residential)": "49",
10399		"Burglary (Non-Residential)": "34",
10400		"Auto Theft": "58",
10401		"All Thefts": "539",
10402		"Stolen Bikes": "44",
10403		"Theft From Vehicles": "238",
10404		Shoplifting: "113",
10405		Vandalism: "274",
10406		Fraud: "219",
10407		Forgery: "24",
10408		Arson: "7",
10409	},
10410	{
10411		Date: "Jul-20",
10412		Population: "289548",
10413		Felony: "338",
10414		Misdemeanor: "983",
10415		DWI: "62",
10416		"Traffic Tickets": "1576",
10417		"Traffic Warnings": "1172",
10418		"All Reportable": "608",
10419		"Property Damage": "462",
10420		Injury: "145",
10421		Fatality: "1",
10422		Homicide: "3",
10423		"Rape and Attempted Rape": "42",
10424		Robbery: "21",
10425		"Aggravated Assault": "97",
10426		"Burglary (Residential)": "63",
10427		"Burglary (Non-Residential)": "17",
10428		"Auto Theft": "50",
10429		"All Thefts": "537",
10430		"Stolen Bikes": "40",
10431		"Theft From Vehicles": "221",
10432		Shoplifting: "132",
10433		Vandalism: "233",
10434		Fraud: "202",
10435		Forgery: "12",
10436		Arson: "13",
10437	},
10438	{
10439		Date: "Aug-20",
10440		Population: "289548",
10441		Felony: "327",
10442		Misdemeanor: "1187",
10443		DWI: "76",
10444		"Traffic Tickets": "2276",
10445		"Traffic Warnings": "1588",
10446		"All Reportable": "592",
10447		"Property Damage": "449",
10448		Injury: "142",
10449		Fatality: "1",
10450		Homicide: "0",
10451		"Rape and Attempted Rape": "18",
10452		Robbery: "11",
10453		"Aggravated Assault": "79",
10454		"Burglary (Residential)": "80",
10455		"Burglary (Non-Residential)": "18",
10456		"Auto Theft": "42",
10457		"All Thefts": "669",
10458		"Stolen Bikes": "47",
10459		"Theft From Vehicles": "328",
10460		Shoplifting: "130",
10461		Vandalism: "250",
10462		Fraud: "225",
10463		Forgery: "23",
10464		Arson: "9",
10465	},
10466	{
10467		Date: "Sep-20",
10468		Population: "289548",
10469		Felony: "289",
10470		Misdemeanor: "1001",
10471		DWI: "80",
10472		"Traffic Tickets": "1957",
10473		"Traffic Warnings": "1179",
10474		"All Reportable": "646",
10475		"Property Damage": "493",
10476		Injury: "150",
10477		Fatality: "3",
10478		Homicide: "1",
10479		"Rape and Attempted Rape": "14",
10480		Robbery: "22",
10481		"Aggravated Assault": "70",
10482		"Burglary (Residential)": "64",
10483		"Burglary (Non-Residential)": "25",
10484		"Auto Theft": "44",
10485		"All Thefts": "674",
10486		"Stolen Bikes": "50",
10487		"Theft From Vehicles": "321",
10488		Shoplifting: "128",
10489		Vandalism: "231",
10490		Fraud: "174",
10491		Forgery: "21",
10492		Arson: "4",
10493	},
10494	{
10495		Date: "Oct-20",
10496		Population: "289548",
10497		Felony: "306",
10498		Misdemeanor: "1032",
10499		DWI: "77",
10500		"Traffic Tickets": "1964",
10501		"Traffic Warnings": "988",
10502		"All Reportable": "625",
10503		"Property Damage": "507",
10504		Injury: "118",
10505		Fatality: "0",
10506		Homicide: "0",
10507		"Rape and Attempted Rape": "21",
10508		Robbery: "22",
10509		"Aggravated Assault": "69",
10510		"Burglary (Residential)": "49",
10511		"Burglary (Non-Residential)": "24",
10512		"Auto Theft": "45",
10513		"All Thefts": "551",
10514		"Stolen Bikes": "35",
10515		"Theft From Vehicles": "186",
10516		Shoplifting: "127",
10517		Vandalism: "275",
10518		Fraud: "203",
10519		Forgery: "33",
10520		Arson: "8",
10521	},
10522	{
10523		Date: "Nov-20",
10524		Population: "289548",
10525		Felony: "318",
10526		Misdemeanor: "863",
10527		DWI: "85",
10528		"Traffic Tickets": "1938",
10529		"Traffic Warnings": "351",
10530		"All Reportable": "557",
10531		"Property Damage": "454",
10532		Injury: "102",
10533		Fatality: "1",
10534		Homicide: "0",
10535		"Rape and Attempted Rape": "22",
10536		Robbery: "6",
10537		"Aggravated Assault": "57",
10538		"Burglary (Residential)": "77",
10539		"Burglary (Non-Residential)": "35",
10540		"Auto Theft": "47",
10541		"All Thefts": "581",
10542		"Stolen Bikes": "20",
10543		"Theft From Vehicles": "241",
10544		Shoplifting: "134",
10545		Vandalism: "283",
10546		Fraud: "204",
10547		Forgery: "18",
10548		Arson: "5",
10549	},
10550	{
10551		Date: "Dec-20",
10552		Population: "289548",
10553		Felony: "325",
10554		Misdemeanor: "871",
10555		DWI: "52",
10556		"Traffic Tickets": "1792",
10557		"Traffic Warnings": "198",
10558		"All Reportable": "616",
10559		"Property Damage": "510",
10560		Injury: "106",
10561		Fatality: "0",
10562		Homicide: "0",
10563		"Rape and Attempted Rape": "24",
10564		Robbery: "10",
10565		"Aggravated Assault": "55",
10566		"Burglary (Residential)": "75",
10567		"Burglary (Non-Residential)": "50",
10568		"Auto Theft": "60",
10569		"All Thefts": "584",
10570		"Stolen Bikes": "14",
10571		"Theft From Vehicles": "292",
10572		Shoplifting: "133",
10573		Vandalism: "198",
10574		Fraud: "208",
10575		Forgery: "41",
10576		Arson: "8",
10577	},
10578	{
10579		Date: "Jan-21",
10580		Population: "289548",
10581		Felony: "270",
10582		Misdemeanor: "835",
10583		DWI: "57",
10584		"Traffic Tickets": "2001",
10585		"Traffic Warnings": "955",
10586		"All Reportable": "634",
10587		"Property Damage": "516",
10588		Injury: "118",
10589		Fatality: "0",
10590		Homicide: "0",
10591		"Rape and Attempted Rape": "25",
10592		Robbery: "10",
10593		"Aggravated Assault": "65",
10594		"Burglary (Residential)": "53",
10595		"Burglary (Non-Residential)": "27",
10596		"Auto Theft": "30",
10597		"All Thefts": "413",
10598		"Stolen Bikes": "7",
10599		"Theft From Vehicles": "174",
10600		Shoplifting: "116",
10601		Vandalism: "133",
10602		Fraud: "173",
10603		Forgery: "60",
10604		Arson: "1",
10605	},
10606	{
10607		Date: "Feb-21",
10608		Population: "289548",
10609		Felony: "221",
10610		Misdemeanor: "704",
10611		DWI: "110",
10612		"Traffic Tickets": "1821",
10613		"Traffic Warnings": "858",
10614		"All Reportable": "717",
10615		"Property Damage": "591",
10616		Injury: "126",
10617		Fatality: "0",
10618		Homicide: "0",
10619		"Rape and Attempted Rape": "11",
10620		Robbery: "6",
10621		"Aggravated Assault": "36",
10622		"Burglary (Residential)": "43",
10623		"Burglary (Non-Residential)": "11",
10624		"Auto Theft": "46",
10625		"All Thefts": "396",
10626		"Stolen Bikes": "2",
10627		"Theft From Vehicles": "184",
10628		Shoplifting: "84",
10629		Vandalism: "114",
10630		Fraud: "156",
10631		Forgery: "19",
10632		Arson: "1",
10633	},
10634	{
10635		Date: "Mar-21",
10636		Population: "289548",
10637		Felony: "391",
10638		Misdemeanor: "988",
10639		DWI: "113",
10640		"Traffic Tickets": "2108",
10641		"Traffic Warnings": "1148",
10642		"All Reportable": "536",
10643		"Property Damage": "405",
10644		Injury: "130",
10645		Fatality: "1",
10646		Homicide: "2",
10647		"Rape and Attempted Rape": "21",
10648		Robbery: "9",
10649		"Aggravated Assault": "41",
10650		"Burglary (Residential)": "55",
10651		"Burglary (Non-Residential)": "18",
10652		"Auto Theft": "71",
10653		"All Thefts": "450",
10654		"Stolen Bikes": "0",
10655		"Theft From Vehicles": "213",
10656		Shoplifting: "76",
10657		Vandalism: "308",
10658		Fraud: "190",
10659		Forgery: "40",
10660		Arson: "6",
10661	},
10662	{
10663		Date: "Apr-21",
10664		Population: "289548",
10665		Felony: "375",
10666		Misdemeanor: "984",
10667		DWI: "78",
10668		"Traffic Tickets": "2013",
10669		"Traffic Warnings": "1623",
10670		"All Reportable": "551",
10671		"Property Damage": "409",
10672		Injury: "141",
10673		Fatality: "1",
10674		Homicide: "0",
10675		"Rape and Attempted Rape": "24",
10676		Robbery: "16",
10677		"Aggravated Assault": "62",
10678		"Burglary (Residential)": "57",
10679		"Burglary (Non-Residential)": "20",
10680		"Auto Theft": "47",
10681		"All Thefts": "516",
10682		"Stolen Bikes": "0",
10683		"Theft From Vehicles": "201",
10684		Shoplifting: "124",
10685		Vandalism: "321",
10686		Fraud: "155",
10687		Forgery: "39",
10688		Arson: "3",
10689	},
10690	{
10691		Date: "May-21",
10692		Population: "289548",
10693		Felony: "344",
10694		Misdemeanor: "1047",
10695		DWI: "66",
10696		"Traffic Tickets": "1931",
10697		"Traffic Warnings": "987",
10698		"All Reportable": "577",
10699		"Property Damage": "426",
10700		Injury: "148",
10701		Fatality: "3",
10702		Homicide: "1",
10703		"Rape and Attempted Rape": "25",
10704		Robbery: "8",
10705		"Aggravated Assault": "59",
10706		"Burglary (Residential)": "46",
10707		"Burglary (Non-Residential)": "16",
10708		"Auto Theft": "75",
10709		"All Thefts": "514",
10710		"Stolen Bikes": "0",
10711		"Theft From Vehicles": "206",
10712		Shoplifting: "109",
10713		Vandalism: "326",
10714		Fraud: "175",
10715		Forgery: "15",
10716		Arson: "6",
10717	},
10718	{
10719		Date: "Jun-21",
10720		Population: "289548",
10721		Felony: "397",
10722		Misdemeanor: "1096",
10723		DWI: "92",
10724		"Traffic Tickets": "1630",
10725		"Traffic Warnings": "928",
10726		"All Reportable": "654",
10727		"Property Damage": "502",
10728		Injury: "150",
10729		Fatality: "2",
10730		Homicide: "2",
10731		"Rape and Attempted Rape": "12",
10732		Robbery: "15",
10733		"Aggravated Assault": "62",
10734		"Burglary (Residential)": "51",
10735		"Burglary (Non-Residential)": "20",
10736		"Auto Theft": "81",
10737		"All Thefts": "595",
10738		"Stolen Bikes": "0",
10739		"Theft From Vehicles": "225",
10740		Shoplifting: "135",
10741		Vandalism: "316",
10742		Fraud: "176",
10743		Forgery: "22",
10744		Arson: "8",
10745	},
10746	{
10747		Date: "Jul-21",
10748		Population: "289548",
10749		Felony: "336",
10750		Misdemeanor: "1016",
10751		DWI: "99",
10752		"Traffic Tickets": "1633",
10753		"Traffic Warnings": "672",
10754		"All Reportable": "619",
10755		"Property Damage": "473",
10756		Injury: "146",
10757		Fatality: "0",
10758		Homicide: "0",
10759		"Rape and Attempted Rape": "19",
10760		Robbery: "16",
10761		"Aggravated Assault": "85",
10762		"Burglary (Residential)": "54",
10763		"Burglary (Non-Residential)": "22",
10764		"Auto Theft": "65",
10765		"All Thefts": "601",
10766		"Stolen Bikes": "0",
10767		"Theft From Vehicles": "261",
10768		Shoplifting: "118",
10769		Vandalism: "399",
10770		Fraud: "214",
10771		Forgery: "14",
10772		Arson: "6",
10773	},
10774	{
10775		Date: "Aug-21",
10776		Population: "289548",
10777		Felony: "313",
10778		Misdemeanor: "1070",
10779		DWI: "131",
10780		"Traffic Tickets": "1557",
10781		"Traffic Warnings": "813",
10782		"All Reportable": "673",
10783		"Property Damage": "500",
10784		Injury: "173",
10785		Fatality: "0",
10786		Homicide: "0",
10787		"Rape and Attempted Rape": "18",
10788		Robbery: "14",
10789		"Aggravated Assault": "72",
10790		"Burglary (Residential)": "65",
10791		"Burglary (Non-Residential)": "23",
10792		"Auto Theft": "45",
10793		"All Thefts": "535",
10794		"Stolen Bikes": "0",
10795		"Theft From Vehicles": "237",
10796		Shoplifting: "92",
10797		Vandalism: "314",
10798		Fraud: "210",
10799		Forgery: "11",
10800		Arson: "7",
10801	},
10802	{
10803		Date: "Sep-21",
10804		Population: "289548",
10805		Felony: "324",
10806		Misdemeanor: "1022",
10807		DWI: "105",
10808		"Traffic Tickets": "1367",
10809		"Traffic Warnings": "621",
10810		"All Reportable": "703",
10811		"Property Damage": "531",
10812		Injury: "171",
10813		Fatality: "1",
10814		Homicide: "1",
10815		"Rape and Attempted Rape": "21",
10816		Robbery: "9",
10817		"Aggravated Assault": "64",
10818		"Burglary (Residential)": "59",
10819		"Burglary (Non-Residential)": "30",
10820		"Auto Theft": "53",
10821		"All Thefts": "641",
10822		"Stolen Bikes": "0",
10823		"Theft From Vehicles": "264",
10824		Shoplifting: "131",
10825		Vandalism: "395",
10826		Fraud: "242",
10827		Forgery: "22",
10828		Arson: "6",
10829	},
10830	{
10831		Date: "Oct-21",
10832		Population: "289548",
10833		Felony: "329",
10834		Misdemeanor: "1074",
10835		DWI: "108",
10836		"Traffic Tickets": "1509",
10837		"Traffic Warnings": "759",
10838		"All Reportable": "735",
10839		"Property Damage": "554",
10840		Injury: "177",
10841		Fatality: "4",
10842		Homicide: "2",
10843		"Rape and Attempted Rape": "18",
10844		Robbery: "12",
10845		"Aggravated Assault": "71",
10846		"Burglary (Residential)": "67",
10847		"Burglary (Non-Residential)": "25",
10848		"Auto Theft": "52",
10849		"All Thefts": "698",
10850		"Stolen Bikes": "0",
10851		"Theft From Vehicles": "368",
10852		Shoplifting: "115",
10853		Vandalism: "468",
10854		Fraud: "220",
10855		Forgery: "35",
10856		Arson: "8",
10857	},
10858	{
10859		Date: "Nov-21",
10860		Population: "289548",
10861		Felony: "291",
10862		Misdemeanor: "992",
10863		DWI: "104",
10864		"Traffic Tickets": "1980",
10865		"Traffic Warnings": "650",
10866		"All Reportable": "672",
10867		"Property Damage": "529",
10868		Injury: "143",
10869		Fatality: "0",
10870		Homicide: "0",
10871		"Rape and Attempted Rape": "29",
10872		Robbery: "9",
10873		"Aggravated Assault": "56",
10874		"Burglary (Residential)": "59",
10875		"Burglary (Non-Residential)": "24",
10876		"Auto Theft": "75",
10877		"All Thefts": "588",
10878		"Stolen Bikes": "0",
10879		"Theft From Vehicles": "279",
10880		Shoplifting: "111",
10881		Vandalism: "362",
10882		Fraud: "213",
10883		Forgery: "26",
10884		Arson: "6",
10885	},
10886	{
10887		Date: "Dec-21",
10888		Population: "289548",
10889		Felony: "272",
10890		Misdemeanor: "826",
10891		DWI: "89",
10892		"Traffic Tickets": "1498",
10893		"Traffic Warnings": "612",
10894		"All Reportable": "574",
10895		"Property Damage": "453",
10896		Injury: "121",
10897		Fatality: "0",
10898		Homicide: "0",
10899		"Rape and Attempted Rape": "20",
10900		Robbery: "8",
10901		"Aggravated Assault": "35",
10902		"Burglary (Residential)": "54",
10903		"Burglary (Non-Residential)": "25",
10904		"Auto Theft": "52",
10905		"All Thefts": "585",
10906		"Stolen Bikes": "0",
10907		"Theft From Vehicles": "269",
10908		Shoplifting: "100",
10909		Vandalism: "384",
10910		Fraud: "245",
10911		Forgery: "27",
10912		Arson: "1",
10913	},
10914];
10915
10916const yearData = [
10917	{
10918		Date: 1990,
10919		Population: 191972,
10920		Felony: 1371,
10921		Misdemeanor: 19727,
10922		DWI: 1994,
10923		"Traffic Tickets": 37867,
10924		"Traffic Warnings": 58957,
10925		"All Reportable": 8376,
10926		"Property Damage": 6153,
10927		Injury: 2214,
10928		Fatality: 9,
10929		Homicide: 3,
10930		"Rape and Attempted Rape": 105,
10931		Robbery: 119,
10932		"Aggravated Assault": 724,
10933		"Burglary (Residential)": 1460,
10934		"Burglary (Non-Residential)": 671,
10935		"Auto Theft": 442,
10936		"All Thefts": 9940,
10937		"Stolen Bikes": 977,
10938		"Theft From Vehicles": 0,
10939		Shoplifting: 0,
10940		Vandalism: 5261,
10941		Fraud: 1135,
10942		Forgery: 798,
10943		Arson: 0,
10944	},
10945	{
10946		Date: 1991,
10947		Population: 195270,
10948		Felony: 1105,
10949		Misdemeanor: 17494,
10950		DWI: 1614,
10951		"Traffic Tickets": 31220,
10952		"Traffic Warnings": 43911,
10953		"All Reportable": 8054,
10954		"Property Damage": 5873,
10955		Injury: 2174,
10956		Fatality: 7,
10957		Homicide: 0,
10958		"Rape and Attempted Rape": 94,
10959		Robbery: 117,
10960		"Aggravated Assault": 888,
10961		"Burglary (Residential)": 1723,
10962		"Burglary (Non-Residential)": 609,
10963		"Auto Theft": 429,
10964		"All Thefts": 11152,
10965		"Stolen Bikes": 1263,
10966		"Theft From Vehicles": 0,
10967		Shoplifting: 0,
10968		Vandalism: 5414,
10969		Fraud: 1555,
10970		Forgery: 1197,
10971		Arson: 0,
10972	},
10973	{
10974		Date: 1992,
10975		Population: 199021,
10976		Felony: 1649,
10977		Misdemeanor: 20805,
10978		DWI: 1289,
10979		"Traffic Tickets": 34002,
10980		"Traffic Warnings": 44973,
10981		"All Reportable": 7539,
10982		"Property Damage": 5416,
10983		Injury: 2120,
10984		Fatality: 3,
10985		Homicide: 9,
10986		"Rape and Attempted Rape": 114,
10987		Robbery: 137,
10988		"Aggravated Assault": 982,
10989		"Burglary (Residential)": 1652,
10990		"Burglary (Non-Residential)": 553,
10991		"Auto Theft": 401,
10992		"All Thefts": 10993,
10993		"Stolen Bikes": 1221,
10994		"Theft From Vehicles": 0,
10995		Shoplifting: 0,
10996		Vandalism: 5779,
10997		Fraud: 1500,
10998		Forgery: 978,
10999		Arson: 0,
11000	},
11001	{
11002		Date: 1993,
11003		Population: 202500,
11004		Felony: 1472,
11005		Misdemeanor: 18937,
11006		DWI: 1098,
11007		"Traffic Tickets": 33991,
11008		"Traffic Warnings": 53069,
11009		"All Reportable": 7940,
11010		"Property Damage": 5902,
11011		Injury: 2034,
11012		Fatality: 4,
11013		Homicide: 3,
11014		"Rape and Attempted Rape": 82,
11015		Robbery: 122,
11016		"Aggravated Assault": 892,
11017		"Burglary (Residential)": 1472,
11018		"Burglary (Non-Residential)": 492,
11019		"Auto Theft": 424,
11020		"All Thefts": 9933,
11021		"Stolen Bikes": 994,
11022		"Theft From Vehicles": 0,
11023		Shoplifting: 0,
11024		Vandalism: 4653,
11025		Fraud: 1270,
11026		Forgery: 1112,
11027		Arson: 0,
11028	},
11029	{
11030		Date: 1994,
11031		Population: 204493,
11032		Felony: 1595,
11033		Misdemeanor: 20407,
11034		DWI: 1234,
11035		"Traffic Tickets": 38876,
11036		"Traffic Warnings": 44145,
11037		"All Reportable": 8161,
11038		"Property Damage": 5952,
11039		Injury: 2201,
11040		Fatality: 8,
11041		Homicide: 4,
11042		"Rape and Attempted Rape": 110,
11043		Robbery: 178,
11044		"Aggravated Assault": 963,
11045		"Burglary (Residential)": 1482,
11046		"Burglary (Non-Residential)": 519,
11047		"Auto Theft": 520,
11048		"All Thefts": 10258,
11049		"Stolen Bikes": 1056,
11050		"Theft From Vehicles": 0,
11051		Shoplifting: 0,
11052		Vandalism: 5557,
11053		Fraud: 1258,
11054		Forgery: 1317,
11055		Arson: 0,
11056	},
11057	{
11058		Date: 1995,
11059		Population: 207154,
11060		Felony: 1754,
11061		Misdemeanor: 21133,
11062		DWI: 977,
11063		"Traffic Tickets": 43778,
11064		"Traffic Warnings": 36270,
11065		"All Reportable": 8373,
11066		"Property Damage": 6091,
11067		Injury: 2279,
11068		Fatality: 3,
11069		Homicide: 2,
11070		"Rape and Attempted Rape": 88,
11071		Robbery: 123,
11072		"Aggravated Assault": 1084,
11073		"Burglary (Residential)": 1401,
11074		"Burglary (Non-Residential)": 456,
11075		"Auto Theft": 468,
11076		"All Thefts": 10573,
11077		"Stolen Bikes": 993,
11078		"Theft From Vehicles": 0,
11079		Shoplifting: 0,
11080		Vandalism: 5600,
11081		Fraud: 998,
11082		Forgery: 1614,
11083		Arson: 0,
11084	},
11085	{
11086		Date: 1996,
11087		Population: 209192,
11088		Felony: 1945,
11089		Misdemeanor: 21361,
11090		DWI: 1124,
11091		"Traffic Tickets": 45239,
11092		"Traffic Warnings": 38947,
11093		"All Reportable": 8766,
11094		"Property Damage": 6422,
11095		Injury: 2339,
11096		Fatality: 5,
11097		Homicide: 4,
11098		"Rape and Attempted Rape": 90,
11099		Robbery: 140,
11100		"Aggravated Assault": 964,
11101		"Burglary (Residential)": 1370,
11102		"Burglary (Non-Residential)": 486,
11103		"Auto Theft": 523,
11104		"All Thefts": 10557,
11105		"Stolen Bikes": 877,
11106		"Theft From Vehicles": 0,
11107		Shoplifting: 0,
11108		Vandalism: 5803,
11109		Fraud: 924,
11110		Forgery: 1641,
11111		Arson: 0,
11112	},
11113	{
11114		Date: 1997,
11115		Population: 211552,
11116		Felony: 2088,
11117		Misdemeanor: 20516,
11118		DWI: 1140,
11119		"Traffic Tickets": 42663,
11120		"Traffic Warnings": 38603,
11121		"All Reportable": 8650,
11122		"Property Damage": 6384,
11123		Injury: 2257,
11124		Fatality: 9,
11125		Homicide: 6,
11126		"Rape and Attempted Rape": 102,
11127		Robbery: 147,
11128		"Aggravated Assault": 855,
11129		"Burglary (Residential)": 1278,
11130		"Burglary (Non-Residential)": 470,
11131		"Auto Theft": 542,
11132		"All Thefts": 10580,
11133		"Stolen Bikes": 830,
11134		"Theft From Vehicles": 4181,
11135		Shoplifting: 1680,
11136		Vandalism: 5435,
11137		Fraud: 957,
11138		Forgery: 1363,
11139		Arson: 0,
11140	},
11141	{
11142		Date: 1998,
11143		Population: 213836,
11144		Felony: 2063,
11145		Misdemeanor: 21181,
11146		DWI: 1425,
11147		"Traffic Tickets": 47663,
11148		"Traffic Warnings": 40018,
11149		"All Reportable": 8860,
11150		"Property Damage": 6585,
11151		Injury: 2262,
11152		Fatality: 13,
11153		Homicide: 9,
11154		"Rape and Attempted Rape": 103,
11155		Robbery: 172,
11156		"Aggravated Assault": 871,
11157		"Burglary (Residential)": 1499,
11158		"Burglary (Non-Residential)": 453,
11159		"Auto Theft": 465,
11160		"All Thefts": 10349,
11161		"Stolen Bikes": 768,
11162		"Theft From Vehicles": 4335,
11163		Shoplifting: 1587,
11164		Vandalism: 5288,
11165		Fraud: 922,
11166		Forgery: 1525,
11167		Arson: 0,
11168	},
11169	{
11170		Date: 1999,
11171		Population: 215928,
11172		Felony: 2123,
11173		Misdemeanor: 21609,
11174		DWI: 1596,
11175		"Traffic Tickets": 44824,
11176		"Traffic Warnings": 39467,
11177		"All Reportable": 8825,
11178		"Property Damage": 6593,
11179		Injury: 2226,
11180		Fatality: 6,
11181		Homicide: 8,
11182		"Rape and Attempted Rape": 80,
11183		Robbery: 161,
11184		"Aggravated Assault": 925,
11185		"Burglary (Residential)": 1284,
11186		"Burglary (Non-Residential)": 551,
11187		"Auto Theft": 488,
11188		"All Thefts": 9641,
11189		"Stolen Bikes": 658,
11190		"Theft From Vehicles": 3850,
11191		Shoplifting: 1519,
11192		Vandalism: 5431,
11193		Fraud: 809,
11194		Forgery: 1694,
11195		Arson: 0,
11196	},
11197	{
11198		Date: 2000,
11199		Population: 225581,
11200		Felony: 2100,
11201		Misdemeanor: 22871,
11202		DWI: 1387,
11203		"Traffic Tickets": 43467,
11204		"Traffic Warnings": 36913,
11205		"All Reportable": 9053,
11206		"Property Damage": 6834,
11207		Injury: 2209,
11208		Fatality: 10,
11209		Homicide: 3,
11210		"Rape and Attempted Rape": 100,
11211		Robbery: 141,
11212		"Aggravated Assault": 903,
11213		"Burglary (Residential)": 1405,
11214		"Burglary (Non-Residential)": 509,
11215		"Auto Theft": 483,
11216		"All Thefts": 10260,
11217		"Stolen Bikes": 680,
11218		"Theft From Vehicles": 4114,
11219		Shoplifting: 1476,
11220		Vandalism: 5774,
11221		Fraud: 921,
11222		Forgery: 1268,
11223		Arson: 0,
11224	},
11225	{
11226		Date: 2001,
11227		Population: 230400,
11228		Felony: 2317,
11229		Misdemeanor: 23510,
11230		DWI: 1497,
11231		"Traffic Tickets": 49470,
11232		"Traffic Warnings": 44646,
11233		"All Reportable": 9253,
11234		"Property Damage": 7048,
11235		Injury: 2193,
11236		Fatality: 12,
11237		Homicide: 6,
11238		"Rape and Attempted Rape": 86,
11239		Robbery: 151,
11240		"Aggravated Assault": 1010,
11241		"Burglary (Residential)": 1395,
11242		"Burglary (Non-Residential)": 510,
11243		"Auto Theft": 563,
11244		"All Thefts": 11061,
11245		"Stolen Bikes": 773,
11246		"Theft From Vehicles": 4546,
11247		Shoplifting: 1654,
11248		Vandalism: 5747,
11249		Fraud: 1114,
11250		Forgery: 1687,
11251		Arson: 0,
11252	},
11253	{
11254		Date: 2002,
11255		Population: 233737,
11256		Felony: 2442,
11257		Misdemeanor: 23241,
11258		DWI: 1518,
11259		"Traffic Tickets": 52843,
11260		"Traffic Warnings": 41741,
11261		"All Reportable": 8957,
11262		"Property Damage": 6732,
11263		Injury: 2215,
11264		Fatality: 10,
11265		Homicide: 7,
11266		"Rape and Attempted Rape": 97,
11267		Robbery: 177,
11268		"Aggravated Assault": 947,
11269		"Burglary (Residential)": 1380,
11270		"Burglary (Non-Residential)": 584,
11271		"Auto Theft": 513,
11272		"All Thefts": 11005,
11273		"Stolen Bikes": 711,
11274		"Theft From Vehicles": 4617,
11275		Shoplifting: 1574,
11276		Vandalism: 5994,
11277		Fraud: 1080,
11278		Forgery: 2198,
11279		Arson: 0,
11280	},
11281	{
11282		Date: 2003,
11283		Population: 237356,
11284		Felony: 2189,
11285		Misdemeanor: 22054,
11286		DWI: 1340,
11287		"Traffic Tickets": 48205,
11288		"Traffic Warnings": 30340,
11289		"All Reportable": 9290,
11290		"Property Damage": 7209,
11291		Injury: 2061,
11292		Fatality: 20,
11293		Homicide: 4,
11294		"Rape and Attempted Rape": 96,
11295		Robbery: 146,
11296		"Aggravated Assault": 837,
11297		"Burglary (Residential)": 1286,
11298		"Burglary (Non-Residential)": 626,
11299		"Auto Theft": 469,
11300		"All Thefts": 10795,
11301		"Stolen Bikes": 539,
11302		"Theft From Vehicles": 4412,
11303		Shoplifting: 1513,
11304		Vandalism: 6229,
11305		Fraud: 1092,
11306		Forgery: 2569,
11307		Arson: 0,
11308	},
11309	{
11310		Date: 2004,
11311		Population: 239417,
11312		Felony: 2196,
11313		Misdemeanor: 22861,
11314		DWI: 1645,
11315		"Traffic Tickets": 52458,
11316		"Traffic Warnings": 45735,
11317		"All Reportable": 8251,
11318		"Property Damage": 6181,
11319		Injury: 2064,
11320		Fatality: 6,
11321		Homicide: 7,
11322		"Rape and Attempted Rape": 126,
11323		Robbery: 191,
11324		"Aggravated Assault": 866,
11325		"Burglary (Residential)": 1312,
11326		"Burglary (Non-Residential)": 538,
11327		"Auto Theft": 405,
11328		"All Thefts": 10596,
11329		"Stolen Bikes": 566,
11330		"Theft From Vehicles": 3902,
11331		Shoplifting: 1523,
11332		Vandalism: 5346,
11333		Fraud: 1147,
11334		Forgery: 1577,
11335		Arson: 0,
11336	},
11337	{
11338		Date: 2005,
11339		Population: 242009,
11340		Felony: 2428,
11341		Misdemeanor: 24083,
11342		DWI: 1600,
11343		"Traffic Tickets": 57732,
11344		"Traffic Warnings": 55896,
11345		"All Reportable": 9585,
11346		"Property Damage": 7719,
11347		Injury: 1857,
11348		Fatality: 9,
11349		Homicide: 4,
11350		"Rape and Attempted Rape": 110,
11351		Robbery: 225,
11352		"Aggravated Assault": 989,
11353		"Burglary (Residential)": 1272,
11354		"Burglary (Non-Residential)": 559,
11355		"Auto Theft": 404,
11356		"All Thefts": 10108,
11357		"Stolen Bikes": 595,
11358		"Theft From Vehicles": 3520,
11359		Shoplifting: 1491,
11360		Vandalism: 5744,
11361		Fraud: 1000,
11362		Forgery: 1588,
11363		Arson: 0,
11364	},
11365	{
11366		Date: 2006,
11367		Population: 244653,
11368		Felony: 2535,
11369		Misdemeanor: 25988,
11370		DWI: 1864,
11371		"Traffic Tickets": 54572,
11372		"Traffic Warnings": 51071,
11373		"All Reportable": 8495,
11374		"Property Damage": 6601,
11375		Injury: 1886,
11376		Fatality: 8,
11377		Homicide: 5,
11378		"Rape and Attempted Rape": 108,
11379		Robbery: 154,
11380		"Aggravated Assault": 937,
11381		"Burglary (Residential)": 1310,
11382		"Burglary (Non-Residential)": 559,
11383		"Auto Theft": 404,
11384		"All Thefts": 9649,
11385		"Stolen Bikes": 642,
11386		"Theft From Vehicles": 3064,
11387		Shoplifting: 1455,
11388		Vandalism: 6181,
11389		Fraud: 1082,
11390		Forgery: 1691,
11391		Arson: 0,
11392	},
11393	{
11394		Date: 2007,
11395		Population: 247789,
11396		Felony: 2687,
11397		Misdemeanor: 26717,
11398		DWI: 1750,
11399		"Traffic Tickets": 47997,
11400		"Traffic Warnings": 44089,
11401		"All Reportable": 9713,
11402		"Property Damage": 7805,
11403		Injury: 1898,
11404		Fatality: 12,
11405		Homicide: 6,
11406		"Rape and Attempted Rape": 114,
11407		Robbery: 167,
11408		"Aggravated Assault": 1029,
11409		"Burglary (Residential)": 1456,
11410		"Burglary (Non-Residential)": 460,
11411		"Auto Theft": 410,
11412		"All Thefts": 9421,
11413		"Stolen Bikes": 598,
11414		"Theft From Vehicles": 3187,
11415		Shoplifting: 1674,
11416		Vandalism: 5241,
11417		Fraud: 1199,
11418		Forgery: 988,
11419		Arson: 0,
11420	},
11421	{
11422		Date: 2008,
11423		Population: 250939,
11424		Felony: 2543,
11425		Misdemeanor: 28483,
11426		DWI: 2253,
11427		"Traffic Tickets": 53862,
11428		"Traffic Warnings": 47615,
11429		"All Reportable": 8918,
11430		"Property Damage": 7114,
11431		Injury: 1798,
11432		Fatality: 6,
11433		Homicide: 4,
11434		"Rape and Attempted Rape": 111,
11435		Robbery: 217,
11436		"Aggravated Assault": 946,
11437		"Burglary (Residential)": 1218,
11438		"Burglary (Non-Residential)": 331,
11439		"Auto Theft": 351,
11440		"All Thefts": 8203,
11441		"Stolen Bikes": 556,
11442		"Theft From Vehicles": 2794,
11443		Shoplifting: 1635,
11444		Vandalism: 4970,
11445		Fraud: 1182,
11446		Forgery: 719,
11447		Arson: 0,
11448	},
11449	{
11450		Date: 2009,
11451		Population: 254001,
11452		Felony: 2394,
11453		Misdemeanor: 25789,
11454		DWI: 2330,
11455		"Traffic Tickets": 48290,
11456		"Traffic Warnings": 42524,
11457		"All Reportable": 8777,
11458		"Property Damage": 7031,
11459		Injury: 1740,
11460		Fatality: 6,
11461		Homicide: 6,
11462		"Rape and Attempted Rape": 126,
11463		Robbery: 190,
11464		"Aggravated Assault": 836,
11465		"Burglary (Residential)": 1231,
11466		"Burglary (Non-Residential)": 355,
11467		"Auto Theft": 271,
11468		"All Thefts": 7912,
11469		"Stolen Bikes": 485,
11470		"Theft From Vehicles": 2811,
11471		Shoplifting: 1773,
11472		Vandalism: 4488,
11473		Fraud: 1253,
11474		Forgery: 591,
11475		Arson: 0,
11476	},
11477	{
11478		Date: 2010,
11479		Population: 258379,
11480		Felony: 2363,
11481		Misdemeanor: 24609,
11482		DWI: 1990,
11483		"Traffic Tickets": 48580,
11484		"Traffic Warnings": 45945,
11485		"All Reportable": 8722,
11486		"Property Damage": 6925,
11487		Injury: 1790,
11488		Fatality: 7,
11489		Homicide: 3,
11490		"Rape and Attempted Rape": 144,
11491		Robbery: 178,
11492		"Aggravated Assault": 927,
11493		"Burglary (Residential)": 1116,
11494		"Burglary (Non-Residential)": 315,
11495		"Auto Theft": 340,
11496		"All Thefts": 8367,
11497		"Stolen Bikes": 535,
11498		"Theft From Vehicles": 2937,
11499		Shoplifting: 1738,
11500		Vandalism: 4369,
11501		Fraud: 1973,
11502		Forgery: 549,
11503		Arson: 0,
11504	},
11505	{
11506		Date: 2011,
11507		Population: 262466,
11508		Felony: 2388,
11509		Misdemeanor: 23249,
11510		DWI: 1906,
11511		"Traffic Tickets": 50872,
11512		"Traffic Warnings": 50116,
11513		"All Reportable": 8597,
11514		"Property Damage": 6783,
11515		Injury: 1807,
11516		Fatality: 7,
11517		Homicide: 4,
11518		"Rape and Attempted Rape": 170,
11519		Robbery: 176,
11520		"Aggravated Assault": 603,
11521		"Burglary (Residential)": 1069,
11522		"Burglary (Non-Residential)": 305,
11523		"Auto Theft": 346,
11524		"All Thefts": 8365,
11525		"Stolen Bikes": 505,
11526		"Theft From Vehicles": 2761,
11527		Shoplifting: 1994,
11528		Vandalism: 4050,
11529		Fraud: 1511,
11530		Forgery: 369,
11531		Arson: 0,
11532	},
11533	{
11534		Date: 2012,
11535		Population: 265663,
11536		Felony: 2671,
11537		Misdemeanor: 22197,
11538		DWI: 1640,
11539		"Traffic Tickets": 50059,
11540		"Traffic Warnings": 50523,
11541		"All Reportable": 8085,
11542		"Property Damage": 6277,
11543		Injury: 1802,
11544		Fatality: 6,
11545		Homicide: 4,
11546		"Rape and Attempted Rape": 180,
11547		Robbery: 198,
11548		"Aggravated Assault": 642,
11549		"Burglary (Residential)": 1251,
11550		"Burglary (Non-Residential)": 342,
11551		"Auto Theft": 291,
11552		"All Thefts": 8202,
11553		"Stolen Bikes": 510,
11554		"Theft From Vehicles": 2769,
11555		Shoplifting: 1813,
11556		Vandalism: 3825,
11557		Fraud: 1690,
11558		Forgery: 612,
11559		Arson: 0,
11560	},
11561	{
11562		Date: 2013,
11563		Population: 268937,
11564		Felony: 2977,
11565		Misdemeanor: 21058,
11566		DWI: 1379,
11567		"Traffic Tickets": 49515,
11568		"Traffic Warnings": 50197,
11569		"All Reportable": 8307,
11570		"Property Damage": 6457,
11571		Injury: 1845,
11572		Fatality: 5,
11573		Homicide: 5,
11574		"Rape and Attempted Rape": 148,
11575		Robbery: 208,
11576		"Aggravated Assault": 613,
11577		"Burglary (Residential)": 1116,
11578		"Burglary (Non-Residential)": 287,
11579		"Auto Theft": 288,
11580		"All Thefts": 7577,
11581		"Stolen Bikes": 447,
11582		"Theft From Vehicles": 2403,
11583		Shoplifting: 1757,
11584		Vandalism: 3386,
11585		Fraud: 1783,
11586		Forgery: 522,
11587		Arson: 70,
11588	},
11589	{
11590		Date: 2014,
11591		Population: 273945,
11592		Felony: 3167,
11593		Misdemeanor: 20888,
11594		DWI: 1369,
11595		"Traffic Tickets": 51854,
11596		"Traffic Warnings": 47212,
11597		"All Reportable": 8297,
11598		"Property Damage": 6468,
11599		Injury: 1814,
11600		Fatality: 15,
11601		Homicide: 7,
11602		"Rape and Attempted Rape": 152,
11603		Robbery: 205,
11604		"Aggravated Assault": 557,
11605		"Burglary (Residential)": 1037,
11606		"Burglary (Non-Residential)": 249,
11607		"Auto Theft": 308,
11608		"All Thefts": 7424,
11609		"Stolen Bikes": 470,
11610		"Theft From Vehicles": 2388,
11611		Shoplifting: 1783,
11612		Vandalism: 3332,
11613		Fraud: 1840,
11614		Forgery: 400,
11615		Arson: 65,
11616	},
11617	{
11618		Date: 2015,
11619		Population: 277178,
11620		Felony: 3471,
11621		Misdemeanor: 18866,
11622		DWI: 1206,
11623		"Traffic Tickets": 44064,
11624		"Traffic Warnings": 39086,
11625		"All Reportable": 8840,
11626		"Property Damage": 6958,
11627		Injury: 1868,
11628		Fatality: 14,
11629		Homicide: 1,
11630		"Rape and Attempted Rape": 196,
11631		Robbery: 213,
11632		"Aggravated Assault": 616,
11633		"Burglary (Residential)": 1085,
11634		"Burglary (Non-Residential)": 235,
11635		"Auto Theft": 339,
11636		"All Thefts": 7313,
11637		"Stolen Bikes": 450,
11638		"Theft From Vehicles": 2613,
11639		Shoplifting: 1821,
11640		Vandalism: 3276,
11641		Fraud: 2014,
11642		Forgery: 451,
11643		Arson: 97,
11644	},
11645	{
11646		Date: 2016,
11647		Population: 281254,
11648		Felony: 3721,
11649		Misdemeanor: 18318,
11650		DWI: 1037,
11651		"Traffic Tickets": 42888,
11652		"Traffic Warnings": 38619,
11653		"All Reportable": 8972,
11654		"Property Damage": 7057,
11655		Injury: 1909,
11656		Fatality: 6,
11657		Homicide: 11,
11658		"Rape and Attempted Rape": 223,
11659		Robbery: 191,
11660		"Aggravated Assault": 587,
11661		"Burglary (Residential)": 1006,
11662		"Burglary (Non-Residential)": 252,
11663		"Auto Theft": 330,
11664		"All Thefts": 7070,
11665		"Stolen Bikes": 413,
11666		"Theft From Vehicles": 2438,
11667		Shoplifting: 1987,
11668		Vandalism: 3023,
11669		Fraud: 2030,
11670		Forgery: 276,
11671		Arson: 75,
11672	},
11673	{
11674		Date: 2017,
11675		Population: 284506,
11676		Felony: 3707,
11677		Misdemeanor: 18101,
11678		DWI: 1003,
11679		"Traffic Tickets": 41214,
11680		"Traffic Warnings": 41811,
11681		"All Reportable": 8997,
11682		"Property Damage": 7073,
11683		Injury: 1915,
11684		Fatality: 7,
11685		Homicide: 0,
11686		"Rape and Attempted Rape": 260,
11687		Robbery: 191,
11688		"Aggravated Assault": 617,
11689		"Burglary (Residential)": 986,
11690		"Burglary (Non-Residential)": 267,
11691		"Auto Theft": 357,
11692		"All Thefts": 7209,
11693		"Stolen Bikes": 506,
11694		"Theft From Vehicles": 2382,
11695		Shoplifting: 1926,
11696		Vandalism: 3007,
11697		Fraud: 1920,
11698		Forgery: 194,
11699		Arson: 56,
11700	},
11701	{
11702		Date: 2018,
11703		Population: 287401,
11704		Felony: 3945,
11705		Misdemeanor: 17367,
11706		DWI: 1078,
11707		"Traffic Tickets": 38968,
11708		"Traffic Warnings": 44981,
11709		"All Reportable": 9212,
11710		"Property Damage": 7259,
11711		Injury: 1942,
11712		Fatality: 8,
11713		Homicide: 6,
11714		"Rape and Attempted Rape": 284,
11715		Robbery: 160,
11716		"Aggravated Assault": 590,
11717		"Burglary (Residential)": 933,
11718		"Burglary (Non-Residential)": 251,
11719		"Auto Theft": 408,
11720		"All Thefts": 6673,
11721		"Stolen Bikes": 464,
11722		"Theft From Vehicles": 2044,
11723		Shoplifting: 1995,
11724		Vandalism: 2646,
11725		Fraud: 1958,
11726		Forgery: 214,
11727		Arson: 47,
11728	},
11729	{
11730		Date: 2019,
11731		Population: 287401,
11732		Felony: 3776,
11733		Misdemeanor: 15086,
11734		DWI: 854,
11735		"Traffic Tickets": 34047,
11736		"Traffic Warnings": 36595,
11737		"All Reportable": 8669,
11738		"Property Damage": 6895,
11739		Injury: 1757,
11740		Fatality: 17,
11741		Homicide: 5,
11742		"Rape and Attempted Rape": 324,
11743		Robbery: 163,
11744		"Aggravated Assault": 622,
11745		"Burglary (Residential)": 714,
11746		"Burglary (Non-Residential)": 287,
11747		"Auto Theft": 432,
11748		"All Thefts": 6545,
11749		"Stolen Bikes": 378,
11750		"Theft From Vehicles": 2282,
11751		Shoplifting: 1779,
11752		Vandalism: 2603,
11753		Fraud: 2121,
11754		Forgery: 270,
11755		Arson: 54,
11756	},
11757	{
11758		Date: 2020,
11759		Population: 289548,
11760		Felony: 3609,
11761		Misdemeanor: 12189,
11762		DWI: 825,
11763		"Traffic Tickets": 26000,
11764		"Traffic Warnings": 18595,
11765		"All Reportable": 7104,
11766		"Property Damage": 5660,
11767		Injury: 1433,
11768		Fatality: 11,
11769		Homicide: 5,
11770		"Rape and Attempted Rape": 288,
11771		Robbery: 165,
11772		"Aggravated Assault": 831,
11773		"Burglary (Residential)": 725,
11774		"Burglary (Non-Residential)": 331,
11775		"Auto Theft": 593,
11776		"All Thefts": 3899,
11777		"Stolen Bikes": 337,
11778		"Theft From Vehicles": 3126,
11779		Shoplifting: 1512,
11780		Vandalism: 2833,
11781		Fraud: 2395,
11782		Forgery: 283,
11783		Arson: 77,
11784	},
11785	{
11786		Date: 2021,
11787		Population: 289548,
11788		Felony: 3863,
11789		Misdemeanor: 11654,
11790		DWI: 1152,
11791		"Traffic Tickets": 21048,
11792		"Traffic Warnings": 10626,
11793		"All Reportable": 7645,
11794		"Property Damage": 5889,
11795		Injury: 1744,
11796		Fatality: 12,
11797		Homicide: 8,
11798		"Rape and Attempted Rape": 243,
11799		Robbery: 132,
11800		"Aggravated Assault": 708,
11801		"Burglary (Residential)": 663,
11802		"Burglary (Non-Residential)": 261,
11803		"Auto Theft": 692,
11804		"All Thefts": 6532,
11805		"Stolen Bikes": 9,
11806		"Theft From Vehicles": 2881,
11807		Shoplifting: 1311,
11808		Vandalism: 3839,
11809		Fraud: 2369,
11810		Forgery: 330,
11811		Arson: 59,
11812	},
11813];